/* =========================================================
   Ankara Hamaliye Hizmetleri — Industrial & Strong (v2 polish)
   ========================================================= */

:root {
  --c-primary:    #0B2545;
  --c-primary-d:  #061629;
  --c-primary-l:  #133764;
  --c-accent:     #F58220;
  --c-accent-d:   #D86F12;
  --c-accent-l:   #FFA255;
  --c-bg:         #F4F6F8;
  --c-bg-2:       #EAEEF3;
  --c-surface:    #FFFFFF;
  --c-text:       #1A1A1A;
  --c-text-soft:  #4A5568;
  --c-text-mute:  #6B7280;
  --c-line:       #E2E8F0;
  --c-line-soft:  #EEF1F5;
  --c-success:    #25D366;
  --c-success-d:  #1DA851;

  --radius-xs:    4px;
  --radius:       6px;
  --radius-lg:    10px;
  --shadow-xs:    0 1px 2px rgba(11,37,69,0.06);
  --shadow-sm:    0 2px 6px rgba(11,37,69,0.08);
  --shadow-md:    0 8px 24px rgba(11,37,69,0.10);
  --shadow-lg:    0 16px 40px rgba(11,37,69,0.16);

  --ff-body:      'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ff-head:      'Oswald', 'Bebas Neue', sans-serif;
  --ff-display:   'Bebas Neue', 'Oswald', sans-serif;

  --container:    1200px;
  --container-narrow: 800px;

  --ease:         cubic-bezier(.2, .8, .2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--c-accent); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--c-accent-d); }
ul, ol { padding: 0; margin: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--c-accent); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--c-primary);
  margin: 0 0 .5em;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.65rem, 2.8vw, 2.25rem); letter-spacing: 0.01em; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }

