/* ==========================================================================
   GreenCart — Landing
   Premium minimal. Manrope. Tek-aksanlı pine + restrained warm neutrals.
   2026-05-31: Amber accent → brand alias (palette daraltıldı), paper-2 alt
   bg birleşik, dekoratif animasyonlar nötrlendi. "Çok renkli amatör" hissi
   yerine "tek-marka premium" hat.
   ========================================================================== */

:root {
  /* --- Marka (pine green) — tek-aksanlı palette --- */
  --brand: #00674f;
  --brand-strong: #00543f;
  --brand-deep: #053a2c;
  --brand-soft: #d3e8de;
  --brand-tint: #a9d3c1;
  /* Geçiş için: bright/400 brand'in kendisine alias */
  --brand-bright: #00543f;
  --brand-400: #34a884;

  /* --- Koyu çam yüzeyleri --- */
  --forest: #062a20;
  --forest-900: #04201a;

  /* --- Aksan = brand alias (amber kaldırıldı, premium tek-renk hat) --- */
  --accent: var(--brand);
  --accent-strong: var(--brand-strong);
  --accent-light: var(--brand-tint);
  --accent-soft: var(--brand-soft);

  /* --- Premium nötrler (off-white, neredeyse beyaz) --- */
  --paper: #fafaf6;            /* sayfa zemini — premium off-white */
  --paper-2: #fafaf6;          /* alt blok, paper ile birleşik */
  --surface: #ffffff;          /* kart */
  --ink: #1c241e;              /* ana metin */
  --ink-soft: #4f5b52;         /* ikincil metin */
  --ink-muted: #87908a;        /* üçüncül metin */
  --line: #e7e7e2;             /* kenarlık — restrained */
  --line-soft: #efefea;
  --on-dark: #f0f4ec;          /* koyu zemin metni */
  --on-dark-soft: #a4bcad;     /* koyu zemin ikincil */

  /* --- Tipografi --- */
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* --- Yarıçap --- */
  --r-sm: 9px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* --- Gölge (premium quiet: tek-tonlu, accent-tinted YOK) --- */
  --sh-sm: 0 1px 2px rgba(28, 36, 24, 0.04), 0 8px 20px -14px rgba(28, 36, 24, 0.14);
  --sh-md: 0 14px 36px -22px rgba(28, 36, 24, 0.22);
  --sh-lg: 0 28px 60px -34px rgba(20, 28, 16, 0.30);
  --sh-brand: 0 14px 32px -16px rgba(0, 103, 79, 0.28);
  --sh-accent: var(--sh-brand);

  /* --- Düzen --- */
  --container: 1140px;
  --gutter: clamp(18px, 4vw, 40px);
  --section-y: clamp(44px, 5vw, 76px);
  --header-h: 72px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --spring: cubic-bezier(0.34, 1.4, 0.5, 1);
}

/* ============ RESET ============ */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--brand); color: #fff; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex-shrink: 0;
  fill: currentColor;
  vertical-align: -0.14em;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 9999;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-sm);
  font-weight: 700;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); position: relative; }

/* ============ TİPOGRAFİ YARDIMCILARI ============ */
/* Premium eyebrow: çıplak uppercase label, hiçbir dekorasyon yok. Tek-renk
   restrained — corporate hat. ink-soft koyusu WCAG AA contrast için. */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow-light { color: var(--on-dark-soft); }

.section-head {
  max-width: 620px;
  margin: 0 auto clamp(24px, 2.6vw, 36px);
  text-align: center;
}
.section-head-left { margin-inline: 0; text-align: left; }
.section-head .eyebrow,
.section-head-left .eyebrow { margin-bottom: 2px; }

