/* =========================================================
   Mers Lojistik — v4 "CINEMATIC FREIGHT"
   Full-viewport acts · Scroll-driven storytelling · Video-led
   Dark dominant · Sarabun locked · #2998BF locked
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand-locked */
  --c-primary:   #2998BF;
  --c-primary-d: #1F7A99;
  --c-primary-l: #BFE4F0;
  --c-primary-tint: #EBF6FA;

  /* Cinematic palette — dark dominant */
  --c-ink:       #020617;
  --c-ink-2:     #0A0F1A;        /* True near-black for cinematic bg */
  --c-ink-3:     #1A2230;
  --c-muted:     #6B7588;
  --c-muted-2:   #94A3B8;
  --c-rule:      rgba(255,255,255,0.10);
  --c-rule-dark: #1F2937;
  --c-rule-soft: #F1F5F9;
  --c-bg:        #0A0F1A;        /* Page bg default = dark cinematic */
  --c-bg-light:  #F8FAFC;
  --c-white:     #FFFFFF;

  /* Type — Sarabun, single family, max weight 800 */
  --ff: "Sarabun", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Cinematic display sizes — restrained, not overwhelming */
  --fs-cine:     clamp(1.9rem, 5vw, 5rem);      /* Cinematic hero */
  --fs-act:      clamp(1.9rem, 5vw, 5rem);      /* Per-act headline */
  --fs-num:      clamp(2.8rem, 8vw, 8rem);      /* Massive single number */
  --fs-statement: clamp(1.9rem, 4.8vw, 4.8rem); /* Statement screen */

  /* Display sizes (smaller, for inner pages) */
  --fs-display:  clamp(2.4rem, 8vw, 8.5rem);
  --fs-display-col: clamp(1.8rem, 4.4vw, 4rem);
  --fs-h2:       clamp(2rem, 4.5vw, 4.5rem);
  --fs-h3:       clamp(1.5rem, 2.4vw, 2rem);

  --fs-body:     1rem;
  --fs-sm:       0.875rem;
  --fs-xs:       0.75rem;
  --fs-eyebrow:  0.75rem;

  /* Tracking */
  --tr-tight:    -0.05em;
  --tr-snug:     -0.025em;
  --tr-body:     0;
  --tr-meta:     0.18em;
  --tr-wide:     0.32em;

  /* Layout */
  --container:   1380px;
  --container-wide: 1680px;
  --pad-x:       clamp(20px, 4vw, 56px);
  --section-py:  clamp(96px, 12vw, 160px);
  --section-py-tight: clamp(64px, 8vw, 112px);

  /* Spacing */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-8: 64px; --s-10: 96px; --s-12: 128px;

  /* Radius */
  --r-sm: 4px; --r-md: 8px; --r-lg: 16px; --r-pill: 9999px;

  /* Motion — cinematic = slower, more dramatic */
  --ease:     cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:  cubic-bezier(0.64, 0, 0.78, 0);
  --t-fast: 200ms;
  --t:      400ms;
  --t-slow: 700ms;
  --t-xl:   1200ms;
  --t-cine: 1800ms;       /* Cinematic reveal duration */

  /* Z-index */
  --z-header: 100;
  --z-overlay: 900;
  --z-modal: 1000;

  --hdr-h: 92px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--c-white);
  background: var(--c-ink-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "tnum";
  overflow-x: hidden;
}
img, svg, video, iframe { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
::selection { background: var(--c-primary); color: var(--c-white); }

.skip {
  position: absolute; left: -9999px; top: 0; padding: 12px 16px;
  background: var(--c-primary); color: var(--c-white); z-index: 9999;
}
.skip:focus { left: 16px; top: 16px; }

/* Screen-reader-only (SEO H1 / a11y labels) */
.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Layout primitives ---------- */
.wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.wrap--wide { max-width: var(--container-wide); }
.section { padding-block: var(--section-py); position: relative; }
.section--tight { padding-block: var(--section-py-tight); }
.section--dark { background: var(--c-ink-2); color: var(--c-white); }
.section--light { background: var(--c-bg-light); color: var(--c-ink); }
.section--surface { background: var(--c-ink-3); color: var(--c-white); }

/* ---------- Type primitives ---------- */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--tr-wide); text-transform: uppercase;
  font-weight: 600; color: var(--c-primary-l);
}
.eyebrow--dark { color: var(--c-primary); }

.display {
  font-family: var(--ff);
  font-size: var(--fs-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: var(--tr-tight);
  color: inherit;
  text-wrap: balance;
}
.display .it { color: inherit; font-style: normal; font-weight: inherit; }
.display .light { font-weight: 300; color: rgba(255,255,255,0.6); }

.h2 {
  font-family: var(--ff);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: var(--tr-tight);
  text-wrap: balance;
}
.h3 {
  font-family: var(--ff);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: var(--tr-snug);
}
.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 56ch;
}
.lede--dark { color: var(--c-ink-3); }

/* Underline-arrow link */
.link {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 0;
  font-weight: 600; letter-spacing: var(--tr-snug);
  position: relative; color: inherit;
  cursor: pointer;
  transition: color var(--t) var(--ease);
}
.link::before {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: rgba(255,255,255,0.18);
}
.link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 36px; height: 1px; background: var(--c-primary);
  transition: width 700ms var(--ease);
}
.link .arr { transition: transform var(--t-slow) var(--ease); display: inline-flex; }
.link:hover { color: var(--c-primary-l); }
.link:hover::after { width: 100%; }
.link:hover .arr { transform: translateX(10px); }
.link--dark { color: var(--c-ink); }
.link--dark::before { background: rgba(2,6,23,0.12); }
.link--dark:hover { color: var(--c-primary-d); }

/* Button */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  font-weight: 600; letter-spacing: var(--tr-snug);
  font-size: 15px;
  border-radius: var(--r-pill);
  transition: background var(--t) var(--ease), color var(--t) var(--ease),
              border-color var(--t) var(--ease), transform var(--t) var(--ease);
  cursor: pointer;
}
.btn--primary {
  background: var(--c-primary); color: var(--c-white);
  border: 1px solid var(--c-primary);
}
.btn--primary:hover {
  background: var(--c-primary-d); border-color: var(--c-primary-d);
  transform: translateY(-2px);
}
.btn--ghost-light {
  background: transparent; color: var(--c-white); border: 1px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost-light:hover {
  background: var(--c-white); color: var(--c-ink); border-color: var(--c-white);
}
.btn--ghost-dark {
  background: transparent; color: var(--c-ink); border: 1px solid var(--c-ink);
}
.btn--ghost-dark:hover { background: var(--c-ink); color: var(--c-white); }

/* ---------- Header — transparent over hero, blur on scroll ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  transition: background var(--t) var(--ease),
              border-color var(--t) var(--ease),
              backdrop-filter var(--t) var(--ease);
}
.header.is-scrolled {
  background: rgba(10, 15, 26, 0.78);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--c-rule);
}
.header__row {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--hdr-h);
  gap: 32px;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.logo {
  display: inline-flex; align-items: center; cursor: pointer;
  transition: opacity var(--t) var(--ease);
}
.logo img { max-height: 34px; width: auto; max-width: 260px; }
.logo__img--dark { display: none; }
.logo:hover { opacity: 0.85; }

.nav { display: flex; }
.nav > ul { display: flex; align-items: center; gap: 4px; }
.nav > ul > li { position: relative; }
.nav > ul > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 28px 18px;
  font-weight: 500; font-size: 14px;
  letter-spacing: var(--tr-snug);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: color var(--t-fast) var(--ease);
}
.nav > ul > li > a:hover,
.nav > ul > li.has-submenu:hover > a {
  color: var(--c-primary-l);
}
.nav > ul > li.has-submenu > a::after {
  content: ""; width: 5px; height: 5px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--t) var(--ease);
}
.nav > ul > li.has-submenu:hover > a::after { transform: rotate(225deg) translateY(-2px); }

/* Submenu */
.submenu {
  position: absolute; left: 0; top: 100%;
  min-width: 240px; padding: 16px 0;
  background: #F7F9FD;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid #E3E8EF;
  box-shadow: 0 30px 60px -16px rgba(15, 26, 43, 0.20);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t);
}
.nav > ul > li.has-submenu:hover .submenu,
.nav > ul > li.has-submenu:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.submenu li a {
  display: block; padding: 11px 22px;
  font-size: 13.5px; color: #3A4A63;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease), padding-left var(--t) var(--ease);
}
.submenu li a:hover { color: var(--c-primary-d); padding-left: 28px; }

/* Megamenu — 7 hub, kompakt 4-column wrap (4 + 3) */
.megamenu {
  position: absolute; left: 50%; top: 100%; transform: translateX(-50%) translateY(8px);
  width: min(900px, 92vw);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 16px 6px;
  background: #F7F9FD;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid #E3E8EF;
  border-radius: var(--r-md);
  box-shadow: 0 24px 50px -16px rgba(15, 26, 43, 0.22);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t);
}
.nav > ul > li.has-submenu:hover .megamenu,
.nav > ul > li.has-submenu:focus-within .megamenu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.megamenu__col { padding: 8px 16px; border-right: 1px solid #E3E8EF; }
.megamenu__col:nth-child(4n) { border-right: 0; }
/* 2nd row (hubs 5-7) gets a light top divider */
.megamenu__col:nth-child(n+5) { border-top: 1px solid #E3E8EF; margin-top: 4px; padding-top: 14px; }
.megamenu__col-title {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 12.5px; letter-spacing: var(--tr-snug);
  color: #0F1A2B; margin-bottom: 9px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(41, 152, 191, 0.45);
  cursor: pointer;
  transition: color var(--t-fast) var(--ease);
}
.megamenu__col-title i { color: var(--c-primary); font-size: 15px; flex-shrink: 0; }
.megamenu__col-title:hover { color: var(--c-primary-d); }
.megamenu__col ul li a {
  display: block; padding: 3.5px 0;
  font-size: 11.5px; color: #6B7A90;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease), padding-left var(--t) var(--ease);
}
.megamenu__col ul li a:hover {
  color: var(--c-primary-d); padding-left: 5px;
}
.megamenu__badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 9px; padding: 6px 9px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--c-primary-d);
  background: rgba(41,152,191,0.08);
  border: 1px solid rgba(41,152,191,0.22);
  border-radius: var(--r-sm);
  line-height: 1.25;
}
.megamenu__badge i { font-size: 13px; flex-shrink: 0; }