/* ===== Layout helpers ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: var(--container-narrow); }
.text-center { text-align: center; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
.mt-xl { margin-top: 4rem; }

.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section--alt { background: var(--c-bg); }
.section--tight { padding: clamp(2.5rem, 4vw, 3.5rem) 0; }
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2rem, 4vw, 3.25rem);
}
.section__title { margin-top: .35em; }
.section__lead { color: var(--c-text-soft); font-size: 1.05rem; margin-top: .75em; }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-accent);
  margin-bottom: .35rem;
}
.eyebrow--light { color: var(--c-accent-l); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s var(--ease);
  white-space: nowrap;
  line-height: 1.2;
}
.btn--sm { padding: .55rem 1rem; font-size: .78rem; letter-spacing: 0.08em; }
.btn--lg { padding: 1rem 2rem; font-size: .98rem; }
.btn--block { display: flex; width: 100%; }

.btn--accent { background: var(--c-accent); color: #fff; box-shadow: 0 4px 14px rgba(245,130,32,0.28); }
.btn--accent:hover { background: var(--c-accent-d); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(245,130,32,0.4); }

.btn--primary { background: var(--c-primary); color: #fff; }
.btn--primary:hover { background: var(--c-primary-d); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--c-primary); border-color: var(--c-primary); }
.btn--ghost:hover { background: var(--c-primary); color: #fff; }

.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn--ghost-light:hover { background: #fff; color: var(--c-primary); border-color: #fff; }

.btn--wa { background: var(--c-success); color: #fff; }
.btn--wa:hover { background: var(--c-success-d); color: #fff; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-surface);
  box-shadow: 0 1px 0 var(--c-line);
}
.header__top {
  background: var(--c-primary);
  color: #fff;
  position: relative;
}
.header__top::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--c-accent) 30%, var(--c-accent) 70%, transparent 100%);
  opacity: .55;
}
.header__top-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 60px;
  padding-top: .4rem;
  padding-bottom: .4rem;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  flex-shrink: 0;
}
.header__brand:hover { color: #fff; }
.header__logo svg { display: block; }
.header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.header__brand-text strong {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 400;
}
.header__brand-text em {
  font-style: normal;
  font-family: var(--ff-head);
  font-size: .72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-top: 2px;
}

.header__location {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .32rem .75rem;
  border: 1px solid rgba(245,130,32,0.4);
  background: rgba(245,130,32,0.12);
  color: var(--c-accent-l);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.header__phones {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #fff;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: .4rem .8rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background .15s var(--ease), border-color .15s var(--ease);
}
.header__phone:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: #fff; }
.header__phone svg { color: var(--c-accent); }
.header__phone--alt { border-color: rgba(245,130,32,0.35); }

.header__nav {
  background: var(--c-surface);
}
.header__nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 58px;
  gap: 1rem;
}
.header__nav-side { display: flex; align-items: center; }
.header__nav-side--left { justify-content: flex-start; }
.header__nav-side--right { justify-content: flex-end; }

.nav {
  display: flex;
  gap: .15rem;
  justify-content: center;
  align-items: center;
}
.nav > li { position: relative; }
.nav a {
  display: block;
  padding: 1.05rem 1rem;
  color: var(--c-primary);
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color .15s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 1rem; right: 1rem;
  bottom: 12px;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s var(--ease);
}
.nav a:hover { color: var(--c-accent); }
.nav a:hover::after { transform: scaleX(1); }
.nav a.is-active { color: var(--c-accent); }
.nav a.is-active::after { transform: scaleX(1); }
.nav__has-dropdown > a { display: inline-flex; align-items: center; gap: .35rem; }

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--c-surface);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--c-accent);
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 60;
  padding: .4rem 0;
}
.nav__has-dropdown:hover > .nav__dropdown,
.nav__has-dropdown:focus-within > .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  padding: .65rem 1.15rem;
  font-size: .82rem;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: var(--c-text);
}
.nav__dropdown a::after { display: none; }
.nav__dropdown a:hover { background: var(--c-bg); color: var(--c-accent); }
.nav__dropdown a.is-active { color: var(--c-accent); background: var(--c-bg); }

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 1px solid var(--c-line);
  background: transparent;
  border-radius: var(--radius);
}
.header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-primary);
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: radial-gradient(ellipse at top right, var(--c-primary-l) 0%, var(--c-primary) 35%, var(--c-primary-d) 100%);
  color: #fff;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__stripes {
  position: absolute;
  inset: -10% -10% -10% 50%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 30px,
    rgba(245,130,32,0.06) 30px,
    rgba(245,130,32,0.06) 32px
  );
  transform: rotate(-2deg);
}
.hero__glow {
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 120%;
  background: radial-gradient(circle, rgba(245,130,32,0.18) 0%, transparent 60%);
  filter: blur(40px);
}
.hero__inner { position: relative; max-width: 760px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  font-family: var(--ff-head);
  font-size: .82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-accent-l);
  margin-bottom: 1.5rem;
}
.hero__eyebrow-bar {
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--c-accent);
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 1.25rem;
}
.hero__title-accent { color: var(--c-accent); }
.hero__subtitle {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  margin-bottom: 2.25rem;
}
.hero__cta { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 2.25rem; }

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__signals li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
}
.hero__signals li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: rgba(245,130,32,0.22);
  color: var(--c-accent);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 700;
}

/* ===== Trust bar ===== */
.trust {
  background: var(--c-primary-d);
  color: #fff;
  padding: 1.75rem 0;
  position: relative;
}
.trust::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--c-accent) 0%, transparent 100%);
  opacity: .4;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0;
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: .75rem 1.5rem;
  text-align: center;
  position: relative;
}
.trust__item + .trust__item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  color: var(--c-accent);
  background: rgba(245,130,32,0.12);
  border-radius: 50%;
  margin-bottom: .35rem;
}
.trust__value {
  font-family: var(--ff-display);
  font-size: 1.85rem;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
}
.trust__label {
  font-family: var(--ff-head);
  font-size: .76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ===== Services grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}
.svc-card {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 2rem 1.75rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  color: var(--c-text);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  position: relative;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-line);
  color: var(--c-text);
}
.svc-card:hover .svc-card__icon {
  background: var(--c-accent);
  color: #fff;
}
.svc-card:hover .svc-card__more { gap: .75rem; color: var(--c-accent-d); }
.svc-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--c-bg);
  border-radius: var(--radius);
  color: var(--c-accent);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.svc-card__title { margin: 0; font-weight: 600; }
.svc-card__short { margin: 0; color: var(--c-text-soft); font-size: .94rem; line-height: 1.6; }
.svc-card__features {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin: .25rem 0 .5rem;
  font-size: .87rem;
  color: var(--c-text-soft);
}
.svc-card__features li {
  position: relative;
  padding-left: 1.1rem;
}
.svc-card__features li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  background: var(--c-accent);
  border-radius: 50%;
}
.svc-card__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-head);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-accent);
  font-weight: 600;
  padding-top: .5rem;
  transition: gap .2s var(--ease), color .2s var(--ease);
}

.services-grid--detailed .svc-card { padding: 2.25rem 1.85rem; }