.section-title {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.027em;
  margin-top: 8px;
  color: var(--ink);
}
/* Premium: em vurgu coloring kaldırıldı — başlık tek sesli (corporate). */
.section-title em { font-style: normal; color: inherit; }
.section-lead {
  margin-top: 8px;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.section-head .section-lead { margin-inline: auto; max-width: 48ch; }
.section-head-left .section-lead { margin-inline: 0; }
.section-lead a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.section-lead-light { color: var(--on-dark-soft); }

/* ============ BUTONLAR ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 800;
  font-size: 0.96rem;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  transition: transform 0.2s var(--spring), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease);
  white-space: nowrap;
}
.btn .ico { font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
/* Premium flat button: hover'da çok subtle shadow, baz state'te yok. */
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover { background: var(--brand-strong); }
/* btn-accent koyu why section'ı üzerinde yaşar → beyaz inverse (kontrast) */
.btn-accent {
  background: #ffffff;
  color: var(--brand);
  margin-top: 24px;
}
.btn-accent:hover { background: var(--paper); }

/* Store butonları */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--r-md);
  transition: transform 0.2s var(--spring), box-shadow 0.2s var(--ease);
  box-shadow: var(--sh-sm);
}
.store-btn:hover { box-shadow: var(--sh-md); }
.store-btn svg { flex-shrink: 0; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.store-btn small { font-size: 0.64rem; opacity: 0.72; font-weight: 600; letter-spacing: 0.04em; }
.store-btn strong { font-size: 1rem; font-weight: 700; }

/* ============ HEADER — marka yeşili ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  background: var(--brand-strong);
  box-shadow: 0 6px 18px -14px rgba(0, 0, 0, 0.45);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
/* Logo text-only: "manav" + "da" (#F4A261). Manrope ExtraBold (800).
   Hem header (pine bg) hem footer (forest bg) için beyaz "manav" + peach "da". */
.brand { display: inline-flex; align-items: center; }
.brand-name {
  font-family: var(--font);
  font-size: clamp(1.7rem, 2.1vw, 1.95rem);
  font-weight: 800;          /* Manrope ExtraBold */
  letter-spacing: -0.028em;
  color: #ffffff;
  line-height: 1;
  transition: opacity 0.18s var(--ease);
}
.brand-name-accent { color: #f4a261; }
.brand:hover .brand-name { opacity: 0.92; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  font-weight: 600;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s var(--ease);
}
.site-nav a:not(.nav-cta) { position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 2px;
  background: var(--accent-light);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}
.site-nav a:not(.nav-cta):hover { color: #fff; }
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
/* Nav CTA — pine header üzerinde beyaz inverse pill (kontrast korumalı) */
.nav-cta {
  background: #ffffff !important;
  color: var(--brand) !important;
  box-shadow: 0 8px 22px -12px rgba(0, 0, 0, 0.4);
}
.nav-cta:hover { background: var(--paper) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  padding-block: clamp(28px, 3.4vw, 52px) clamp(32px, 4vw, 60px);
  overflow: hidden;
  background:
    radial-gradient(55% 45% at 8% 92%, rgba(0, 103, 79, 0.08), transparent 70%),
    var(--paper);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.032em;
  margin-top: 10px;
  color: var(--ink);
}
.title-accent { display: block; }
.title-accent em { font-style: normal; color: inherit; }
.hero-lead {
  margin-top: 12px;
  font-size: clamp(0.96rem, 1.2vw, 1.06rem);
  color: var(--ink-soft);
  max-width: 32em;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-actions-center { justify-content: center; }
.hero-note {
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}
.soon-pill {
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.soon-pill-light { background: var(--accent); color: #fff; }

.hero-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-feats li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.hero-feats .ico {
  font-size: 0.95rem;
  color: var(--brand);
  background: var(--brand-soft);
  width: 1.9em; height: 1.9em;
  padding: 0.42em;
  border-radius: 7px;
}

/* ---- Hero sahne: renk paneli + foto + telefon ---- */
.hero-stage {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
}
.hero-stage::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 7%; right: -3%;
  width: 72%; height: 80%;
  background: linear-gradient(160deg, var(--brand-bright), var(--brand));
  border-radius: var(--r-xl);
  rotate: -6deg;
}
.hero-photo {
  position: absolute;
  z-index: 1;
  top: 0; right: 0;
  width: 76%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--brand-soft);
}
.phone-hero {
  position: absolute;
  left: 0; bottom: 0;
  width: 50%;
  z-index: 3;
  animation: gc-float 6s ease-in-out infinite;
}

/* ============ TELEFON BİLEŞENİ ============ */
.phone { display: block; }
.phone-body {
  position: relative;
  width: 100%;
  background: linear-gradient(155deg, #313d35, #161d18 62%);
  border-radius: 15.5% / 7.4%;
  padding: 3.4%;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.06), var(--sh-lg);
}
.phone-island {
  position: absolute;
  top: 5.4%; left: 50%;
  transform: translateX(-50%);
  width: 30%; height: 3.3%;
  background: #0a0d0b;
  border-radius: var(--r-pill);
  z-index: 6;
}
.phone-screen {
  position: relative;
  border-radius: 12.4% / 6.1%;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 295 / 620;
  container-type: inline-size;
}

/* ---- Ortak app çerçevesi ---- */
.app {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  font-size: 4.15cqw;
  background: var(--surface);
  color: var(--ink);
}
.app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.7em 2em 0.4em;
  font-size: 0.92em;
  font-weight: 800;
}
.app-sig { display: inline-flex; align-items: flex-end; gap: 0.18em; }
.app-sig i, .app-sig b {
  display: block; width: 0.32em; background: currentColor; border-radius: 1px;
}
.app-sig i:nth-child(1) { height: 0.4em; }
.app-sig i:nth-child(2) { height: 0.6em; }
.app-sig i:nth-child(3) { height: 0.8em; }
.app-sig b { width: 1.5em; height: 0.78em; border-radius: 2px; margin-left: 0.2em; }

/* ---- App: katalog ---- */
.app-loc {
  display: flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.7em 1.7em 0.9em;
}
.app-loc-ic {
  display: grid; place-items: center;
  width: 2.5em; height: 2.5em;
  background: var(--brand);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: 1.05em;
}
.app-loc-txt { display: flex; flex-direction: column; line-height: 1.25; flex: 1; }
.app-loc-txt small { font-size: 0.78em; color: var(--ink-muted); }
.app-loc-txt strong { font-size: 1.04em; font-weight: 800; }
.app-loc-ava {
  display: grid; place-items: center;
  width: 2.6em; height: 2.6em;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.86em;
  font-weight: 800;
}
.app-search {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin: 0 1.7em;
  padding: 0.95em 1.1em;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--ink-muted);
  font-size: 0.96em;
  font-weight: 500;
}
.app-search .ico { font-size: 1.2em; color: var(--brand); }
.app-chips {
  display: flex;
  gap: 0.5em;
  padding: 1em 1.7em 0.4em;
  overflow: hidden;
}
.chip {
  flex-shrink: 0;
  padding: 0.5em 1em;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.86em;
  font-weight: 700;
  color: var(--ink-soft);
}
.chip-on { background: var(--brand); border-color: var(--brand); color: #fff; }
.app-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.9em 1.7em 0.7em;
}
.app-row-t { font-size: 1.06em; font-weight: 800; }
.app-row-a { font-size: 0.84em; font-weight: 700; color: var(--accent-strong); }
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85em;
  padding: 0 1.7em 6em;
}
.app-prod {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.55em;
}
.app-prod-img {
  position: relative;
  border-radius: 0.7em;
  overflow: hidden;
  background: var(--brand-soft);
}
.app-prod-img img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.app-prod-fav {
  position: absolute;
  top: 0.4em; right: 0.4em;
  display: grid; place-items: center;
  width: 1.85em; height: 1.85em;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent);
  border-radius: 50%;
  font-size: 1em;
}
.app-prod strong { display: block; font-size: 0.98em; font-weight: 800; margin-top: 0.5em; }
.app-prod small { display: block; font-size: 0.78em; color: var(--ink-muted); margin-top: 0.1em; }
.app-prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5em;
}
.app-prod-price { font-size: 1.04em; font-weight: 800; color: var(--brand); }
.app-prod-price sup { font-size: 0.62em; font-weight: 700; }
.app-prod-add {
  display: grid; place-items: center;
  width: 2em; height: 2em;
  background: var(--brand);
  color: #fff;
  border-radius: 0.6em;
  font-size: 1em;
}
.app-tabbar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: space-around;
  padding: 0.85em 1.2em 1.4em;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line-soft);
}
.tab {
  position: relative;
  display: grid; place-items: center;
  width: 2.3em; height: 2.3em;
  color: var(--ink-muted);
  font-size: 1.35em;
}
.tab-on { color: var(--brand); }
.tab-dot {
  position: absolute;
  top: 0.1em; right: 0.25em;
  width: 0.5em; height: 0.5em;
  background: var(--accent);
  border-radius: 50%;
  border: 1.5px solid var(--surface);
}