/* ===== Two-panel megamenu (mm2) — sol hub rail + sağ alt-hizmet paneli ===== */
.megamenu.mm2 {
  display: flex;
  grid-template-columns: none;
  width: min(860px, 94vw);
  padding: 0;
  gap: 0;
  overflow: hidden;
}
.mm2__rail {
  flex: 0 0 246px;
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px;
  background: #EDF1F8;
  border-right: 1px solid #E3E8EF;
}
.mm2__hub {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 13px; border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600; letter-spacing: var(--tr-snug);
  color: #3A4A63; white-space: nowrap;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.mm2__hub > i:first-child { font-size: 17px; color: var(--c-primary); flex-shrink: 0; }
.mm2__arr { margin-left: auto; font-size: 16px; opacity: 0; transform: translateX(-4px); transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease); }
.mm2__hub:hover, .mm2__hub.is-active { background: #FFFFFF; color: #0F1A2B; box-shadow: 0 1px 2px rgba(15,26,43,.06); }
.mm2__hub.is-active { box-shadow: inset 3px 0 0 var(--c-primary), 0 1px 2px rgba(15,26,43,.06); }
.mm2__hub.is-active .mm2__arr { opacity: 1; transform: translateX(0); color: var(--c-primary); }

.mm2__panels { flex: 1 1 auto; position: relative; padding: 24px 28px; min-height: 252px; background: #FAFBFD; }
.mm2__panel { display: none; }
.mm2__panel.is-active { display: block; animation: mm2Fade 0.3s var(--ease); }
@keyframes mm2Fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.mm2__panel-head h4 { font-size: 15px; font-weight: 800; letter-spacing: var(--tr-snug); color: #0F1A2B; margin-bottom: 6px; }
.mm2__panel-head p { font-size: 12px; line-height: 1.5; color: #6B7A90; margin-bottom: 18px; max-width: 48ch; }
.mm2__links { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; list-style: none; margin: 0; padding: 0; }
.mm2__links--single { grid-template-columns: 1fr; }
.mm2__links li a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 9px 2px;
  font-size: 12.5px; color: #3A4A63;
  border-bottom: 1px solid #E3E8EF;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease), padding-left var(--t) var(--ease), border-color var(--t-fast) var(--ease);
}
.mm2__links li a::after {
  content: "\2192";
  font-size: 13px; line-height: 1; flex-shrink: 0;
  color: var(--c-primary);
  opacity: 0.35; transform: translateX(-4px);
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.mm2__links li a:hover { color: var(--c-primary-d); padding-left: 6px; border-color: rgba(41,152,191,0.45); }
.mm2__links li a:hover::after { opacity: 1; transform: translateX(0); }

/* Alt "zeminli info" bloğu — Tümünü gör + (varsa) güvenlik rozeti */
.mm2__foot {
  margin-top: 18px;
  padding: 13px 16px;
  background: #F2F5FB;
  border: 1px solid #E3E8EF;
  border-radius: var(--r-sm);
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 16px;
}
.mm2__all {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: var(--tr-snug);
  color: var(--c-primary-d);
  transition: gap var(--t) var(--ease);
}
.mm2__all:hover { gap: 12px; }
.mm2 .megamenu__badge { margin: 0; }
@media (max-width: 720px) {
  .megamenu.mm2 { flex-direction: column; width: min(420px, 94vw); }
  .mm2__rail { flex-basis: auto; border-right: 0; border-bottom: 1px solid #E3E8EF; }
  .mm2__panels { min-height: 0; }
}

/* Header actions */
.header__actions { display: flex; align-items: center; gap: 12px; }
.cta-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: var(--c-white); color: var(--c-ink);
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 13.5px;
  cursor: pointer;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), transform var(--t) var(--ease);
}
.cta-pill:hover { background: var(--c-primary); color: var(--c-white); transform: translateY(-1px); }
.cta-pill .arr { transition: transform var(--t) var(--ease); }
.cta-pill:hover .arr { transform: translateX(4px); }

/* Teklif Al — v1 stili: ikon + 2 satır + ayraç */
.header__divider {
  width: 1px; height: 34px; flex-shrink: 0;
  background: rgba(255,255,255,0.18);
}
.cta-quote {
  display: inline-flex; align-items: center; gap: 11px;
  color: var(--c-white); line-height: 1.2;
  transition: color var(--t) var(--ease);
}
.cta-quote__icon { flex-shrink: 0; transition: transform var(--t) var(--ease), color var(--t) var(--ease); }
.cta-quote:hover { color: var(--c-primary-l); }
.cta-quote:hover .cta-quote__icon { transform: translateY(-2px); }
.cta-quote__text { display: inline-flex; flex-direction: column; }
.cta-quote__text strong { font-size: 14px; font-weight: 600; letter-spacing: var(--tr-snug); }
.cta-quote__text small { font-size: 11px; font-weight: 400; opacity: 0.62; margin-top: 2px; letter-spacing: 0.01em; }

.burger {
  display: inline-flex; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.22); border-radius: var(--r-sm); cursor: pointer;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.burger:hover { border-color: rgba(255,255,255,0.5); }
.burger span, .burger span::before, .burger span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--c-white);
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease), top var(--t) var(--ease), background var(--t) var(--ease);
}
.burger span { position: relative; }
.burger span::before { position: absolute; top: -6px; left: 0; }
.burger span::after { position: absolute; top: 6px; left: 0; }
/* X durumu (offcanvas açıkken — masaüstü) */
.burger.is-x span { background: transparent; }
.burger.is-x span::before { transform: rotate(45deg); top: 0; }
.burger.is-x span::after { transform: rotate(-45deg); top: 0; }

/* ---------- Offcanvas (hamburger → sağ bilgi paneli) ---------- */
.offcanvas-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(2,6,23,0.6); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t) var(--ease), visibility var(--t);
}
.offcanvas-overlay.is-open { opacity: 1; visibility: visible; }
.offcanvas {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1002;
  width: min(380px, 90vw);
  background: var(--c-ink-2);
  border-left: 1px solid var(--c-rule);
  padding: 28px;
  overflow-y: auto; overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform 400ms var(--ease);
  color: var(--c-white);
}
.offcanvas.is-open { transform: translateX(0); }
.offcanvas__close {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--c-rule); color: var(--c-white); font-size: 22px;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.offcanvas__close:hover { background: var(--c-white); color: var(--c-ink); }
.offcanvas__inner { display: flex; flex-direction: column; gap: 22px; margin-top: 44px; }
.offcanvas__logo img { height: 32px; width: auto; max-width: 100%; }
.offcanvas__about { font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,0.62); }
.offcanvas__block h5 {
  font-size: 11px; letter-spacing: var(--tr-wide); text-transform: uppercase;
  font-weight: 700; color: var(--c-primary-l); margin-bottom: 8px;
}
.offcanvas__block p { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.78); margin: 0; }
.offcanvas__block a { font-size: 14px; color: var(--c-white); transition: color var(--t-fast) var(--ease); }
.offcanvas__block a:hover { color: var(--c-primary-l); }
.offcanvas__phone { font-size: 18px !important; font-weight: 700; letter-spacing: var(--tr-snug); }
.offcanvas__social { display: flex; gap: 10px; list-style: none; padding: 0; margin: 2px 0 0; }
.offcanvas__social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border: 1px solid var(--c-rule);
  color: var(--c-white); font-size: 18px;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.offcanvas__social a:hover { background: var(--c-primary); border-color: var(--c-primary); transform: translateY(-2px); }

@media (max-width: 1024px) {
  .cta-pill { padding: 10px 16px; font-size: 13px; }
  .burger { display: inline-flex; position: relative; z-index: 1003; }
  .burger span::before, .burger span::after { transition: transform var(--t) var(--ease), top var(--t) var(--ease); }

  /* Off-canvas drawer */
  .nav {
    display: block;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(360px, 86vw);
    background: var(--c-ink-2);
    border-left: 1px solid var(--c-rule);
    padding: calc(var(--hdr-h) + 8px) 0 40px;
    overflow-y: auto; overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 380ms var(--ease);
    z-index: 1002;
  }
  .header.nav-open .nav { transform: translateX(0); }
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(2,6,23,0.6);
    opacity: 0; visibility: hidden;
    transition: opacity 380ms var(--ease), visibility 380ms;
    z-index: 1001;
  }
  .header.nav-open .nav-overlay { opacity: 1; visibility: visible; }

  .nav > ul { display: block; }
  .nav > ul > li { position: static; border-bottom: 1px solid var(--c-rule); }
  .nav > ul > li > a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 15px 24px; font-size: 15px; font-weight: 500;
    color: rgba(255,255,255,0.9);
  }
  .nav > ul > li.has-submenu > a::after { margin-left: 12px; transition: transform var(--t) var(--ease); }
  .nav > ul > li.has-submenu.is-open > a { color: var(--c-primary-l); }
  .nav > ul > li.has-submenu.is-open > a::after { transform: rotate(225deg) translateY(-2px); }

  /* Submenus → static accordion, collapsed by default.
     !important neutralizes the high-specificity desktop :hover/:focus-within
     positioning (translateX(-50%)) that would otherwise drag the panel off-canvas. */
  .submenu, .megamenu, .megamenu.mm2 {
    position: static !important; left: auto !important; top: auto !important;
    transform: none !important;
    width: auto; min-width: 0;
    opacity: 1 !important; visibility: visible !important;
    background: rgba(255,255,255,0.03);
    border: 0; box-shadow: none; border-radius: 0;
    padding: 0; margin: 0; gap: 0;
    display: none;
  }
  .has-submenu.is-open > .submenu,
  .has-submenu.is-open > .megamenu { display: block; }
  .submenu li a { padding: 12px 24px 12px 40px; font-size: 14px; }

  /* mm2 two-panel → simple stacked hub link list on mobile */
  .mm2__rail { flex-direction: column; gap: 0; padding: 0; background: transparent; border: 0; flex-basis: auto; }
  .mm2__hub { padding: 12px 24px 12px 40px; font-size: 14px; border-radius: 0; }
  .mm2__hub .mm2__arr { display: none; }
  .mm2__panels { display: none; }

  /* Burger → X when drawer open */
  .header.nav-open .burger span { background: transparent; }
  .header.nav-open .burger span::before { transform: rotate(45deg); top: 0; }
  .header.nav-open .burger span::after { transform: rotate(-45deg); top: 0; }
}

/* =========================================================
   CINEMATIC HERO — full viewport, single sentence, video bg
   ========================================================= */
.cine-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: var(--c-ink-2);
  color: var(--c-white);
  display: flex; align-items: center;
}
.cine-hero__media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.cine-hero__media video,
.cine-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.cine-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,26,0.45) 0%, rgba(10,15,26,0.15) 35%, rgba(10,15,26,0.65) 100%),
    linear-gradient(90deg, rgba(10,15,26,0.55) 0%, rgba(10,15,26,0) 60%);
  z-index: 1;
}
.cine-hero__content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding: 0 var(--pad-x) clamp(80px, 12vh, 140px);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.cine-hero__eyebrow {
  font-size: 12px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: clamp(20px, 3vh, 32px);
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease) 200ms, transform var(--t-slow) var(--ease) 200ms;
}
.cine-hero__title {
  font-family: var(--ff);
  font-size: var(--fs-cine);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: var(--tr-tight);
  color: var(--c-white);
  max-width: 18ch;
  text-wrap: balance;
}
.cine-hero__title .line {
  display: block;
  overflow: hidden;
}
.cine-hero__title .line span {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity var(--t-cine) var(--ease-out), transform var(--t-cine) var(--ease-out);
}
.cine-hero__title .line:nth-child(2) span { transition-delay: 200ms; }
.cine-hero__title .line:nth-child(3) span { transition-delay: 400ms; }

.cine-hero__sub {
  margin-top: clamp(24px, 4vh, 40px);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 56ch;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease) 700ms, transform var(--t-slow) var(--ease) 700ms;
}
.cine-hero__actions {
  display: flex; gap: 14px;
  margin-top: clamp(32px, 5vh, 48px);
  flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease) 900ms, transform var(--t-slow) var(--ease) 900ms;
}

.cine-hero.is-ready .cine-hero__eyebrow,
.cine-hero.is-ready .cine-hero__sub,
.cine-hero.is-ready .cine-hero__actions { opacity: 1; transform: translateY(0); }
.cine-hero.is-ready .cine-hero__title .line span { opacity: 1; transform: translateY(0); }

/* Scroll hint */
.cine-hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease) 1500ms, color var(--t) var(--ease);
}
.cine-hero.is-ready .cine-hero__scroll { opacity: 1; }
.cine-hero__scroll:hover { color: var(--c-white); }
.cine-hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, transparent, currentColor 50%, currentColor);
  position: relative;
  overflow: hidden;
}
.cine-hero__scroll-line::after {
  content: ""; position: absolute; left: 0; right: 0; top: -100%;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--c-primary-l));
  animation: scroll-pulse 2.4s var(--ease-out) infinite;
}
@keyframes scroll-pulse {
  0%   { top: -100%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Vertical EST sticker on right edge */
.cine-hero__sticker {
  position: absolute;
  right: clamp(20px, 4vw, 56px); bottom: clamp(100px, 16vh, 180px);
  z-index: 3;
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  border-right: 1px solid rgba(255,255,255,0.18);
  padding: 18px 8px 18px 0;
}

/* =========================================================
   CINEMATIC ACT — full viewport, video/image bg, sticky overlay
   ========================================================= */
.cine-act {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--c-ink-2);
  color: var(--c-white);
  display: flex; align-items: center;
}
.cine-act__media {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.cine-act__media video,
.cine-act__media img,
.cine-act__media picture {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.08);
  transition: transform 3s var(--ease-out);
  display: block;
}
.cine-act.is-visible .cine-act__media img,
.cine-act.is-visible .cine-act__media video { transform: scale(1); }

.cine-act__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,26,0.55) 0%, rgba(10,15,26,0.25) 40%, rgba(10,15,26,0.7) 100%);
  z-index: 1;
}
.cine-act--right .cine-act__media::after {
  background:
    linear-gradient(180deg, rgba(10,15,26,0.5) 0%, rgba(10,15,26,0.2) 35%, rgba(10,15,26,0.7) 100%),
    linear-gradient(270deg, rgba(10,15,26,0.55) 0%, rgba(10,15,26,0) 55%);
}
.cine-act--left .cine-act__media::after {
  background:
    linear-gradient(180deg, rgba(10,15,26,0.5) 0%, rgba(10,15,26,0.2) 35%, rgba(10,15,26,0.7) 100%),
    linear-gradient(90deg, rgba(10,15,26,0.65) 0%, rgba(10,15,26,0) 55%);
}

.cine-act__inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding: clamp(140px, 20vh, 200px) var(--pad-x) clamp(100px, 14vh, 140px);
  display: grid;
}
.cine-act--left .cine-act__inner { justify-items: start; }
.cine-act--right .cine-act__inner { justify-items: end; text-align: right; }
.cine-act--center .cine-act__inner { justify-items: center; text-align: center; }