/* ===== Reasons ===== */
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.reason {
  background: var(--c-surface);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.reason:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.reason::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--c-accent);
  border-radius: var(--radius) 0 0 var(--radius);
}
.reason h3 { margin: .5rem 0 .5rem; font-size: 1.1rem; }
.reason p { margin: 0; color: var(--c-text-soft); font-size: .94rem; }
.reason__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: rgba(245,130,32,0.1);
  color: var(--c-accent);
  border-radius: var(--radius);
}

/* ===== Process — timeline ===== */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
  padding-top: 1.5rem;
}
.process::before {
  content: '';
  position: absolute;
  top: 2.45rem; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-line) 0, var(--c-line) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.process__step {
  position: relative;
  padding: 0 1rem;
  text-align: center;
  z-index: 1;
}
.process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--c-surface);
  border: 2px solid var(--c-accent);
  color: var(--c-accent);
  font-family: var(--ff-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  border-radius: 50%;
  margin: 0 auto 1rem;
  line-height: 1;
}
.process__step h3 { margin: 0 0 .35rem; font-size: 1.05rem; }
.process__step p { margin: 0; color: var(--c-text-soft); font-size: .9rem; line-height: 1.55; }

/* ===== B2B band ===== */
.b2b-band {
  background: var(--c-primary);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.b2b-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0, transparent 36px, rgba(255,255,255,0.025) 36px, rgba(255,255,255,0.025) 38px);
  pointer-events: none;
}
.b2b-band::after {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 50%; height: 200%;
  background: radial-gradient(circle, rgba(245,130,32,0.15) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.b2b-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
.b2b-band h2 { color: #fff; margin-bottom: .5rem; }
.b2b-band p { color: rgba(255,255,255,0.82); margin: 0; font-size: 1.05rem; }
.b2b-band__cta {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* ===== Pills (regions) ===== */
.pill {
  display: inline-flex;
  align-items: center;
  padding: .4rem .9rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--c-text);
  font-weight: 500;
  transition: border-color .15s var(--ease), color .15s var(--ease);
}
.pill:hover { border-color: var(--c-accent); color: var(--c-accent); }
.pill--lg { padding: .55rem 1.2rem; font-size: .9rem; }
.regions { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }

/* ===== FAQ ===== */
.faq {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq__item[open] {
  border-color: var(--c-accent);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: 1rem;
  color: var(--c-primary);
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item[open] summary { color: var(--c-accent); }
.faq__chev {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--c-accent);
  background: var(--c-bg);
  border-radius: 50%;
  transition: transform .25s var(--ease);
  line-height: 1;
}
.faq__item[open] .faq__chev { transform: rotate(45deg); }
.faq__body {
  padding: 0 1.35rem 1.35rem;
  color: var(--c-text-soft);
}
.faq__body p { margin: 0; }

/* ===== Final CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-d) 100%);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0, transparent 40px, rgba(255,255,255,0.04) 40px, rgba(255,255,255,0.04) 42px);
  pointer-events: none;
}
.final-cta__inner { position: relative; }
.final-cta h2 { color: #fff; margin-bottom: .25rem; }
.final-cta p { margin: .5rem 0 0; opacity: .9; }
.final-cta__phone {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: 0.06em;
  color: #fff;
  margin: .75rem 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.final-cta__phone:hover { color: var(--c-primary-d); }

/* ===== Page hero ===== */
.page-hero {
  position: relative;
  background: var(--c-primary);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  overflow: hidden;
}
.page-hero__stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(245,130,32,0.06) 30px, rgba(245,130,32,0.06) 32px);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
  opacity: .5;
}
.page-hero .container { position: relative; }
.page-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin: .75rem 0 .5rem;
}
.page-hero__subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin: 0;
  max-width: 720px;
}

/* ===== Breadcrumbs ===== */
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,0.65);
}
.breadcrumbs li { display: inline-flex; align-items: center; gap: .55rem; }
.breadcrumbs a { color: var(--c-accent-l); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs [aria-current="page"] { color: #fff; font-weight: 500; }

/* ===== Service detail layout ===== */
.detail {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.detail__main { background: var(--c-surface); }
.detail__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px; height: 84px;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-d) 100%);
  color: #fff;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(245,130,32,0.25);
}
.detail__intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--c-text);
  border-left: 3px solid var(--c-accent);
  padding: .85rem 1.25rem;
  background: var(--c-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2rem;
}
.detail__main h2 { margin-top: 2.5rem; padding-bottom: .35rem; border-bottom: 2px solid var(--c-line); }
.detail__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-line);
}