/* ---- App: ürün detayı ---- */
.app-detail { background: var(--surface); }
.dt-hero {
  position: relative;
  height: 46%;
  background: var(--brand-soft);
}
.dt-hero img { width: 100%; height: 100%; object-fit: cover; }
.dt-nav {
  position: absolute;
  top: 4.4em;
  display: grid; place-items: center;
  width: 2.7em; height: 2.7em;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  font-size: 1.05em;
  box-shadow: var(--sh-sm);
}
.dt-back { left: 1.4em; color: var(--ink); }
.dt-back .ico { transform: scaleX(-1); }
.dt-fav { right: 1.4em; color: var(--accent); }
.dt-badge {
  position: absolute;
  left: 1.4em; bottom: 1.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.5em 0.9em;
  background: var(--brand);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 0.82em;
  font-weight: 800;
}
.dt-body { flex: 1; padding: 1.4em 1.7em 0; }
.dt-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8em;
}
.dt-name strong { display: block; font-size: 1.4em; font-weight: 800; }
.dt-name small { display: block; font-size: 0.84em; color: var(--ink-muted); margin-top: 0.15em; }
.dt-price { font-size: 1.4em; font-weight: 800; color: var(--brand); white-space: nowrap; }
.dt-price sup { font-size: 0.6em; }
.dt-price em { font-size: 0.5em; font-style: normal; color: var(--ink-muted); font-weight: 600; }
.dt-origin {
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-top: 1.1em;
  padding: 0.8em 0.95em;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.dt-origin-ic {
  display: grid; place-items: center;
  width: 2.4em; height: 2.4em;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-size: 1.05em;
}
.dt-origin-txt { flex: 1; display: flex; flex-direction: column; line-height: 1.3; }
.dt-origin-txt small { font-size: 0.76em; color: var(--ink-muted); }
.dt-origin-txt strong { font-size: 0.96em; font-weight: 800; }
.dt-desc { margin-top: 0.9em; font-size: 0.9em; color: var(--ink-soft); line-height: 1.55; }
.dt-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.1em;
  font-size: 0.96em;
  font-weight: 700;
}
.dt-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
  padding: 0.4em 0.5em;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}