.cine-act__num {
  font-family: var(--ff);
  font-size: 14px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-primary-l);
  margin-bottom: clamp(24px, 4vh, 36px);
  display: inline-flex; align-items: center; gap: 14px;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
/* hairline before removed — flat label rule */
.cine-act.is-visible .cine-act__num { opacity: 1; transform: translateY(0); }

.cine-act__title {
  font-family: var(--ff);
  font-size: var(--fs-act);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: var(--tr-tight);
  color: var(--c-white);
  max-width: 16ch;
  text-wrap: balance;
  opacity: 0; transform: translateY(40px);
  transition: opacity var(--t-cine) var(--ease) 100ms, transform var(--t-cine) var(--ease) 100ms;
}
.cine-act__title .it { color: inherit; font-style: normal; font-weight: inherit; }
.cine-act.is-visible .cine-act__title { opacity: 1; transform: translateY(0); }

.cine-act__desc {
  margin-top: clamp(24px, 3.5vh, 36px);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  max-width: 52ch;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease) 400ms, transform var(--t-slow) var(--ease) 400ms;
}
.cine-act.is-visible .cine-act__desc { opacity: 1; transform: translateY(0); }

.cine-act__actions {
  display: flex; gap: 14px;
  margin-top: clamp(32px, 4vh, 44px);
  flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease) 600ms, transform var(--t-slow) var(--ease) 600ms;
}
.cine-act.is-visible .cine-act__actions { opacity: 1; transform: translateY(0); }
.cine-act--right .cine-act__actions { justify-content: flex-end; }

/* Massive single number for "1500 m²" / "22 fleet" / "2014" hero moments */
.cine-act__bignum {
  font-family: var(--ff);
  font-size: var(--fs-num);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: var(--tr-tight);
  color: var(--c-primary-l);
  margin-bottom: clamp(20px, 3vh, 32px);
  display: block;
}
.cine-act__bignum sup {
  font-size: 0.4em;
  vertical-align: super;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-left: 6px;
}

/* Stats row beneath title */
.cine-act__stats {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: clamp(32px, 5vw, 64px);
  margin-top: clamp(36px, 5vh, 56px);
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease) 800ms, transform var(--t-slow) var(--ease) 800ms;
}
.cine-act.is-visible .cine-act__stats { opacity: 1; transform: translateY(0); }
.cine-act__stat-num {
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: var(--tr-tight);
  color: var(--c-white);
  line-height: 1;
}
.cine-act__stat-label {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* =========================================================
   CINEMATIC BANNER — wide photo break with minimal overlay text
   ========================================================= */
.cine-banner {
  position: relative;
  min-height: 70vh;
  min-height: 70svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--c-ink);
  color: var(--c-white);
}
.cine-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.cine-banner__media img,
.cine-banner__media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.04);
  transition: transform 2.2s var(--ease-out);
}
.cine-banner.is-visible .cine-banner__media img { transform: scale(1); }
.cine-banner__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,15,26,0.82) 0%, rgba(10,15,26,0.5) 30%, rgba(10,15,26,0) 60%),
    linear-gradient(180deg, rgba(10,15,26,0.35) 0%, rgba(10,15,26,0) 30%, rgba(10,15,26,0.55) 100%);
  z-index: 1;
}
.cine-banner__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(80px, 12vh, 120px) var(--pad-x);
  width: 100%;
}
.cine-banner__eyebrow {
  font-size: 12px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  margin-bottom: clamp(20px, 3vh, 28px);
}
.cine-banner__title {
  font-family: var(--ff);
  font-size: clamp(2rem, 4.6vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: var(--tr-tight);
  color: var(--c-white);
  max-width: 18ch;
  margin-bottom: clamp(22px, 3vh, 30px);
  text-wrap: balance;
}
.cine-banner__sub {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 48ch;
  margin-bottom: clamp(28px, 4vh, 40px);
}
.cine-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
   CINEMATIC STATEMENT — full viewport, light bg, dark massive text
   ========================================================= */
.cine-statement {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-bg-light);
  color: var(--c-ink);
  padding: clamp(120px, 18vh, 200px) var(--pad-x);
  overflow: hidden;
}
.cine-statement::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(2,6,23,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
}
.cine-statement__inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 64rem;
  text-align: center;
}
.cine-statement__text {
  font-family: var(--ff);
  font-size: var(--fs-statement);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: var(--tr-tight);
  text-wrap: balance;
  max-width: 22ch;
  margin-inline: auto;
  opacity: 0; transform: translateY(40px);
  transition: opacity var(--t-cine) var(--ease), transform var(--t-cine) var(--ease);
}
.cine-statement__text .it { color: inherit; font-style: normal; font-weight: inherit; }
.cine-statement.is-visible .cine-statement__text { opacity: 1; transform: translateY(0); }
.cine-statement__sub {
  margin-top: clamp(24px, 3.5vh, 36px);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  color: var(--c-ink-3);
  max-width: 52ch;
  margin-inline: auto;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease) 400ms, transform var(--t-slow) var(--ease) 400ms;
}
.cine-statement.is-visible .cine-statement__sub { opacity: 1; transform: translateY(0); }
.cine-statement__cta {
  display: inline-flex;
  margin-top: clamp(32px, 5vh, 48px);
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease) 600ms, transform var(--t-slow) var(--ease) 600ms;
}
.cine-statement.is-visible .cine-statement__cta { opacity: 1; transform: translateY(0); }

/* =========================================================
   CINEMATIC GRID — split-screen tile sequence (sektörel, hubs)
   ========================================================= */
.cine-grid {
  position: relative;
  background: var(--c-ink-2);
  color: var(--c-white);
}
.cine-grid__head {
  padding: clamp(96px, 14vh, 140px) var(--pad-x) clamp(56px, 8vh, 80px);
  max-width: var(--container-wide);
  margin-inline: auto;
}
.cine-grid__title {
  font-family: var(--ff);
  font-size: var(--fs-act);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: var(--tr-tight);
  max-width: 22ch;
  margin-top: clamp(24px, 3vh, 36px);
  text-wrap: balance;
}
.cine-grid__title .it { color: inherit; font-style: normal; font-weight: inherit; }
.cine-grid__lede {
  margin-top: clamp(24px, 3vh, 36px);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 56ch;
}
.cine-grid__tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-rule);
  border-top: 1px solid var(--c-rule);
}
.cine-tile {
  position: relative;
  display: block;
  min-height: 56vh;
  overflow: hidden;
  background: var(--c-ink-2);
  cursor: pointer;
  isolation: isolate;
}
.cine-tile__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.cine-tile__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1);
  transition: transform 1.4s var(--ease-out);
}
.cine-tile:hover .cine-tile__media img { transform: scale(1.05); }
.cine-tile__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,15,26,0.4) 0%, rgba(10,15,26,0.4) 30%, rgba(10,15,26,0.85) 100%);
  transition: background var(--t) var(--ease);
  z-index: 1;
}
.cine-tile:hover .cine-tile__media::after {
  background: linear-gradient(180deg, rgba(10,15,26,0.55) 0%, rgba(10,15,26,0.5) 30%, rgba(41,152,191,0.55) 100%);
}
.cine-tile__inner {
  position: relative; z-index: 2;
  padding: clamp(36px, 5vw, 56px);
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.cine-tile__num {
  font-size: 12px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-primary-l);
  margin-bottom: 16px;
}
.cine-tile__title {
  font-family: var(--ff);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: var(--tr-tight);
  color: var(--c-white);
  margin-bottom: 16px;
  text-wrap: balance;
}
.cine-tile__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 42ch;
}
.cine-tile__arr {
  position: absolute;
  top: clamp(28px, 4vw, 40px); right: clamp(28px, 4vw, 40px);
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.32);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-white);
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.cine-tile:hover .cine-tile__arr {
  background: var(--c-white); color: var(--c-ink); border-color: var(--c-white);
  transform: translate(4px, -4px);
}

@media (max-width: 768px) {
  .cine-grid__tiles { grid-template-columns: 1fr; }
  .cine-tile { min-height: 60vh; }
}

/* =========================================================
   CINEMATIC TICKER — horizontal scroll bar
   ========================================================= */
.cine-ticker {
  background: var(--c-ink);
  border-top: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.cine-ticker__track {
  display: flex; gap: clamp(48px, 6vw, 80px); align-items: center;
  width: max-content;
  animation: ticker-roll 60s linear infinite;
}
.cine-ticker:hover .cine-ticker__track { animation-play-state: paused; }
.cine-ticker__item {
  display: inline-flex; align-items: center; gap: 18px;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 600;
  letter-spacing: var(--tr-snug);
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease);
}
.cine-ticker__item:hover { color: var(--c-primary-l); }
.cine-ticker__item .num {
  font-size: 0.75em;
  font-weight: 500;
  color: var(--c-primary-l);
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
}
.cine-ticker__dot {
  width: 4px; height: 4px;
  background: var(--c-primary);
  border-radius: 50%;
  display: inline-block;
}
@keyframes ticker-roll {
  to { transform: translateX(-50%); }
}

/* =========================================================
   PAGE HERO — inner pages (smaller than cine-hero)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: 68vh;
  min-height: 68svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--c-ink-2);
  color: var(--c-white);
  padding-top: var(--hdr-h);
}
.page-hero__media {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.page-hero__media img,
.page-hero__media picture {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.page-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,26,0.6) 0%, rgba(10,15,26,0.3) 40%, rgba(10,15,26,0.85) 100%),
    linear-gradient(90deg, rgba(10,15,26,0.5) 0%, rgba(10,15,26,0) 60%);
  z-index: 1;
}
.page-hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(80px, 12vh, 120px) var(--pad-x);
}
.page-hero__eyebrow {
  font-size: 12px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: clamp(20px, 3vh, 28px);
}
.page-hero__title {
  font-family: var(--ff);
  font-size: clamp(2rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: var(--tr-tight);
  color: var(--c-white);
  max-width: 18ch;
  text-wrap: balance;
}
.page-hero__title .it { color: inherit; font-style: normal; font-weight: inherit; }
.page-hero__lede {
  margin-top: clamp(24px, 3vh, 32px);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 56ch;
}
.page-hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: clamp(32px, 4vh, 44px);
}

/* Breadcrumb */
.crumb {
  background: var(--c-ink);
  border-bottom: 1px solid var(--c-rule);
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.crumb__list { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }
.crumb__list a { cursor: pointer; transition: color var(--t-fast) var(--ease); }
.crumb__list a:hover { color: var(--c-primary-l); }
.crumb__sep { color: rgba(255,255,255,0.3); }
.crumb__current { color: var(--c-white); }

.lead-section {
  background: var(--c-ink-2);
  color: var(--c-white);
  padding: clamp(96px, 14vh, 140px) 0;
  border-bottom: 1px solid var(--c-rule);
}
.lead-section__text {
  font-family: var(--ff);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: var(--tr-snug);
  color: rgba(255,255,255,0.92);
  max-width: 28ch;
  text-wrap: balance;
  margin-inline: auto;
  max-width: var(--container);
  padding-inline: var(--pad-x);
  max-width: 32ch;
}
.lead-section__text strong {
  color: var(--c-primary-l);
  font-weight: 700;
}

/* Sub-services cinematic split-screen */
.subs {
  background: var(--c-ink-2);
  color: var(--c-white);
}
.subs__head {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(96px, 14vh, 140px) var(--pad-x) clamp(56px, 8vh, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
@media (max-width: 768px) { .subs__head { grid-template-columns: 1fr; } }
.subs__title {
  font-family: var(--ff);
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: var(--tr-tight);
  text-wrap: balance;
}
.subs__lede {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 48ch;
}

.sub-cine {
  position: relative;
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-top: 1px solid var(--c-rule);
}
.sub-cine--reverse { direction: rtl; }
.sub-cine--reverse > * { direction: ltr; }

@media (max-width: 900px) {
  .sub-cine { grid-template-columns: 1fr; direction: ltr; }
}

.sub-cine__media {
  position: relative;
  overflow: hidden;
  background: var(--c-ink);
  min-height: 60vh;
}
.sub-cine__media img,
.sub-cine__media picture {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.04);
  transition: transform 2s var(--ease-out);
}
.sub-cine.is-visible .sub-cine__media img { transform: scale(1); }
.sub-cine__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,15,26,0.15) 0%, rgba(10,15,26,0.5) 100%);
  z-index: 1;
}
.sub-cine__num {
  position: absolute; top: 32px; left: 32px;
  z-index: 2;
  font-size: 12px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-primary-l);
}