.detail__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: calc(120px + 1rem);
}
.detail__card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
}
.detail__card h3 { font-size: 1.05rem; margin: 0 0 1rem; padding-bottom: .65rem; border-bottom: 1px solid var(--c-line); }
.detail__card--accent {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}
.detail__card--accent h3 { color: #fff; border-color: rgba(255,255,255,0.15); }
.detail__card--accent p { color: rgba(255,255,255,0.85); font-size: .92rem; }
.detail__card--accent .btn { margin-top: .5rem; }

.aside-list { display: flex; flex-direction: column; gap: .25rem; }
.aside-list a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem .75rem;
  border-radius: var(--radius);
  color: var(--c-text);
  font-size: .92rem;
  font-weight: 500;
  transition: background .15s var(--ease), color .15s var(--ease), padding .15s var(--ease);
}
.aside-list a:hover { background: var(--c-bg); color: var(--c-accent); padding-left: 1rem; }
.aside-list svg { color: var(--c-accent); flex-shrink: 0; }

/* Check list & steps */
.check-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: .75rem;
  margin: 1.25rem 0 1.5rem;
}
.check-list li {
  position: relative;
  padding: .55rem 0 .55rem 2rem;
  color: var(--c-text);
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: .4rem;
  width: 22px; height: 22px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .78rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.25rem 0 1.5rem;
  position: relative;
}
.steps__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-line-soft);
}
.steps__item:last-child { border-bottom: 0; }
.steps__num {
  font-family: var(--ff-display);
  font-size: 2.25rem;
  color: var(--c-accent);
  line-height: 1;
  letter-spacing: 0.04em;
}
.steps__item h3 { margin: 0 0 .25rem; font-size: 1.1rem; }
.steps__item p { margin: 0; color: var(--c-text-soft); }

/* Hakkımızda content */
.content { max-width: 800px; margin: 0 auto; }
.content h2 { margin-top: 2.5rem; padding-bottom: .35rem; border-bottom: 2px solid var(--c-line); }
.content__lead { font-size: 1.15rem; line-height: 1.7; margin-bottom: 1.5rem; color: var(--c-text); }
.content__lead strong { color: var(--c-primary); }

/* ===== Contact ===== */
.contact {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact__main { background: var(--c-surface); }
.contact__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}
.contact__item--full { grid-column: 1 / -1; }

/* Telefon + WhatsApp ikili buton satırı (aside kartı) */
.cta-pair { display: flex; gap: .6rem; margin-bottom: .7rem; }
.cta-pair__tel { flex: 1 1 auto; min-width: 0; }
.cta-pair__wa { flex: 0 0 auto; width: 54px; padding-left: 0; padding-right: 0; }
.cta-pair__wa svg { width: 26px; height: 26px; }
.contact__list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.15rem;
  align-items: center;
  padding: 1rem 1.35rem;
  background: var(--c-bg);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: transform .2s var(--ease);
}
.contact__list li:hover { transform: translateX(2px); }
.contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--c-surface);
  color: var(--c-accent);
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
}
.contact__label {
  display: block;
  font-family: var(--ff-head);
  font-size: .7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  margin-bottom: .2rem;
  font-weight: 600;
}
.contact__value {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  color: var(--c-primary);
  font-weight: 500;
}
.contact__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: calc(120px + 1rem);
}

.card-cta {
  background: var(--c-primary);
  color: #fff;
  padding: 2.25rem;
  text-align: center;
  border-radius: var(--radius);
}
.card-cta h3 { color: #fff; margin-bottom: .5rem; }
.card-cta p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.card-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

.link-arrow {
  font-family: var(--ff-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: gap .2s var(--ease);
}
.link-arrow:hover { gap: .85rem; }

/* ===== Footer ===== */
.site-footer {
  background: var(--c-primary-d);
  color: rgba(255,255,255,0.7);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2.75rem;
  margin-bottom: 2.5rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  color: #fff;
}
.footer__brand:hover { color: #fff; }
.footer__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.footer__brand-text strong {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
}
.footer__brand-text em {
  font-style: normal;
  font-family: var(--ff-head);
  font-size: .68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent-l);
  font-weight: 500;
  margin-top: 2px;
}
.footer__tagline { margin: 0 0 .85rem; color: rgba(255,255,255,0.82); font-size: .95rem; line-height: 1.6; }
.footer__meta { margin: 0; font-size: .82rem; color: rgba(255,255,255,0.55); }
.footer__meta strong { color: var(--c-accent-l); }
.footer__meta--note { margin-top: .35rem; color: var(--c-accent-l); font-weight: 600; }
.detail__note { margin: .9rem 0 0; font-size: .85rem; font-weight: 600; opacity: .92; }

.footer__col h4 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: .65rem;
}
.footer__col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--c-accent);
}
.footer__links { display: flex; flex-direction: column; gap: .55rem; }
.footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: .9rem;
  transition: color .15s var(--ease), padding-left .15s var(--ease);
}
.footer__links a:hover { color: var(--c-accent-l); padding-left: 4px; }