.dt-stepper i {
  display: grid; place-items: center;
  width: 1.9em; height: 1.9em;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  color: var(--brand);
}
.dt-stepper b { font-size: 0.94em; min-width: 3em; text-align: center; }
.dt-cta {
  display: flex;
  align-items: center;
  gap: 0.8em;
  margin-top: auto;
  padding: 1em 1.7em 1.6em;
}
.dt-cta-price { font-size: 1.3em; font-weight: 800; }
.dt-cta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 1em;
  background: var(--brand);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 1em;
  font-weight: 800;
}
.dt-cta-btn .ico { font-size: 1.15em; }

/* ---- App: sipariş takibi ---- */
.app-track { background: var(--surface); }
.app-bar-light { color: var(--ink); }
.tr-head {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  padding: 1em 1.7em 0.9em;
}
.tr-eyebrow {
  font-size: 0.78em;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
}
.tr-head strong { font-size: 1.32em; font-weight: 800; }
.tr-eta {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.88em;
  font-weight: 700;
  color: var(--brand);
}
.tr-eta .ico { font-size: 1.1em; }
.tr-map {
  margin: 0 1.7em;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
.tr-map svg { width: 100%; height: auto; display: block; }
.tr-courier-dot { animation: gc-track 4.5s var(--ease) infinite; }
.tr-steps {
  padding: 1.2em 1.7em 0.6em;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}
.tr-steps li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85em;
  padding: 0.42em 0;
  font-size: 0.92em;
  font-weight: 700;
  color: var(--ink-muted);
}
.tr-steps li span {
  display: grid; place-items: center;
  width: 1.5em; height: 1.5em;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line);
  flex-shrink: 0;
}
.tr-steps li:not(:last-child) span::after {
  content: '';
  position: absolute;
  left: 0.72em; top: 1.7em;
  width: 2px; height: 0.95em;
  background: var(--line);
}
.tr-steps li.done { color: var(--ink); }
.tr-steps li.done span { background: var(--brand); border-color: var(--brand); }
.tr-steps li.done span::after { background: var(--brand); }
.tr-steps li.done span::before {
  content: '';
  width: 0.6em; height: 0.32em;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(0.04em, -0.06em);
}
/* Active indicator: peach (#f4a261) — brand-name-accent ile aynı,
   "done" pine'dan ayrılır, tutarlı sekonder accent. */