.sub-cine__text {
  padding: clamp(56px, 8vw, 96px) clamp(40px, 6vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--c-ink-2);
}
.sub-cine__title {
  font-family: var(--ff);
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: var(--tr-tight);
  color: var(--c-white);
  margin-bottom: clamp(20px, 3vh, 28px);
  text-wrap: balance;
}
.sub-cine__desc {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin-bottom: clamp(28px, 4vh, 36px);
  max-width: 48ch;
}
.sub-cine__features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  margin-bottom: clamp(28px, 4vh, 36px);
}
.sub-cine__features li {
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.sub-cine__features li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--c-primary);
}

/* =========================================================
   FOOTER — cinematic minimal, massive wordmark
   ========================================================= */
.footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.7);
  padding-top: clamp(96px, 12vw, 140px);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "MERS LOJİSTİK";
  position: absolute; left: 50%; bottom: -2vw;
  transform: translateX(-50%);
  font-family: var(--ff);
  font-size: clamp(6rem, 24vw, 30rem);
  font-weight: 800;
  letter-spacing: var(--tr-tight);
  color: rgba(255,255,255,0.035);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0; line-height: 0.8;
}
.footer > .wrap { position: relative; z-index: 1; max-width: var(--container-wide); }

.footer__top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(56px, 7vw, 80px);
  border-bottom: 1px solid var(--c-rule);
}
.footer__brand img {
  max-height: 36px; width: auto; max-width: 280px; margin-bottom: 28px;
}
.footer__brand p {
  max-width: 38ch; line-height: 1.65;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.65);
}
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--c-rule);
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.footer__social a:hover {
  background: var(--c-primary); border-color: var(--c-primary); transform: translateY(-2px);
}
.footer__col h4 {
  font-family: var(--ff);
  font-size: 11px; letter-spacing: var(--tr-wide); text-transform: uppercase;
  color: var(--c-primary-l); font-weight: 700;
  margin-bottom: 24px;
}
.footer__col ul li a {
  display: block; padding: 7px 0;
  font-size: 14px; color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: color var(--t-fast) var(--ease), padding-left var(--t) var(--ease);
}
.footer__col ul li a:hover { color: var(--c-primary-l); padding-left: 8px; }
.footer__contact-item {
  display: flex; gap: 12px; margin-bottom: 16px;
  font-size: 14px; color: rgba(255,255,255,0.7);
}
.footer__contact-item i { color: var(--c-primary-l); flex-shrink: 0; font-size: 18px; }
.footer__contact-item a { color: inherit; transition: color var(--t-fast) var(--ease); }
.footer__contact-item a:hover { color: var(--c-primary-l); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-block: 28px;
  font-size: 12.5px; color: rgba(255,255,255,0.45);
}
.footer__bottom ul { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__bottom ul li a { transition: color var(--t-fast) var(--ease); cursor: pointer; }
.footer__bottom ul li a:hover { color: var(--c-white); }

@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }

/* ---------- Floating actions ---------- */
.floating {
  position: fixed; right: 20px; bottom: 24px; z-index: 100;
  display: flex; flex-direction: column; gap: 10px;
}
.floating a, .floating button {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-white); color: var(--c-ink);
  border-radius: 50%;
  border: 0;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.4);
  transition: background var(--t) var(--ease), color var(--t) var(--ease), transform var(--t) var(--ease);
  cursor: pointer;
}
.floating .wa { background: #25D366; color: var(--c-white); }
.floating a:hover, .floating button:hover { transform: translateY(-3px); }

/* Back-to-top: scroll edilene kadar gizli, belli mesafeden sonra görünür */
.floating [data-back-to-top] {
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(14px) scale(0.9);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease),
              visibility var(--t), background var(--t) var(--ease), color var(--t) var(--ease);
}
.floating [data-back-to-top].is-visible {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* =========================================================
   Reveal helpers (IntersectionObserver-driven)
   ========================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .cine-hero__title .line span,
  .cine-hero__eyebrow,
  .cine-hero__sub,
  .cine-hero__actions,
  .cine-act__num,
  .cine-act__title,
  .cine-act__desc,
  .cine-act__actions,
  .cine-act__stats,
  .cine-statement__text,
  .cine-statement__sub,
  .cine-statement__cta,
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .cine-act__media img,
  .cine-act__media video { transform: scale(1) !important; }
}

/* =========================================================
   MARQUEE — stats ticker (dark cinematic variant)
   ========================================================= */
.marquee {
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px) 0;
  background: var(--c-ink);
  color: var(--c-white);
  border-top: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
}
.marquee__track {
  display: flex; gap: clamp(36px, 5vw, 64px); align-items: center;
  width: max-content;
  animation: ticker-roll 60s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 500;
  letter-spacing: var(--tr-snug);
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
}
.marquee__item .big {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 800;
  letter-spacing: var(--tr-tight);
  color: var(--c-white);
  line-height: 1;
}
.marquee__dot {
  width: 5px; height: 5px;
  background: var(--c-primary);
  border-radius: 50%;
  display: inline-block;
}

/* =========================================================
   CTA BAND — compact closing CTA on inner pages
   ========================================================= */
.cta-band {
  position: relative;
  padding-block: clamp(80px, 10vw, 128px);
  background: var(--c-ink-2);
  color: var(--c-white);
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-band > .wrap { position: relative; z-index: 1; }
.cta-band__title {
  font-family: var(--ff);
  font-size: clamp(1.7rem, 3.6vw, 3.4rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: var(--tr-tight);
  max-width: 22ch;
  margin-inline: auto;
  text-wrap: balance;
}
.cta-band__title .it { color: inherit; font-style: normal; font-weight: inherit; }
.cta-band__actions {
  margin-top: clamp(28px, 4vh, 44px);
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* =========================================================
   FORM — dark cinematic register
   ========================================================= */
.form-section {
  background: var(--c-ink-2);
  color: var(--c-white);
  padding: clamp(80px, 12vw, 140px) 0;
  border-bottom: 1px solid var(--c-rule);
}
.form-block { max-width: 920px; margin-inline: auto; padding-inline: var(--pad-x); }
.form-block__head { margin-bottom: clamp(36px, 5vw, 56px); }
.form-block__head .eyebrow { color: var(--c-primary-l); }
.form-block__head .eyebrow::before { background: var(--c-primary); opacity: 1; }

.form {
  max-width: 760px;
  display: grid; gap: 28px;
}
.form--wide { max-width: none; }
.form__divider {
  display: flex; align-items: center; gap: 18px;
  margin: 16px 0 0;
  font-size: 11px; letter-spacing: var(--tr-wide); text-transform: uppercase;
  color: var(--c-primary-l); font-weight: 700;
}
.form__divider::before, .form__divider::after {
  content: ""; flex: 1; height: 1px; background: var(--c-rule);
}
.form__row {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.form__field { position: relative; }
.form__label {
  display: block;
  font-size: 11px; letter-spacing: var(--tr-wide); text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-weight: 600;
  margin-bottom: 10px;
}
.form__label .req { color: var(--c-primary-l); }
.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 14px 0;
  border: 0; border-bottom: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  font: inherit; color: var(--c-white);
  transition: border-color var(--t) var(--ease);
}
.form__select { padding: 14px 0; appearance: none; cursor: pointer; }
.form__select option { background: var(--c-ink-2); color: var(--c-white); }
.form__textarea { resize: vertical; min-height: 120px; padding: 14px 0; }
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none; border-bottom-color: var(--c-primary-l);
}
.form__input::placeholder, .form__textarea::placeholder { color: rgba(255,255,255,0.3); }
.form__check {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 13.5px; color: rgba(255,255,255,0.72); line-height: 1.55;
  cursor: pointer;
}
.form__check input { margin-top: 4px; accent-color: var(--c-primary); }
.form__check a { color: var(--c-primary-l); text-decoration: underline; text-underline-offset: 3px; }
.form__actions { margin-top: 16px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Honeypot — gizli, botlar için tuzak */
.form__hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* Form hata mesajı */
.form__error {
  margin: 0 0 4px; padding: 12px 16px;
  background: rgba(220,38,38,0.10); border: 1px solid rgba(220,38,38,0.32);
  color: #fca5a5; border-radius: var(--r-sm); font-size: 14px; line-height: 1.5;
}

/* Form teşekkür ekranı */
.form__success {
  text-align: center;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 48px);
  border: 1px solid var(--c-primary);
  border-radius: var(--r-md);
  background: rgba(41,152,191,0.08);
}
.form__success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--c-primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 38px; margin-bottom: 20px;
}
.form__success-title {
  font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 800;
  letter-spacing: var(--tr-tight); margin-bottom: 10px; color: inherit;
}
.form__success-text { font-size: 15px; line-height: 1.6; max-width: 46ch; margin-inline: auto; opacity: 0.85; }

@media (max-width: 760px) {
  .form__row { grid-template-columns: 1fr; }
}

/* =========================================================
   INFO COLUMNS (contact info + form side-by-side)
   ========================================================= */
.info-section {
  background: var(--c-ink-2);
  color: var(--c-white);
  padding: clamp(80px, 12vw, 140px) 0;
  border-bottom: 1px solid var(--c-rule);
}
.info-cols {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.info-cols .eyebrow { color: var(--c-primary-l); }
.info-cols .eyebrow::before { background: var(--c-primary); opacity: 1; }
.info-cols .h2 { margin-top: 14px; color: var(--c-white); }
.info-cols .lede { color: rgba(255,255,255,0.7); margin-top: 24px; }

@media (max-width: 900px) {
  .info-cols { grid-template-columns: 1fr; }
}

.info-block {
  border-top: 1px solid var(--c-rule);
  padding-top: 24px;
  margin-bottom: 32px;
}
.info-block h4 {
  font-size: 11px; letter-spacing: var(--tr-wide); text-transform: uppercase;
  color: var(--c-primary-l); font-weight: 700; margin-bottom: 12px;
}
.info-block p, .info-block a {
  font-size: 1rem; line-height: 1.65; color: rgba(255,255,255,0.85);
}
.info-block a { transition: color var(--t-fast); }
.info-block a:hover { color: var(--c-primary-l); }

/* =========================================================
   VALUES grid (corporate)
   ========================================================= */
.values-section {
  background: var(--c-ink-2);
  color: var(--c-white);
  padding: clamp(80px, 12vw, 140px) 0;
  border-bottom: 1px solid var(--c-rule);
}
.values-head {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  margin-bottom: clamp(48px, 7vw, 80px);
}
.values-head .eyebrow { color: var(--c-primary-l); }
.values-head .eyebrow::before { background: var(--c-primary); opacity: 1; }
.values-head h2 {
  margin-top: 14px;
  font-family: var(--ff);
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
  font-weight: 800; line-height: 1.02;
  letter-spacing: var(--tr-tight);
  color: var(--c-white);
  text-wrap: balance;
}
.values-head h2 .it { color: inherit; font-style: normal; font-weight: inherit; }
.values-head .lede { color: rgba(255,255,255,0.7); margin-top: 24px; }

.values {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  border-top: 1px solid var(--c-rule);
}
.value {
  padding: clamp(32px, 4vw, 56px) clamp(20px, 3vw, 32px);
  border-right: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
}
.value:nth-child(2n) { border-right: 0; }
.value__num {
  font-size: 12px; letter-spacing: var(--tr-wide); font-weight: 700;
  text-transform: uppercase;
  color: var(--c-primary-l); margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 12px;
}
/* hairline before removed — flat label rule */
.value__title {
  font-family: var(--ff);
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  font-weight: 700; letter-spacing: var(--tr-tight);
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--c-white);
}
.value__text { color: rgba(255,255,255,0.72); line-height: 1.65; font-size: 15px; }

@media (max-width: 760px) {
  .values { grid-template-columns: 1fr; }
  .value { border-right: 0; }
}

/* ========== .values--cards — Beaton-style 3-col document/certificate grid ========== */
.values--cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.values--cards .value {
  display: flex;
  flex-direction: column;
  min-height: clamp(260px, 32vh, 340px);
  padding: clamp(32px, 3.5vw, 56px);
  position: relative;
  transition: background-color 320ms var(--ease-out);
  border-color: #E2E8F0;
}
.values--cards .value:nth-child(3n) { border-right: 0; }
.values--cards .value:nth-child(2n) { border-right: 1px solid #E2E8F0; }
.values--cards .value:hover {
  background: rgba(41, 152, 191, 0.045);
}
.values--cards .value::after {
  content: "";
  position: absolute;
  top: clamp(28px, 3vw, 40px); right: clamp(28px, 3vw, 40px);
  width: 22px; height: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='1.5' stroke-linecap='square'><path d='M7 17L17 7M9 7h8v8'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 360ms var(--ease-out), background-image 360ms var(--ease-out);
}
.values--cards .value:hover::after {
  transform: translate(5px, -5px);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F7A99' stroke-width='1.5' stroke-linecap='square'><path d='M7 17L17 7M9 7h8v8'/></svg>");
}
.values--cards .value__num {
  font-size: 11.5px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-primary-d);
  margin-bottom: 0;
  display: inline-block;
}
.values--cards .value__title {
  margin-top: auto;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: var(--tr-tight);
  line-height: 1.15;
  color: var(--c-ink);
  margin-bottom: 14px;
  text-transform: none;
}
.values--cards .value__text {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  max-width: 38ch;
}
@media (max-width: 1024px) {
  .values--cards { grid-template-columns: repeat(2, 1fr); }
  .values--cards .value:nth-child(n) { border-right: 1px solid #E2E8F0; }
  .values--cards .value:nth-child(2n) { border-right: 0; }
  .values--cards .value:nth-child(3n) { border-right: 1px solid #E2E8F0; }
}
@media (max-width: 640px) {
  .values--cards { grid-template-columns: 1fr; }
  .values--cards .value:nth-child(n) { border-right: 0; }
  .values--cards .value { min-height: 220px; }
}

/* Dark theme variant of values--cards */
[data-theme="dark"] .values--cards .value { border-color: var(--c-rule); }
[data-theme="dark"] .values--cards .value:hover { background: rgba(41, 152, 191, 0.08); }
[data-theme="dark"] .values--cards .value::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BFE4F0' stroke-width='1.5' stroke-linecap='square'><path d='M7 17L17 7M9 7h8v8'/></svg>");
}
[data-theme="dark"] .values--cards .value:hover::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='square'><path d='M7 17L17 7M9 7h8v8'/></svg>");
}
[data-theme="dark"] .values--cards .value__num { color: var(--c-primary-l); }
[data-theme="dark"] .values--cards .value__title { color: var(--c-white); }
[data-theme="dark"] .values--cards .value__text { color: rgba(255,255,255,0.72); }

/* =========================================================
   TIMELINE (history)
   ========================================================= */
.timeline-section {
  background: var(--c-ink-2);
  color: var(--c-white);
  padding: clamp(80px, 12vw, 140px) 0;
  border-bottom: 1px solid var(--c-rule);
}
.timeline-head {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  margin-bottom: clamp(48px, 7vw, 72px);
}
.timeline-head .eyebrow { color: var(--c-primary-l); }
.timeline-head .eyebrow::before { background: var(--c-primary); opacity: 1; }
.timeline-head h2 {
  margin-top: 14px;
  font-family: var(--ff);
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
  font-weight: 800; line-height: 1.02;
  letter-spacing: var(--tr-tight);
  color: var(--c-white);
  text-wrap: balance;
}
.timeline-head h2 .it { color: inherit; font-style: normal; font-weight: inherit; }
.timeline-head .lede { color: rgba(255,255,255,0.7); margin-top: 24px; }

.timeline {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  border-top: 1px solid var(--c-rule);
}
.timeline__row {
  display: grid; grid-template-columns: 180px 1fr;
  gap: 48px;
  padding-block: clamp(28px, 3.5vw, 44px);
  border-bottom: 1px solid var(--c-rule);
  align-items: baseline;
}
.timeline__year {
  font-family: var(--ff);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800; letter-spacing: var(--tr-tight);
  color: var(--c-primary-l);
  line-height: 1;
}
.timeline__title {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 700; margin-bottom: 10px;
  letter-spacing: var(--tr-snug);
  color: var(--c-white);
}
.timeline__text { color: rgba(255,255,255,0.72); line-height: 1.65; font-size: 15px; max-width: 56ch; }
@media (max-width: 760px) {
  .timeline__row { grid-template-columns: 1fr; gap: 12px; }
}

/* =========================================================
   STEPS (3-step horizontal stepper)
   ========================================================= */
.steps-section {
  background: var(--c-ink-2);
  color: var(--c-white);
  padding: clamp(80px, 12vw, 140px) 0;
  border-bottom: 1px solid var(--c-rule);
}
.steps-head {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  margin-bottom: clamp(48px, 7vw, 72px);
}
.steps-head .eyebrow { color: var(--c-primary-l); }
.steps-head .eyebrow::before { background: var(--c-primary); opacity: 1; }
.steps-head h2 {
  margin-top: 14px;
  font-family: var(--ff);
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
  font-weight: 800; line-height: 1.02;
  letter-spacing: var(--tr-tight);
  color: var(--c-white);
  text-wrap: balance;
}
.steps-head .lede { color: rgba(255,255,255,0.7); margin-top: 24px; }

.steps {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--c-rule);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.step {
  background: var(--c-ink-2);
  padding: clamp(32px, 4vw, 56px) clamp(28px, 3vw, 40px);
}
.step__num {
  font-family: var(--ff);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800; letter-spacing: var(--tr-tight);
  color: var(--c-primary-l);
  line-height: 1;
  margin-bottom: 24px;
}
.step__title {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 700; margin-bottom: 12px;
  letter-spacing: var(--tr-snug);
  color: var(--c-white);
}
.step__text { color: rgba(255,255,255,0.72); line-height: 1.6; font-size: 14.5px; }
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
}