.footer__contact { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 1.25rem; }
.footer__contact li { display: flex; flex-direction: column; gap: .15rem; }
.footer__contact-label {
  font-family: var(--ff-head);
  font-size: .66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
.footer__contact a, .footer__contact span { color: #fff; font-weight: 500; font-size: .92rem; }
.footer__contact a:hover { color: var(--c-accent-l); }
.footer__regions { display: flex; flex-wrap: wrap; gap: .35rem; }
.footer__regions .pill {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: .74rem;
  padding: .25rem .65rem;
}
.footer__regions .pill:hover { border-color: var(--c-accent); color: var(--c-accent-l); }

.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,0.5);
}
.footer__bar p { margin: 0; }

/* ===== Floating action buttons ===== */
.fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  z-index: 100;
}
.fab__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.fab__btn::after {
  content: attr(data-fab-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--c-primary);
  color: #fff;
  font-family: var(--ff-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: .4rem .7rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.fab__btn:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.fab__btn:hover {
  transform: scale(1.06);
  color: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.fab__btn--wa {
  background: var(--c-success);
  animation: fab-pulse 2.4s ease-out infinite;
}
.fab__btn--tel { background: var(--c-accent); }

@keyframes fab-pulse {
  0%   { box-shadow: 0 8px 24px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) {
  .fab__btn--wa { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .detail { grid-template-columns: 1fr; gap: 2rem; }
  .detail__aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .detail__aside > .detail__card { flex: 1 1 280px; }
  .contact { grid-template-columns: 1fr; gap: 2rem; }
  .contact__aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .contact__aside > .detail__card { flex: 1 1 280px; }
}

@media (max-width: 960px) {
  .b2b-band__inner { grid-template-columns: 1fr; gap: 1.75rem; }
}

@media (max-width: 820px) {
  .header__top-inner {
    flex-wrap: wrap;
    gap: .5rem 1rem;
    padding: .5rem 1.5rem;
  }
  .header__brand-text strong { font-size: 1.15rem; }
  .header__brand-text em { font-size: .62rem; }
  .header__location { font-size: .72rem; padding: .2rem .55rem; }
  .header__phone { font-size: .92rem; padding: .25rem .55rem; }
  .header__phone span { display: none; }
  .header__phone--alt { display: none; }

  .header__nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 56px;
  }
  .header__nav-side--left { order: 1; }
  .header__nav-side--right { order: 2; }
  .header__toggle { display: flex; }
  .nav {
    order: 3;
    flex-basis: 100%;
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--c-surface);
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--c-line);
    margin: 0 -1.5rem -.5rem;
  }
  .nav.is-open { display: flex; }
  .nav > li { width: 100%; border-bottom: 1px solid var(--c-line-soft); }
  .nav > li:last-child { border-bottom: 0; }
  .nav a { padding: 1rem 1.5rem; }
  .nav a::after { display: none; }
  .nav a.is-active { background: var(--c-bg); border-left: 3px solid var(--c-accent); padding-left: calc(1.5rem - 3px); }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: var(--c-bg);
    border-top: 1px solid var(--c-line-soft);
    padding: 0;
    border-radius: 0;
    min-width: 0;
  }
  .nav__has-dropdown > a > svg { display: none; }
}

@media (max-width: 700px) {
  .process::before { display: none; }
  .process { gap: 1.5rem; padding-top: 0; }
  .hero__signals { gap: .85rem 1.25rem; }
  .hero__signals li { font-size: .82rem; }
  .trust__item + .trust__item::before { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 2.75rem 0; }
  .contact__list { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bar { flex-direction: column; gap: .5rem; text-align: center; }
  .hero { padding: 4rem 0 3rem; }
  .b2b-band { padding: 3rem 0; }
  .final-cta { padding: 3rem 0; }
  .fab { right: 1rem; bottom: 1rem; }
  .fab__btn { width: 52px; height: 52px; }
  .fab__btn::after { display: none; }
}