.tr-steps li.now { color: var(--ink); }
.tr-steps li.now span {
  background: #f4a261;
  border-color: #f4a261;
  animation: gc-ping 2s var(--ease) infinite;
}
.tr-courier {
  display: flex;
  align-items: center;
  gap: 0.75em;
  margin: 0.5em 1.7em 1.5em;
  padding: 0.85em;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.tr-ava {
  display: grid; place-items: center;
  width: 2.8em; height: 2.8em;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-size: 0.9em;
  font-weight: 800;
}
.tr-courier-txt { flex: 1; display: flex; flex-direction: column; line-height: 1.3; }
.tr-courier-txt strong { font-size: 1em; font-weight: 800; }
.tr-courier-txt small { font-size: 0.8em; color: var(--ink-muted); }
.tr-call {
  display: grid; place-items: center;
  width: 2.5em; height: 2.5em;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-size: 1em;
}

/* ============ HOW IT WORKS ============ */
.how { background: var(--surface); }
.step-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(20px, 2.2vw, 28px);
  transition: border-color 0.2s var(--ease);
}
.step:hover { border-color: var(--brand-tint); }
.step-no {
  position: absolute;
  top: clamp(20px, 2.4vw, 30px);
  right: clamp(22px, 2.6vw, 32px);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-tint);
}
.step-ic {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.step h3 {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.step p { margin-top: 6px; color: var(--ink-soft); font-size: 0.92rem; }
/* orta adım — canlı yeşil kart */
.step:nth-child(2) {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.step:nth-child(2) h3 { color: #fff; }
.step:nth-child(2) p { color: rgba(240, 244, 236, 0.82); }
.step:nth-child(2) .step-no { color: rgba(255, 255, 255, 0.32); }
/* Orta step pine bg → icon beyaz fill ile kontrast (önceki amber rolü) */
.step:nth-child(2) .step-ic { background: #ffffff; color: var(--brand); }

/* ============ APP SHOWCASE ============ */
.showcase {
  background: var(--forest);  /* flat dark — premium (radial blob kaldırıldı) */
  color: var(--on-dark);
  overflow: hidden;
}
.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: clamp(24px, 3.4vw, 52px);
  align-items: center;
}
.showcase .section-title { color: #fff; }
.showcase .section-title em { color: inherit; }
.showcase-points {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.showcase-points li { display: flex; gap: 13px; align-items: flex-start; }
.sp-ic {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-md);
  font-size: 1.2rem;
}
.showcase-points strong { display: block; font-size: 1.04rem; font-weight: 800; color: #fff; }
.showcase-points p { margin-top: 2px; font-size: 0.92rem; color: var(--on-dark-soft); }
.showcase-copy .hero-actions { margin-top: 26px; }

.showcase-phones {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-phones .phone-front {
  position: relative;
  z-index: 2;
  width: 258px;
  margin-left: -34px;
}
.showcase-phones .phone-back {
  position: absolute;
  z-index: 1;
  width: 234px;
  right: 6%;
  top: 8%;
  rotate: 6deg;
  opacity: 0.97;
  animation: gc-float 7s ease-in-out -2s infinite;
}

/* ============ GALLERY ============ */
.gallery { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(96px, 9.5vw, 130px);
  gap: 10px;
}
.gallery-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--brand-soft);
  box-shadow: var(--sh-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.g-feature { grid-column: span 6; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 6; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 7; }
.gallery-item:nth-child(6) { grid-column: span 5; }
.gallery-item figcaption { position: absolute; left: 0; bottom: 0; padding: 14px; }
.g-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
}

/* ============ FEATURES ============ */
.features { background: var(--paper-2); }
.feature-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.feat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(18px, 1.8vw, 24px);
  grid-column: span 6;
  transition: border-color 0.2s var(--ease);
}
.feat:nth-child(4), .feat:nth-child(5), .feat:nth-child(6) { grid-column: span 4; }
.feat:hover { border-color: var(--brand-tint); }
.feat-ic {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.feat h3 {
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.feat p { margin-top: 6px; color: var(--ink-soft); font-size: 0.9rem; line-height: 1.5; }

/* feat-hero — büyük görselli kutu */
.feat-hero {
  grid-column: span 6;
  grid-row: span 2;
  position: relative;
  padding: 0;
  overflow: hidden;
  border: none;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.feat-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.feat-hero:hover img { transform: scale(1.03); }
.feat-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 26%, rgba(5, 58, 44, 0.94));
}
.feat-hero-body { position: relative; z-index: 1; padding: clamp(18px, 2vw, 24px); }
/* Feat-hero: dark overlay üzerinde icon beyaz bg + brand fill (kontrast korumalı) */
.feat-hero .feat-ic { background: #ffffff; color: var(--brand); }
.feat-hero h3 { color: #fff; font-size: 1.42rem; }
.feat-hero p { color: rgba(240, 244, 236, 0.85); }
.feat-hero:hover { transform: none; }

/* Tek vurgu kartı (4): pine bg + beyaz icon. Diğer kartlar default surface
   kalır → premium minimal rhythm (tek karakter kart, gerisi sakin). */
.feature-bento .feat:nth-child(4) {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.feature-bento .feat:nth-child(4) h3 { color: #fff; }
.feature-bento .feat:nth-child(4) p { color: rgba(240, 244, 236, 0.85); }
.feature-bento .feat:nth-child(4) .feat-ic { background: #ffffff; color: var(--brand); }

/* ============ WHY (DARK) ============ */
.why {
  background: var(--brand-deep);  /* flat dark — premium */
  color: var(--on-dark);
}
.why-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.why-media { position: relative; }
.why-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.why-copy .section-title { color: #fff; }
.why-copy .section-title em { color: inherit; }
.why-text { margin-top: 14px; color: var(--on-dark-soft); font-size: 1.02rem; line-height: 1.66; }
.why-list { margin-top: 20px; display: grid; gap: 11px; }
.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--on-dark);
}
.why-list span {
  display: grid;
  place-items: center;
  width: 27px; height: 27px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.78rem;
  flex-shrink: 0;
}

/* ============ COVERAGE / MAP ============ */
.coverage { background: var(--surface); }
.coverage-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(18px, 2.4vw, 36px);
  align-items: center;
}
.map-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(20px, 2.6vw, 34px);
}
.map-stage { position: relative; }
.ist-map { width: 100%; height: auto; display: block; }
.ist-europe { fill: var(--brand-tint); opacity: 0.7; }
.ist-anadolu { fill: var(--brand); }
/* Pin pine bg üzerinde → beyaz fill ile kontrast (pin = teslimat noktası) */
.ist-pin { fill: #ffffff; }
.ist-pin-core { fill: var(--brand); }
.ist-pulse {
  fill: #ffffff;
  transform-box: fill-box;
  transform-origin: center;
  animation: ist-pulse 2.6s ease-out infinite;
}
.ist-t-eu, .ist-t-an {
  font-family: var(--font); font-weight: 800; font-size: 25px; text-anchor: middle;
}
.ist-t-eu { fill: var(--ink-soft); }
.ist-t-an { fill: #fff; }
.ist-s-eu, .ist-s-an {
  font-family: var(--font); font-weight: 700; font-size: 13px; text-anchor: middle;
  letter-spacing: 1.4px; text-transform: uppercase;
}
.ist-s-eu { fill: var(--ink-muted); }
.ist-s-an { fill: var(--brand-soft); }
.map-legend {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 16px;
}
.lg {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.88rem; font-weight: 700; color: var(--ink-soft);
}
.lg::before { content: ''; width: 13px; height: 13px; border-radius: 50%; }
.lg-active::before { background: var(--accent); }
.lg-soon::before { background: var(--brand-tint); }

.coverage-detail {
  background: var(--brand);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--sh-brand);
}
.cd-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.cd-head h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
/* Pine card üzerinde beyaz inverse badge — kontrast korumalı */
.badge-active {
  background: #ffffff;
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.coverage-detail > p { color: rgba(240, 244, 236, 0.84); font-size: 0.98rem; }
.cd-points { display: grid; gap: 10px; margin-top: 18px; }
.cd-points li { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 0.96rem; }
.cd-points span {
  display: grid; place-items: center;
  width: 25px; height: 25px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.74rem;
  flex-shrink: 0;
}
.cd-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.cd-cta-title { font-size: 1.14rem; font-weight: 800; color: #fff; }
.cd-cta small { font-size: 0.85rem; color: rgba(240, 244, 236, 0.78); }
/* Pine card CTA: beyaz inverse (kontrast) */
.cd-cta .btn { margin-top: 8px; background: #ffffff; color: var(--brand); box-shadow: none; }
.cd-cta .btn:hover { background: var(--paper); }

/* ============ FAQ ============ */
.faq { background: var(--paper); }
.faq-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.faq-inner .section-head { margin-bottom: 0; }
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 2px 24px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq-item[open] { border-color: var(--brand); box-shadow: var(--sh-sm); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 0;
  font-weight: 700;
  font-size: 1.01rem;
  list-style: none;
  cursor: pointer;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%2300674f' stroke-width='3' stroke-linecap='round' d='M12 6v12M6 12h12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s var(--spring), background-color 0.25s var(--ease);
}
.faq-item[open] summary::after {
  transform: rotate(135deg);
  background-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' d='M12 6v12M6 12h12'/%3E%3C/svg%3E");
}
.faq-item p {
  padding-bottom: 20px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  max-width: 58ch;
}

/* ============ QR DOWNLOAD ============ */
.qr-download {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.qr-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
.qr-copy .section-title {
  margin-top: 8px;
  text-align: left;
}
.qr-copy .section-lead {
  margin-inline: 0;
  max-width: 52ch;
}
.qr-points {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.qr-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.qr-points .ico {
  width: 1.05em;
  height: 1.05em;
  color: var(--brand);
}
.qr-copy .hero-actions { margin-top: 16px; }

.qr-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(16px, 2vw, 26px);
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.qr-frame {
  background: #fff;
  border-radius: var(--r-md);
  padding: clamp(8px, 1vw, 14px);
}
.qr-frame img {
  width: clamp(170px, 18vw, 220px);
  height: clamp(170px, 18vw, 220px);
  display: block;
}
.qr-hint {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 880px) {
  .qr-inner { grid-template-columns: 1fr; }
  .qr-copy .section-title { text-align: left; }
}

/* ============ FINAL CTA ============ */
.final-cta {
  position: relative;
  background: var(--brand);  /* flat brand pine — premium (radial glow kaldırıldı) */
  color: #fff;
  padding-block: clamp(62px, 7.5vw, 108px);
  text-align: center;
}
.final-cta-inner { max-width: 680px; margin-inline: auto; }
.final-cta-inner .eyebrow { justify-content: center; }
.final-cta h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 12px;
}
.final-cta h2 em { font-style: normal; color: inherit; }
.final-lead {
  margin-top: 14px;
  font-size: 1.05rem;
  color: rgba(240, 244, 236, 0.82);
  margin-inline: auto;
  max-width: 44ch;
}
.final-cta .hero-actions { margin-top: 26px; }
.final-note {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  color: rgba(240, 244, 236, 0.82);
}

/* ============ FOOTER — minimal: logo (sol) · meta (sağ) ============ */
.site-footer {
  background: var(--forest-900);
  color: var(--on-dark-soft);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 22px;
  font-size: 0.82rem;
}
.brand-footer .brand-name {
  /* Footer logo — header'dan biraz daha küçük, ölçek dengesi için */
  font-size: 1.3rem;
  color: #fff;
}
.footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.footer-dot {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 700;
}
.footer-credit {
  color: var(--on-dark-soft);
  letter-spacing: 0.01em;
  transition: color 0.15s var(--ease);
}
.footer-credit:hover { color: #fff; }

/* ============ ANİMASYON ============ */
@keyframes gc-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.5); opacity: 0.4; }
}
@keyframes gc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes ist-pulse {
  0% { transform: scale(0.5); opacity: 0.6; }
  100% { transform: scale(2.8); opacity: 0; }
}
@keyframes gc-ping {
  0% { box-shadow: 0 0 0 0 rgba(239, 125, 18, 0.5); }
  70%, 100% { box-shadow: 0 0 0 0.7em rgba(239, 125, 18, 0); }
}
@keyframes gc-track {
  0% { transform: translate(48px, 120px); }
  45% { transform: translate(150px, 60px); }
  75% { transform: translate(214px, 78px); }
  100% { transform: translate(250px, 70px); }
}
@keyframes gc-rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

/* Hero giriş — kademeli */
.hero-rise {
  opacity: 0;
  animation: gc-rise 0.8s var(--ease) forwards;
  animation-delay: calc(var(--r, 0) * 0.09s);
}

/* Scroll reveal */
.reveal,
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.65s var(--ease), transform 0.7s var(--spring);
}
.reveal.in,
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.13s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.21s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.29s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.37s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > *, .hero-rise { opacity: 1 !important; transform: none !important; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1040px) {
  .hero-inner { grid-template-columns: 1fr; gap: 14px; }
  .hero-copy { max-width: 620px; }
  .hero-stage { margin-top: 18px; }
  .showcase-inner { grid-template-columns: 1fr; gap: 32px; }
  .showcase-phones { min-height: 430px; }
  .why-inner { grid-template-columns: 1fr; gap: 44px; }
  .why-media { max-width: 480px; }
  .coverage-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-md);
    padding: 18px var(--gutter) 26px;
    transform: translateY(-135%);
    transition: transform 0.32s var(--ease);
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { padding: 13px 4px; font-size: 1.05rem; color: var(--ink-soft); }
  .site-nav a:not(.nav-cta):hover { color: var(--brand); }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 10px; text-align: center; }

  .step-flow { grid-template-columns: 1fr; }
  .feature-bento { grid-template-columns: repeat(2, 1fr); }
  .feat,
  .feat:nth-child(4), .feat:nth-child(5), .feat:nth-child(6) { grid-column: span 1; }
  .feat-hero { grid-column: span 2; grid-row: span 1; min-height: 260px; }
  .gallery-grid { grid-auto-rows: clamp(116px, 20vw, 158px); }
  .g-feature { grid-column: span 12; }
  .gallery-item:nth-child(2) { grid-column: span 6; }
  .gallery-item:nth-child(3) { grid-column: span 6; }
  .gallery-item:nth-child(4) { grid-column: span 6; }
  .gallery-item:nth-child(5) { grid-column: span 6; }
  .gallery-item:nth-child(6) { grid-column: span 12; }
}

@media (max-width: 600px) {
  :root { --section-y: clamp(46px, 12vw, 66px); }
  .feature-bento { grid-template-columns: 1fr; }
  .feat-hero { grid-column: span 1; min-height: 240px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-feature, .gallery-item:nth-child(n) { grid-column: span 1; }
  .g-feature { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 2; }
}

@media (max-width: 440px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .store-btn { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .showcase-phones .phone-front { margin-left: 0; width: 230px; }
  .showcase-phones .phone-back { display: none; }
}