/* =========================================================
   LEGAL (long-form content, dark register)
   ========================================================= */
.legal-section {
  background: var(--c-ink-2);
  color: var(--c-white);
  padding: clamp(80px, 12vw, 140px) 0;
  border-bottom: 1px solid var(--c-rule);
}
.legal {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
}
.legal h2 {
  font-family: var(--ff);
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  font-weight: 700;
  letter-spacing: var(--tr-tight);
  margin: 56px 0 16px;
  padding-top: 32px;
  border-top: 1px solid var(--c-rule);
  color: var(--c-white);
}
.legal h2:first-of-type { padding-top: 0; border-top: 0; margin-top: 16px; }
.legal h3 {
  font-family: var(--ff);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--c-white);
}
.legal p { margin: 0 0 16px; color: rgba(255,255,255,0.78); }
.legal ul, .legal ol {
  list-style: none; padding: 0;
  margin: 0 0 24px;
}
.legal ul li, .legal ol li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--c-rule);
  color: rgba(255,255,255,0.78);
}
.legal ul li:last-child, .legal ol li:last-child { border-bottom: 0; }
.legal ul li::before {
  content: ""; position: absolute; left: 0; top: 24px;
  width: 14px; height: 1px; background: var(--c-primary);
}
.legal ol { counter-reset: legal-c; }
.legal ol li { counter-increment: legal-c; }
.legal ol li::before {
  content: counter(legal-c, decimal-leading-zero);
  position: absolute; left: 0; top: 10px;
  font-size: 12px; letter-spacing: var(--tr-wide); color: var(--c-primary-l); font-weight: 600;
}
.legal a { color: var(--c-primary-l); text-decoration: underline; text-underline-offset: 3px; transition: color var(--t-fast) var(--ease); }
.legal a:hover { color: var(--c-white); }
.legal strong { color: var(--c-white); font-weight: 700; }
.legal em { font-style: italic; color: rgba(255,255,255,0.85); }
.legal__meta {
  font-size: 13px; color: rgba(255,255,255,0.5); font-style: italic;
  margin-bottom: 24px;
}
.legal__note {
  margin-top: 56px; padding: 24px 28px;
  border-left: 3px solid var(--c-primary);
  background: var(--c-ink);
  font-size: 13.5px; color: rgba(255,255,255,0.7); line-height: 1.65;
}

/* =========================================================
   BALANCED LIGHT REGISTER — reading sections flipped to light
   Cinematic moments (hero/act/grid/page-hero/footer/marquee/cta-band)
   stay dark for video & image impact. Reading sections (lead, values,
   timeline, steps, info, form, legal) flip to white/off-white for
   comfort, professional feel, and contrast rhythm.
   ========================================================= */
body { background: var(--c-bg-light); color: var(--c-ink); }

/* Crumb */
.crumb {
  background: var(--c-bg-light);
  border-bottom: 1px solid #E2E8F0;
  color: #475569;
}
.crumb__list a { color: #475569; }
.crumb__list a:hover { color: var(--c-primary-d); }
.crumb__sep { color: #94A3B8; }
.crumb__current { color: var(--c-ink); }

/* Lead */
.lead-section {
  background: #FFFFFF;
  color: var(--c-ink);
  border-bottom: 1px solid #E2E8F0;
}
.lead-section__text { color: var(--c-ink); }
.lead-section__text strong { color: var(--c-primary-d); }

/* Subs / sub-cine — light text panel, image stays full */
.subs { background: #FFFFFF; color: var(--c-ink); }
.subs__title { color: var(--c-ink); }
.subs__lede { color: #475569; }
.sub-cine { border-top: 1px solid #E2E8F0; }
.sub-cine__text { background: #FFFFFF; color: var(--c-ink); }
.sub-cine__title { color: var(--c-ink); }
.sub-cine__desc { color: #475569; }
.sub-cine__features li { color: #475569; }

/* Values */
.values-section {
  background: var(--c-bg-light);
  color: var(--c-ink);
  border-bottom: 1px solid #E2E8F0;
}
.values-head .eyebrow { color: var(--c-primary-d); }
.values-head .eyebrow::before { background: var(--c-primary); }
.values-head h2 { color: var(--c-ink); }
.values-head h2 .it { color: inherit; }
.values-head .lede { color: #475569; }
.values { border-top-color: #E2E8F0; }
.value { border-color: #E2E8F0; }
.value__num { color: var(--c-primary-d); }
/* override block: no hairline */
.value__title { color: var(--c-ink); }
.value__text { color: #475569; }

/* Timeline */
.timeline-section {
  background: #FFFFFF;
  color: var(--c-ink);
  border-bottom: 1px solid #E2E8F0;
}
.timeline-head .eyebrow { color: var(--c-primary-d); }
.timeline-head .eyebrow::before { background: var(--c-primary); }
.timeline-head h2 { color: var(--c-ink); }
.timeline-head h2 .it { color: inherit; }
.timeline-head .lede { color: #475569; }
.timeline { border-top-color: #E2E8F0; }
.timeline__row { border-bottom-color: #E2E8F0; }
.timeline__year { color: var(--c-primary-d); }
.timeline__title { color: var(--c-ink); }
.timeline__text { color: #475569; }

/* Steps */
.steps-section {
  background: var(--c-bg-light);
  color: var(--c-ink);
  border-bottom: 1px solid #E2E8F0;
}
.steps-head .eyebrow { color: var(--c-primary-d); }
.steps-head .eyebrow::before { background: var(--c-primary); }
.steps-head h2 { color: var(--c-ink); }
.steps-head .lede { color: #475569; }
.steps { background: #E2E8F0; }
.step { background: #FFFFFF; }
.step__num { color: var(--c-primary-d); }
.step__title { color: var(--c-ink); }
.step__text { color: #475569; }

/* Info section + form on light */
.info-section {
  background: #FFFFFF;
  color: var(--c-ink);
  border-bottom: 1px solid #E2E8F0;
}
.info-cols .eyebrow { color: var(--c-primary-d); }
.info-cols .eyebrow::before { background: var(--c-primary); }
.info-cols .h2 { color: var(--c-ink); }
.info-cols .lede { color: #475569; }
.info-block { border-top-color: #E2E8F0; }
.info-block h4 { color: var(--c-primary-d); }
.info-block p, .info-block a { color: var(--c-ink); }
.info-block a:hover { color: var(--c-primary-d); }

/* Form section */
.form-section {
  background: var(--c-bg-light);
  color: var(--c-ink);
  border-bottom: 1px solid #E2E8F0;
}
.form-block__head .eyebrow { color: var(--c-primary-d); }
.form-block__head .eyebrow::before { background: var(--c-primary); }
.form-block__head .h2 { color: var(--c-ink); }
.form-block__head .lede { color: #475569; }

/* Form fields — flipped to dark-on-light */
.form__label { color: #475569; }
.form__label .req { color: var(--c-primary); }
.form__input,
.form__textarea,
.form__select {
  color: var(--c-ink);
  border-bottom-color: #CBD5E1;
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus { border-bottom-color: var(--c-primary); }
.form__input::placeholder, .form__textarea::placeholder { color: #94A3B8; }
.form__select option { background: #FFFFFF; color: var(--c-ink); }
.form__divider { color: var(--c-primary-d); }
.form__divider::before, .form__divider::after { background: #E2E8F0; }
.form__check { color: #475569; }
.form__check a { color: var(--c-primary-d); }
.form__check a:hover { color: var(--c-ink); }

/* Legal */
.legal-section {
  background: #FFFFFF;
  color: var(--c-ink);
  border-bottom: 1px solid #E2E8F0;
}
.legal { color: var(--c-ink); }
.legal h2 { color: var(--c-ink); border-top-color: #E2E8F0; }
.legal h3 { color: var(--c-ink); }
.legal p { color: #475569; }
.legal ul li, .legal ol li {
  color: #475569;
  border-bottom-color: #E2E8F0;
}
.legal ol li::before { color: var(--c-primary-d); }
.legal a { color: var(--c-primary-d); }
.legal a:hover { color: var(--c-ink); }
.legal strong { color: var(--c-ink); }
.legal__meta { color: #94A3B8; }
.legal__note {
  background: var(--c-bg-light);
  color: #475569;
}

/* =========================================================
   STATS BAND (homepage Rakamlarla Mers)
   ========================================================= */
.stats-section {
  background: var(--c-bg-light);
  color: var(--c-ink);
  padding: clamp(80px, 12vh, 140px) 0;
  border-bottom: 1px solid #E2E8F0;
}
.stats-head {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  margin-bottom: clamp(48px, 7vw, 72px);
}
.stats-head .eyebrow { color: var(--c-primary-d); }
.stats-head .eyebrow::before { background: var(--c-primary); }
.stats-head h2 {
  margin-top: 14px;
  font-family: var(--ff);
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
  font-weight: 800; line-height: 1.02;
  letter-spacing: var(--tr-tight);
  color: var(--c-ink);
  text-wrap: balance;
}
.stats-head .lede { color: #475569; margin-top: 24px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #E2E8F0;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  border-top: 1px solid #E2E8F0;
}
.stat-card {
  background: var(--c-bg-light);
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
  text-align: left;
}
.stat-card__num {
  font-family: var(--ff);
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  font-weight: 800;
  letter-spacing: var(--tr-tight);
  color: var(--c-ink);
  line-height: 1;
}
.stat-card__num sup {
  font-size: 0.42em;
  vertical-align: super;
  font-weight: 700;
  color: var(--c-primary);
  margin-left: 4px;
}
.stat-card__num .plus {
  color: var(--c-primary);
  font-weight: 800;
}
.stat-card__label {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: #475569;
  font-weight: 600;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   BLOG SECTION (homepage Son Yazılar)
   ========================================================= */
.blog-section {
  background: #FFFFFF;
  color: var(--c-ink);
  padding: clamp(80px, 12vh, 140px) 0;
  border-bottom: 1px solid #E2E8F0;
}
.blog-head {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  margin-bottom: clamp(48px, 7vw, 72px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.blog-head__title h2 {
  margin-top: 14px;
  font-family: var(--ff);
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
  font-weight: 800; line-height: 1.02;
  letter-spacing: var(--tr-tight);
  color: var(--c-ink);
}
.blog-head .eyebrow { color: var(--c-primary-d); }
.blog-head .eyebrow::before { background: var(--c-primary); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.5vw, 36px);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.blog-card {
  display: block;
  cursor: pointer;
  color: inherit;
  transition: transform 400ms var(--ease-out);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  background: #E2E8F0;
}
.blog-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
.blog-card:hover .blog-card__media img { transform: scale(1.06); }
.blog-card__date {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(10, 15, 26, 0.88);
  color: white;
  padding: 8px 12px 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  text-align: center;
  line-height: 1;
}
.blog-card__date .day {
  display: block;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.blog-card__body { padding: 22px 4px 0; }
.blog-card__cat {
  display: inline-block;
  font-size: 11px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-primary-d);
  margin-bottom: 12px;
}
.blog-card__title {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 700;
  letter-spacing: var(--tr-snug);
  line-height: 1.3;
  color: var(--c-ink);
  margin-bottom: 12px;
}
.blog-card__excerpt {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-card__more {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary-d);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card:hover .blog-card__more { color: var(--c-primary); }
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-head { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   FAQ ACCORDION (homepage SSS — dark variant for rhythm break)
   ========================================================= */
.faq-section {
  background: var(--c-ink-2);
  color: var(--c-white);
  padding: clamp(80px, 12vh, 140px) 0;
  border-bottom: 1px solid var(--c-rule);
}
.faq-head {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  margin-bottom: clamp(48px, 7vw, 72px);
}
.faq-head .eyebrow { color: var(--c-primary-l); }
.faq-head .eyebrow::before { background: var(--c-primary); }
.faq-head h2 {
  margin-top: 14px;
  font-family: var(--ff);
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
  font-weight: 800; line-height: 1.02;
  letter-spacing: var(--tr-tight);
  color: var(--c-white);
}
.faq-head .lede { color: rgba(255,255,255,0.72); margin-top: 24px; }
.faq-list {
  max-width: 880px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  border-top: 1px solid var(--c-rule);
}
.faq-item { border-bottom: 1px solid var(--c-rule); }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 26px 8px;
  background: transparent;
  font-family: var(--ff);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 600;
  letter-spacing: var(--tr-snug);
  color: var(--c-white);
  cursor: pointer;
  text-align: left;
  list-style: none;
  position: relative;
  transition: color 200ms var(--ease);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--c-primary-l); }
.faq-item__q::after {
  content: "";
  width: 12px; height: 12px;
  flex-shrink: 0;
  margin-left: 24px;
  border-right: 2px solid var(--c-primary-l);
  border-bottom: 2px solid var(--c-primary-l);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 320ms var(--ease-out);
}
.faq-item[open] .faq-item__q::after {
  transform: rotate(225deg) translateY(2px);
}
.faq-item__a {
  padding: 0 8px 28px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 62ch;
}
.faq-item__a strong { color: var(--c-primary-l); }

/* ---------- Brand watermark — oversized faint logo "M" mark ---------- */
.brand-wm {
  position: absolute;
  pointer-events: none;
  user-select: none;
  background-color: currentColor;
  -webkit-mask: url("../img/logo/mers-icon.svg") center / contain no-repeat;
          mask: url("../img/logo/mers-icon.svg") center / contain no-repeat;
}
.faq-section { position: relative; overflow: hidden; }
.faq-head, .faq-list { position: relative; z-index: 1; }
.faq-section .brand-wm {
  width: min(560px, 56vw);
  aspect-ratio: 200 / 192;
  top: 50%; right: -5%;
  transform: translateY(-50%);
  color: var(--c-primary-l);
  opacity: 0.06;
  z-index: 0;
}
@media (max-width: 760px) {
  .faq-section .brand-wm { right: -22%; width: 72vw; opacity: 0.05; }
}

/* =========================================================
   SERVICE TABS — "Karayolu çözümleri" horizontal text tabs
   v1 tabbed-info pattern ported into v4 cinematic language.
   Theme-aware reading surface (light default, dark via toggle).
   ========================================================= */
.svc-tabs {
  background: #FFFFFF;
  color: var(--c-ink);
  padding: clamp(80px, 12vh, 140px) 0;
  border-bottom: 1px solid #E2E8F0;
}
.svc-tabs__head {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  margin-bottom: clamp(36px, 5vw, 60px);
}
.svc-tabs__head .eyebrow { color: var(--c-primary-d); }
.svc-tabs__head h2 {
  margin-top: 14px;
  font-family: var(--ff);
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
  font-weight: 800; line-height: 1.02;
  letter-spacing: var(--tr-tight);
  color: var(--c-ink);
  text-wrap: balance;
}
.svc-tabs__head h2 .it { color: inherit; font-style: normal; font-weight: inherit; }
.svc-tabs__head .lede { color: #475569; margin-top: 20px; }

.svc-tabs__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* Nav — horizontal text tabs with sliding primary underline */
.svc-tabs__nav {
  display: flex;
  gap: clamp(10px, 2.6vw, 44px);
  border-bottom: 1px solid #E2E8F0;
  margin-bottom: clamp(40px, 5vw, 64px);
  overflow-x: auto;
  scrollbar-width: none;
}
.svc-tabs__nav::-webkit-scrollbar { display: none; }
.svc-tabs__tab {
  position: relative;
  padding: 18px 2px;
  font-family: var(--ff);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: var(--tr-snug);
  color: var(--c-muted);
  white-space: nowrap;
  transition: color var(--t) var(--ease);
}
.svc-tabs__tab:hover { color: var(--c-ink); }
.svc-tabs__tab.is-active { color: var(--c-ink); }
.svc-tabs__tab::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--c-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.svc-tabs__tab.is-active::after { transform: scaleX(1); }

/* Panes — image / text split */
.svc-tabs__pane {
  display: none;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}
.svc-tabs__pane.is-active {
  display: grid;
  animation: svcTabFade var(--t-slow) var(--ease);
}
@keyframes svcTabFade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.svc-tabs__media {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #E2E8F0;
}
.svc-tabs__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-tabs__content { padding-right: 2%; }
.svc-tabs__title {
  font-family: var(--ff);
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  font-weight: 800;
  letter-spacing: var(--tr-tight);
  line-height: 1.1;
  color: var(--c-ink);
  margin-bottom: 18px;
}
.svc-tabs__text {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.7;
  color: #475569;
  max-width: 50ch;
  margin-bottom: 32px;
}

/* Circle "+" button (ported from v1) */
.circle-btn { display: inline-flex; align-items: center; gap: 18px; color: inherit; }
.circle-btn__icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--c-primary); color: var(--c-white);
  transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.circle-btn:hover .circle-btn__icon {
  background: var(--c-primary-d);
  transform: scale(1.08) rotate(90deg);
}
.circle-btn__text {
  display: flex; flex-direction: column;
  font-weight: 700; letter-spacing: var(--tr-snug);
  color: var(--c-ink);
  line-height: 1.25;
}
.circle-btn__text small {
  font-weight: 500; font-size: 13px;
  color: var(--c-muted);
  text-transform: lowercase;
  letter-spacing: 0;
}

@media (max-width: 860px) {
  .svc-tabs__pane { grid-template-columns: 1fr; gap: 28px; }
  .svc-tabs__content { padding-right: 0; }
  .svc-tabs__nav { gap: 20px; }
}

/* Dark theme variant */
[data-theme="dark"] .svc-tabs {
  background: var(--c-ink-2);
  color: var(--c-white);
  border-bottom-color: var(--c-rule);
}
[data-theme="dark"] .svc-tabs__head .eyebrow { color: var(--c-primary-l); }
[data-theme="dark"] .svc-tabs__head h2 { color: var(--c-white); }
[data-theme="dark"] .svc-tabs__head .lede { color: rgba(255,255,255,0.7); }
[data-theme="dark"] .svc-tabs__nav { border-bottom-color: var(--c-rule); }
[data-theme="dark"] .svc-tabs__tab { color: var(--c-muted-2); }
[data-theme="dark"] .svc-tabs__tab:hover,
[data-theme="dark"] .svc-tabs__tab.is-active { color: var(--c-white); }
[data-theme="dark"] .svc-tabs__title { color: var(--c-white); }
[data-theme="dark"] .svc-tabs__text { color: rgba(255,255,255,0.72); }
[data-theme="dark"] .svc-tabs__media { background: var(--c-rule); }
[data-theme="dark"] .circle-btn__text { color: var(--c-white); }
[data-theme="dark"] .circle-btn__text small { color: var(--c-muted-2); }

/* svc-tabs hub sub-service chips */
.svc-tabs__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none; margin: 0 0 30px; padding: 0;
}
.svc-tabs__tags li {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--c-primary-d);
  background: var(--c-primary-tint);
  border: 1px solid rgba(41,152,191,0.20);
  padding: 6px 12px; border-radius: var(--r-pill);
}
[data-theme="dark"] .svc-tabs__tags li {
  color: var(--c-primary-l);
  background: rgba(41,152,191,0.10);
  border-color: rgba(41,152,191,0.28);
}

/* cta-band güven notu */
.cta-band__note {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 18px 0 4px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--c-primary-l);
}
.cta-band__note i { font-size: 18px; }

/* =========================================================
   NEDEN BİZ? — güven şeridi (6 ikon)
   ========================================================= */
.why-strip {
  background: var(--c-bg-light);
  color: var(--c-ink);
  padding: clamp(48px, 6vw, 80px) var(--pad-x);
  border-bottom: 1px solid #E2E8F0;
}
.why-strip__head { max-width: var(--container); margin: 0 auto clamp(28px,3.5vw,40px); }
.why-strip__badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--fs-eyebrow); letter-spacing: var(--tr-wide);
  text-transform: uppercase; font-weight: 700; color: var(--c-primary-d);
}
.why-strip__star {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--c-ink); color: var(--c-primary-l); font-size: 14px;
}
.why-strip__grid {
  max-width: var(--container); margin-inline: auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  list-style: none; padding: 0;
}
.why-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 14px; padding: 28px 14px;
  border: 1px solid #E2E8F0; border-radius: var(--r-md);
  background: var(--c-white);
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease);
}
.why-item:hover { transform: translateY(-4px); border-color: var(--c-primary); }
.why-item i {
  font-size: 30px; color: var(--c-primary);
}
.why-item span {
  font-size: 13.5px; font-weight: 600; line-height: 1.3; color: var(--c-ink);
  letter-spacing: var(--tr-snug);
}
@media (max-width: 900px) { .why-strip__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .why-strip__grid { grid-template-columns: repeat(2, 1fr); } }
[data-theme="dark"] .why-strip { background: var(--c-ink-2); color: var(--c-white); border-bottom-color: var(--c-rule); }
[data-theme="dark"] .why-strip__badge { color: var(--c-primary-l); }
[data-theme="dark"] .why-strip__star { background: var(--c-primary); color: var(--c-white); }
[data-theme="dark"] .why-item { background: var(--c-ink-3); border-color: var(--c-rule); }
[data-theme="dark"] .why-item span { color: var(--c-white); }
[data-theme="dark"] .why-item i { color: var(--c-primary-l); }

/* =========================================================
   THEME TOGGLE — dark/light switch button + dark theme override
   Default = light balanced; user can flip to dark via header button.
   ========================================================= */
.theme-toggle {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--c-white);
  background: transparent;
  cursor: pointer;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.theme-toggle:hover {
  background: var(--c-white); color: var(--c-ink); border-color: var(--c-white);
}
.theme-toggle i { font-size: 18px; line-height: 1; }
.theme-toggle [data-when="dark"] { display: none; }
[data-theme="dark"] .theme-toggle [data-when="dark"] { display: inline-block; }
[data-theme="dark"] .theme-toggle [data-when="light"] { display: none; }

/* Toggle button click feedback */
.theme-toggle:active { transform: scale(0.92); }
.theme-toggle i { transition: transform 400ms var(--ease); }
.theme-toggle:hover i { transform: rotate(-20deg); }

/* ===== Header in light theme + scrolled: light glass instead of dark ===== */
:root:not([data-theme="dark"]) .header.is-scrolled {
  background: rgba(248, 250, 252, 0.85);
  border-bottom-color: rgba(2,6,23,0.08);
}
:root:not([data-theme="dark"]) .header.is-scrolled .logo__img--light { display: none; }
:root:not([data-theme="dark"]) .header.is-scrolled .logo__img--dark  { display: block; }
:root:not([data-theme="dark"]) .header.is-scrolled .nav > ul > li > a {
  color: var(--c-ink-3);
}
:root:not([data-theme="dark"]) .header.is-scrolled .nav > ul > li > a:hover,
:root:not([data-theme="dark"]) .header.is-scrolled .nav > ul > li.has-submenu:hover > a {
  color: var(--c-primary-d);
}
:root:not([data-theme="dark"]) .header.is-scrolled .theme-toggle {
  border-color: rgba(2,6,23,0.18);
  color: var(--c-ink);
}
:root:not([data-theme="dark"]) .header.is-scrolled .theme-toggle:hover {
  background: var(--c-ink); color: var(--c-white); border-color: var(--c-ink);
}
/* Teklif Al + ayraç: açık tema + scroll'da koyu */
:root:not([data-theme="dark"]) .header.is-scrolled .cta-quote { color: var(--c-ink); }
:root:not([data-theme="dark"]) .header.is-scrolled .cta-quote:hover { color: var(--c-primary-d); }
:root:not([data-theme="dark"]) .header.is-scrolled .header__divider { background: rgba(2,6,23,0.14); }
/* Mobilde kompakt: alt başlık + ayraç gizle */
@media (max-width: 640px) {
  .cta-quote__text small { display: none; }
  .header__divider { display: none; }
  .cta-quote__icon { width: 22px; height: 22px; }
}
:root:not([data-theme="dark"]) .header.is-scrolled .burger {
  border-color: rgba(2,6,23,0.2);
}
:root:not([data-theme="dark"]) .header.is-scrolled .burger span,
:root:not([data-theme="dark"]) .header.is-scrolled .burger span::before,
:root:not([data-theme="dark"]) .header.is-scrolled .burger span::after {
  background: var(--c-ink);
}

/* Header transitions — smooth glass change on theme + scroll */
.header, .header .logo, .nav > ul > li > a {
  transition: background-color 320ms var(--ease-out),
              border-color 320ms var(--ease-out),
              color 320ms var(--ease-out),
              filter 320ms var(--ease-out),
              backdrop-filter 320ms var(--ease-out);
}

/* Smooth theme transitions for swappable surfaces */
body, .crumb, .lead-section, .subs, .sub-cine__text,
.values-section, .timeline-section, .steps-section, .step,
.info-section, .form-section, .legal-section, .legal__note,
.svc-tabs, .cine-statement, .footer {
  transition: background-color 320ms var(--ease-out), color 320ms var(--ease-out), border-color 320ms var(--ease-out);
}
.form__input, .form__textarea, .form__select {
  transition: border-color 320ms var(--ease-out), color 320ms var(--ease-out);
}

/* =========================================================
   DARK THEME OVERRIDE — re-darks reading surfaces
   ========================================================= */
[data-theme="dark"] body { background: var(--c-ink-2); color: var(--c-white); }

[data-theme="dark"] .crumb {
  background: var(--c-ink);
  border-bottom-color: var(--c-rule);
  color: rgba(255,255,255,0.6);
}
[data-theme="dark"] .crumb__list a { color: rgba(255,255,255,0.6); }
[data-theme="dark"] .crumb__list a:hover { color: var(--c-primary-l); }
[data-theme="dark"] .crumb__sep { color: rgba(255,255,255,0.3); }
[data-theme="dark"] .crumb__current { color: var(--c-white); }

[data-theme="dark"] .lead-section {
  background: var(--c-ink-2);
  color: var(--c-white);
  border-bottom-color: var(--c-rule);
}
[data-theme="dark"] .lead-section__text { color: rgba(255,255,255,0.92); }
[data-theme="dark"] .lead-section__text strong { color: var(--c-primary-l); }

[data-theme="dark"] .subs { background: var(--c-ink-2); color: var(--c-white); }
[data-theme="dark"] .subs__title { color: var(--c-white); }
[data-theme="dark"] .subs__lede { color: rgba(255,255,255,0.7); }
[data-theme="dark"] .sub-cine { border-top-color: var(--c-rule); }
[data-theme="dark"] .sub-cine__text { background: var(--c-ink-2); color: var(--c-white); }
[data-theme="dark"] .sub-cine__title { color: var(--c-white); }
[data-theme="dark"] .sub-cine__desc { color: rgba(255,255,255,0.78); }
[data-theme="dark"] .sub-cine__features li { color: rgba(255,255,255,0.78); }

[data-theme="dark"] .values-section {
  background: var(--c-ink-2);
  color: var(--c-white);
  border-bottom-color: var(--c-rule);
}
[data-theme="dark"] .values-head .eyebrow { color: var(--c-primary-l); }
[data-theme="dark"] .values-head h2 { color: var(--c-white); }
[data-theme="dark"] .values-head .lede { color: rgba(255,255,255,0.7); }
[data-theme="dark"] .values { border-top-color: var(--c-rule); }
[data-theme="dark"] .value { border-color: var(--c-rule); }
[data-theme="dark"] .value__num { color: var(--c-primary-l); }
[data-theme="dark"] .value__title { color: var(--c-white); }
[data-theme="dark"] .value__text { color: rgba(255,255,255,0.72); }

[data-theme="dark"] .timeline-section {
  background: var(--c-ink-2);
  color: var(--c-white);
  border-bottom-color: var(--c-rule);
}
[data-theme="dark"] .timeline-head .eyebrow { color: var(--c-primary-l); }
[data-theme="dark"] .timeline-head h2 { color: var(--c-white); }
[data-theme="dark"] .timeline-head .lede { color: rgba(255,255,255,0.7); }
[data-theme="dark"] .timeline { border-top-color: var(--c-rule); }
[data-theme="dark"] .timeline__row { border-bottom-color: var(--c-rule); }
[data-theme="dark"] .timeline__year { color: var(--c-primary-l); }
[data-theme="dark"] .timeline__title { color: var(--c-white); }
[data-theme="dark"] .timeline__text { color: rgba(255,255,255,0.72); }

[data-theme="dark"] .steps-section {
  background: var(--c-ink-2);
  color: var(--c-white);
  border-bottom-color: var(--c-rule);
}
[data-theme="dark"] .steps-head .eyebrow { color: var(--c-primary-l); }
[data-theme="dark"] .steps-head h2 { color: var(--c-white); }
[data-theme="dark"] .steps-head .lede { color: rgba(255,255,255,0.7); }
[data-theme="dark"] .steps { background: var(--c-rule); }
[data-theme="dark"] .step { background: var(--c-ink-2); }
[data-theme="dark"] .step__num { color: var(--c-primary-l); }
[data-theme="dark"] .step__title { color: var(--c-white); }
[data-theme="dark"] .step__text { color: rgba(255,255,255,0.72); }

[data-theme="dark"] .info-section {
  background: var(--c-ink-2);
  color: var(--c-white);
  border-bottom-color: var(--c-rule);
}
[data-theme="dark"] .info-cols .eyebrow { color: var(--c-primary-l); }
[data-theme="dark"] .info-cols .h2 { color: var(--c-white); }
[data-theme="dark"] .info-cols .lede { color: rgba(255,255,255,0.7); }
[data-theme="dark"] .info-block { border-top-color: var(--c-rule); }
[data-theme="dark"] .info-block h4 { color: var(--c-primary-l); }
[data-theme="dark"] .info-block p,
[data-theme="dark"] .info-block a { color: rgba(255,255,255,0.85); }
[data-theme="dark"] .info-block a:hover { color: var(--c-primary-l); }

[data-theme="dark"] .form-section {
  background: var(--c-ink-2);
  color: var(--c-white);
  border-bottom-color: var(--c-rule);
}
[data-theme="dark"] .form-block__head .eyebrow { color: var(--c-primary-l); }
[data-theme="dark"] .form-block__head .h2 { color: var(--c-white); }
[data-theme="dark"] .form-block__head .lede { color: rgba(255,255,255,0.7); }
[data-theme="dark"] .form__label { color: rgba(255,255,255,0.6); }
[data-theme="dark"] .form__label .req { color: var(--c-primary-l); }
[data-theme="dark"] .form__input,
[data-theme="dark"] .form__textarea,
[data-theme="dark"] .form__select {
  color: var(--c-white);
  border-bottom-color: rgba(255,255,255,0.18);
}
[data-theme="dark"] .form__input:focus,
[data-theme="dark"] .form__textarea:focus,
[data-theme="dark"] .form__select:focus { border-bottom-color: var(--c-primary-l); }
[data-theme="dark"] .form__input::placeholder,
[data-theme="dark"] .form__textarea::placeholder { color: rgba(255,255,255,0.3); }
[data-theme="dark"] .form__select option { background: var(--c-ink-2); color: var(--c-white); }
[data-theme="dark"] .form__divider { color: var(--c-primary-l); }
[data-theme="dark"] .form__divider::before,
[data-theme="dark"] .form__divider::after { background: var(--c-rule); }
[data-theme="dark"] .form__check { color: rgba(255,255,255,0.72); }
[data-theme="dark"] .form__check a { color: var(--c-primary-l); }

[data-theme="dark"] .legal-section {
  background: var(--c-ink-2);
  color: var(--c-white);
  border-bottom-color: var(--c-rule);
}
[data-theme="dark"] .legal { color: var(--c-white); }
[data-theme="dark"] .legal h2 { color: var(--c-white); border-top-color: var(--c-rule); }
[data-theme="dark"] .legal h3 { color: var(--c-white); }
[data-theme="dark"] .legal p { color: rgba(255,255,255,0.78); }
[data-theme="dark"] .legal ul li,
[data-theme="dark"] .legal ol li {
  color: rgba(255,255,255,0.78);
  border-bottom-color: var(--c-rule);
}
[data-theme="dark"] .legal ol li::before { color: var(--c-primary-l); }
[data-theme="dark"] .legal a { color: var(--c-primary-l); }
[data-theme="dark"] .legal a:hover { color: var(--c-white); }
[data-theme="dark"] .legal strong { color: var(--c-white); }
[data-theme="dark"] .legal__meta { color: rgba(255,255,255,0.5); }
[data-theme="dark"] .legal__note {
  background: var(--c-ink);
  color: rgba(255,255,255,0.7);
}

/* Cine-statement (had light bg in light theme; flips back to dark) */
[data-theme="dark"] .cine-statement {
  background: var(--c-ink-2);
  color: var(--c-white);
}
[data-theme="dark"] .cine-statement::before {
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
}
[data-theme="dark"] .cine-statement__text { color: var(--c-white); }
[data-theme="dark"] .cine-statement__text .it { color: inherit; }
[data-theme="dark"] .cine-statement__sub { color: rgba(255,255,255,0.7); }

/* Word reveal — dark variant */
[data-theme="dark"] .word { color: rgba(255,255,255,0.18); }
[data-theme="dark"] .word.is-lit { color: var(--c-white); }
[data-theme="dark"] .word.is-lit.is-strong { color: var(--c-primary-l); }

/* Stats section — dark theme */
[data-theme="dark"] .stats-section {
  background: var(--c-ink-2);
  color: var(--c-white);
  border-bottom-color: var(--c-rule);
}
[data-theme="dark"] .stats-head .eyebrow { color: var(--c-primary-l); }
[data-theme="dark"] .stats-head h2 { color: var(--c-white); }
[data-theme="dark"] .stats-head .lede { color: rgba(255,255,255,0.72); }
[data-theme="dark"] .stats-grid { background: var(--c-rule); border-top-color: var(--c-rule); }
[data-theme="dark"] .stat-card { background: var(--c-ink-2); }
[data-theme="dark"] .stat-card__num { color: var(--c-white); }
[data-theme="dark"] .stat-card__num sup { color: var(--c-primary-l); }
[data-theme="dark"] .stat-card__label { color: rgba(255,255,255,0.6); }

/* Blog section — dark theme */
[data-theme="dark"] .blog-section {
  background: var(--c-ink-2);
  color: var(--c-white);
  border-bottom-color: var(--c-rule);
}
[data-theme="dark"] .blog-head .eyebrow { color: var(--c-primary-l); }
[data-theme="dark"] .blog-head__title h2 { color: var(--c-white); }
[data-theme="dark"] .blog-card__media { background: var(--c-rule); }
[data-theme="dark"] .blog-card__cat { color: var(--c-primary-l); }
[data-theme="dark"] .blog-card__title { color: var(--c-white); }
[data-theme="dark"] .blog-card__excerpt { color: rgba(255,255,255,0.72); }
[data-theme="dark"] .blog-card__more { color: var(--c-primary-l); }
[data-theme="dark"] .blog-card:hover .blog-card__more { color: var(--c-white); }

/* =========================================================
   Scroll-driven word reveal (Apple/Linear-style)
   Applied to .lead-section__text and .cine-statement__text via JS
   ========================================================= */
.word {
  color: rgba(2, 6, 23, 0.16);
  transition: color 220ms var(--ease-out);
  will-change: color;
}
.word.is-strong { font-weight: 700; }
.word.is-lit { color: var(--c-ink); }
.word.is-lit.is-strong { color: var(--c-primary); }

/* Reduced motion — skip the dim/lit transition, show full color always */
@media (prefers-reduced-motion: reduce) {
  .word { color: var(--c-ink); transition: none; transition-delay: 0 !important; }
  .word.is-strong { color: var(--c-primary); }
}

/* Focus visibility */
:focus-visible {
  outline: 2px solid var(--c-primary-l);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   HIZLI HİZMET YÖNLENDİRME BANDI (hero altı, 6 kutu)
   ========================================================= */
.svc-quicknav {
  max-width: var(--container);
  margin: clamp(28px, 4vw, 44px) auto 0;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.svc-quicknav__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 20px 12px; text-align: center;
  border: 1px solid #E2E8F0; border-radius: var(--r-md);
  background: var(--c-white); color: var(--c-ink);
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.svc-quicknav__item:hover {
  transform: translateY(-4px);
  border-color: var(--c-primary);
  box-shadow: 0 10px 28px rgba(41,152,191,0.12);
}
.svc-quicknav__item i { font-size: 26px; color: var(--c-primary); }
.svc-quicknav__item span { font-size: 13.5px; font-weight: 600; letter-spacing: var(--tr-snug); }
@media (max-width: 900px) { .svc-quicknav { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .svc-quicknav { grid-template-columns: repeat(2, 1fr); } }
[data-theme="dark"] .svc-quicknav__item { background: var(--c-ink-3); border-color: var(--c-rule); color: var(--c-white); }
[data-theme="dark"] .svc-quicknav__item i { color: var(--c-primary-l); }

/* =========================================================
   svc-tabs — alt hizmet kartları (her sekmede 3-4 mini kart)
   ========================================================= */
.svc-sub {
  list-style: none; margin: 0 0 32px; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.svc-sub__item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: #FFFFFF;
  border: 1px solid #E6EBF2;
  border-radius: 14px;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
}
.svc-sub__item:hover {
  transform: translateY(-3px);
  border-color: rgba(41,152,191,0.45);
  box-shadow: 0 14px 30px -16px rgba(15,26,43,0.22);
}
.svc-sub__ic {
  flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--c-primary-tint);
  color: var(--c-primary-d);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.svc-sub__ic i { font-size: 22px; line-height: 1; }
.svc-sub__item:hover .svc-sub__ic {
  background: var(--c-primary); color: #FFFFFF;
  transform: scale(1.06) rotate(-3deg);
}
.svc-sub__tx { min-width: 0; }
.svc-sub__tx h4 {
  font-family: var(--ff); font-size: 0.97rem; font-weight: 700;
  letter-spacing: var(--tr-snug); color: var(--c-ink); margin: 1px 0 4px;
  transition: color 0.3s var(--ease);
}
.svc-sub__item:hover .svc-sub__tx h4 { color: var(--c-primary-d); }
.svc-sub__tx p { font-size: 12.5px; line-height: 1.5; color: #64748B; margin: 0; }
@media (max-width: 560px) { .svc-sub { grid-template-columns: 1fr; } }
[data-theme="dark"] .svc-sub__item { background: var(--c-ink-3); border-color: var(--c-rule); }
[data-theme="dark"] .svc-sub__item:hover { border-color: rgba(41,152,191,0.5); }
[data-theme="dark"] .svc-sub__ic { background: rgba(41,152,191,0.14); color: var(--c-primary-l); }
[data-theme="dark"] .svc-sub__tx h4 { color: var(--c-white); }
[data-theme="dark"] .svc-sub__item:hover .svc-sub__tx h4 { color: var(--c-primary-l); }
[data-theme="dark"] .svc-sub__tx p { color: rgba(255,255,255,0.7); }

/* =========================================================
   SEKTÖR PAKETLERİ — 6'lı grid varyantı
   ========================================================= */
.cine-grid__tiles--six { grid-template-columns: repeat(3, 1fr); }
.cine-grid__tiles--six .cine-tile { min-height: 44vh; }
@media (max-width: 1024px) { .cine-grid__tiles--six { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .cine-grid__tiles--six { grid-template-columns: 1fr; }
  .cine-grid__tiles--six .cine-tile { min-height: 52vh; }
}

/* =========================================================
   SÜREÇ NASIL İLERLER? — 4 adımlık akış
   ========================================================= */
.process {
  background: var(--c-white);
  padding: clamp(64px, 8vw, 110px) var(--pad-x);
  border-bottom: 1px solid #E2E8F0;
}
.process__head { max-width: var(--container); margin: 0 auto clamp(40px, 5vw, 64px); }
.process__head .eyebrow { color: var(--c-primary-d); }
.process__head h2 {
  margin-top: 14px;
  font-family: var(--ff); font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.04; letter-spacing: var(--tr-tight); color: var(--c-ink);
}
.process__head .lede {
  margin-top: 16px; font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65; color: #475569; max-width: 56ch;
}
.process__steps {
  max-width: var(--container); margin-inline: auto; padding: 0;
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  counter-reset: step;
}
.process__step {
  position: relative;
  padding: 32px 24px 28px;
  border: 1px solid #E2E8F0; border-radius: var(--r-md);
  background: var(--c-bg-light, #F8FAFC);
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease);
}
.process__step:hover { transform: translateY(-4px); border-color: var(--c-primary); }
.process__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--c-primary); color: var(--c-white);
  font-family: var(--ff); font-size: 1.15rem; font-weight: 800; letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.process__title {
  font-family: var(--ff); font-size: 1.2rem; font-weight: 700;
  letter-spacing: var(--tr-snug); color: var(--c-ink); margin: 0 0 10px;
}
.process__text { font-size: 14px; line-height: 1.6; color: #475569; margin: 0; }
@media (max-width: 900px) { .process__steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process__steps { grid-template-columns: 1fr; } }
[data-theme="dark"] .process { background: var(--c-ink-2); border-bottom-color: var(--c-rule); }
[data-theme="dark"] .process__head .eyebrow { color: var(--c-primary-l); }
[data-theme="dark"] .process__head h2 { color: var(--c-white); }
[data-theme="dark"] .process__head .lede { color: rgba(255,255,255,0.7); }
[data-theme="dark"] .process__step { background: var(--c-ink-3); border-color: var(--c-rule); }
[data-theme="dark"] .process__title { color: var(--c-white); }
[data-theme="dark"] .process__text { color: rgba(255,255,255,0.7); }

/* Blog head lede + final CTA çift buton */
.blog-head__title .lede {
  margin-top: 12px; font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.6; color: #475569; max-width: 52ch;
}
[data-theme="dark"] .blog-head__title .lede { color: rgba(255,255,255,0.7); }
.cine-statement__cta { flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =========================================================
   SCROLL REVEAL — Framer tarzı kademeli giriş (.reveal yalnızca JS ekler)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =========================================================
   BLOG POST — makale gövdesi (okunaklı tek kolon)
   ========================================================= */
.post {
  max-width: 770px; margin-inline: auto;
  padding: clamp(44px, 6vw, 80px) var(--pad-x);
}
.post__lead {
  font-size: clamp(1.1rem, 1.5vw, 1.28rem); line-height: 1.6;
  color: var(--c-ink); font-weight: 500; margin: 0 0 30px;
}
.post__body > h2 {
  font-family: var(--ff); font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 800; letter-spacing: var(--tr-tight); color: var(--c-ink);
  line-height: 1.15; margin: 40px 0 14px;
}
.post__body > h3 { font-size: 1.2rem; font-weight: 700; color: var(--c-ink); margin: 28px 0 10px; }
.post__body > p { font-size: 1.02rem; line-height: 1.8; color: #475569; margin: 0 0 18px; }
.post__body strong { color: var(--c-ink); font-weight: 700; }
.post__body ul, .post__body ol { margin: 0 0 20px; padding-left: 22px; color: #475569; }
.post__body li { font-size: 1.02rem; line-height: 1.7; margin-bottom: 8px; }
.post__body li strong { color: var(--c-ink); }
.post__body a { color: var(--c-primary-d); text-decoration: underline; text-underline-offset: 2px; }
.post__quote {
  margin: 28px 0; padding: 16px 24px;
  border-left: 3px solid var(--c-primary); background: #F8FAFC;
  border-radius: 0 12px 12px 0;
  font-size: 1.06rem; line-height: 1.6; color: var(--c-ink); font-style: italic;
}
.post__cta {
  margin: 36px 0 0; padding: 24px 26px;
  background: #F2F5FB; border: 1px solid #E3E8EF; border-radius: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px 24px; flex-wrap: wrap;
}
.post__cta p { margin: 0; font-weight: 600; color: var(--c-ink); }
.post__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 34px 0 0; padding: 26px 0 0; border-top: 1px solid #E6EBF2; }
.post__tags span {
  font-size: 12px; font-weight: 600; color: var(--c-primary-d);
  background: var(--c-primary-tint); border: 1px solid rgba(41,152,191,0.20);
  padding: 6px 12px; border-radius: var(--r-pill);
}
.post__back {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 26px;
  font-weight: 700; font-size: 13px; letter-spacing: var(--tr-snug); color: var(--c-primary-d);
  transition: gap var(--t) var(--ease);
}
.post__back:hover { gap: 12px; }
[data-theme="dark"] .post__lead, [data-theme="dark"] .post__body > h2,
[data-theme="dark"] .post__body > h3, [data-theme="dark"] .post__body strong { color: var(--c-white); }
[data-theme="dark"] .post__body > p, [data-theme="dark"] .post__body li { color: rgba(255,255,255,0.72); }
[data-theme="dark"] .post__quote { background: var(--c-ink-3); color: var(--c-white); }
[data-theme="dark"] .post__cta { background: var(--c-ink-3); border-color: var(--c-rule); }
[data-theme="dark"] .post__cta p { color: var(--c-white); }

/* =========================================================
   MARKA BANDI — tam-genişlik marka vaadi görseli
   ========================================================= */
.brand-band {
  padding: clamp(36px, 5vw, 72px) var(--pad-x);
  background: var(--c-bg-light, #F8FAFC);
}
.brand-band__inner {
  max-width: var(--container);
  margin-inline: auto;
  border-radius: clamp(14px, 1.6vw, 22px);
  overflow: hidden;
  box-shadow: 0 30px 64px -30px rgba(15, 26, 43, 0.42);
  border: 1px solid #E6EBF2;
}
.brand-band__inner img { display: block; width: 100%; height: auto; }
[data-theme="dark"] .brand-band { background: var(--c-ink-2); }
[data-theme="dark"] .brand-band__inner { border-color: var(--c-rule); }
