/* ==========================================================================
   Salonia — Pazarlama Sitesi Tasarım Sistemi
   "Clean Beauty" · Sage yeşili · Minimalist · Yüksek performans
   Tek dosya, framework yok. Yorumla bölümlenmiştir.
   ========================================================================== */

/* ---------- 1. Tasarım Tokenları (Design Tokens) ---------- */
:root {
  /* Marka renkleri — Sage palet */
  --sage-900: #2C3A33;
  --sage-800: #3A4D43;
  --sage-700: #4A6B5D;
  --sage-600: #5C7E6E;
  --sage-500: #6B8E7F;   /* ana marka */
  --sage-400: #8FA99C;
  --sage-300: #B6C9BF;
  --sage-200: #D8E3DD;
  --sage-100: #EAF1ED;
  --sage-50:  #F4F8F6;

  /* Sıcak nötrler */
  --ink:       #1C2421;  /* ana metin */
  --ink-soft:  #44524B;  /* ikincil metin */
  --muted:     #6E7C75;  /* yardımcı metin */
  --cream:     #FAF8F4;  /* sayfa zemini */
  --cream-2:   #F2EEE6;  /* alternatif bölüm */
  --line:      #E7E1D6;  /* ince çizgi/border */
  --white:     #FFFFFF;

  /* Kurucu altın — FOMO & vurgu */
  --gold-600:  #B5893B;
  --gold-500:  #C8A45D;
  --gold-100:  #F6ECD6;

  /* Durum renkleri */
  --success:   #4C8C6B;
  --danger:    #C45B4E;

  /* Tipografi */
  --font-head: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Ölçek & geometri */
  --maxw: 1180px;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(28,36,33,.06), 0 2px 8px rgba(28,36,33,.05);
  --shadow:    0 8px 30px rgba(28,36,33,.08);
  --shadow-lg: 0 24px 60px rgba(28,36,33,.14);
  --ring:      0 0 0 4px rgba(107,142,127,.22);

  /* Geçişler */
  --t: 200ms cubic-bezier(.4,0,.2,1);
}

/* ---------- 2. Reset & temel ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { margin: 0 0 1rem; color: var(--ink-soft); }

/* ---------- 3. Düzen yardımcıları ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section   { padding: clamp(56px, 9vw, 110px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.bg-cream2 { background: var(--cream-2); }
.bg-sage   { background: var(--sage-50); }
.bg-ink    { background: var(--sage-900); color: #E9F0EC; }
.bg-ink h2, .bg-ink h3 { color: #fff; }
.bg-ink p  { color: #C5D2CB; }

.center { text-align: center; }
.measure { max-width: 680px; margin-inline: auto; }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Bölüm üst etiketi */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: .82rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage-700);
  background: var(--sage-100);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow--gold { color: var(--gold-600); background: var(--gold-100); }

.lead { font-size: 1.18rem; color: var(--ink-soft); }

/* ---------- 4. Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--sage-700); color: #fff;
  box-shadow: 0 8px 20px rgba(74,107,93,.28);
}
.btn-primary:hover { background: var(--sage-800); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(74,107,93,.34); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: #fff;
  box-shadow: 0 10px 24px rgba(181,137,59,.32);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(181,137,59,.4); }
.btn-ghost { background: transparent; color: var(--sage-800); border-color: var(--sage-300); }
.btn-ghost:hover { background: var(--sage-100); border-color: var(--sage-500); }
.btn-light { background: #fff; color: var(--sage-800); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 17px 34px; font-size: 1.06rem; }
.btn-block { width: 100%; }

/* ---------- 5. Topbar / Navigasyon ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,248,244,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}
.nav.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; gap: 18px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--ink); letter-spacing: -.02em; }
.brand__mark { width: 32px; height: 32px; border-radius: 9px; background: linear-gradient(140deg, var(--sage-500), var(--sage-700)); display: grid; place-items: center; color: #fff; font-weight: 700; box-shadow: var(--shadow-sm); }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: 18px; }
.nav__links a, .nav__drop > button {
  font-family: var(--font-head); font-weight: 500; font-size: .96rem; color: var(--ink-soft);
  padding: 9px 14px; border-radius: 10px; background: none; border: none;
  display: inline-flex; align-items: center; gap: 6px; transition: color var(--t), background var(--t);
}
.nav__links a:hover, .nav__drop > button:hover { color: var(--sage-800); background: var(--sage-100); }
.nav__links a.active { color: var(--sage-800); font-weight: 600; }
.nav__spacer { flex: 1; }
.nav__cta { display: flex; align-items: center; gap: 10px; }

/* Dropdown */
.nav__drop { position: relative; }
.nav__menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 10px; min-width: 320px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--t);
}
.nav__drop:hover .nav__menu, .nav__drop:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu a { display: flex; gap: 12px; align-items: flex-start; padding: 11px 12px; border-radius: 11px; }
.nav__menu a:hover { background: var(--sage-50); }
.nav__menu .ic { width: 34px; height: 34px; flex: none; border-radius: 9px; background: var(--sage-100); color: var(--sage-700); display: grid; place-items: center; }
.nav__menu strong { display: block; font-family: var(--font-head); font-size: .95rem; color: var(--ink); font-weight: 600; }
.nav__menu small { color: var(--muted); font-size: .82rem; line-height: 1.4; }

/* Mobil menü */
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 11px; border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center; }
.nav__burger span, .nav__burger span::before, .nav__burger span::after { content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: var(--t); }
.nav__burger span::before { position: absolute; top: -6px; } .nav__burger span::after { position: absolute; top: 6px; }
.mobile-menu { display: none; }

/* ---------- 6. FOMO / Duyuru şeridi ---------- */
.ribbon {
  background: linear-gradient(90deg, var(--sage-800), var(--sage-700));
  color: #F3E9D2; font-size: .9rem; text-align: center; padding: 9px 16px;
  font-family: var(--font-head); font-weight: 500;
}
.ribbon b { color: #fff; }
.ribbon .gold { color: var(--gold-500); font-weight: 700; }

/* ---------- 7. Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 92px) 0 clamp(40px, 6vw, 80px); }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(60% 50% at 85% 0%, rgba(107,142,127,.16), transparent 60%),
  radial-gradient(50% 45% at 5% 90%, rgba(200,164,93,.12), transparent 60%);
  pointer-events: none; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero h1 .hl { color: var(--sage-700); position: relative; white-space: nowrap; }
.hero .lead { margin-bottom: 28px; max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; color: var(--muted); font-size: .92rem; }
.hero__note span { display: inline-flex; align-items: center; gap: 7px; }
.hero__note svg { color: var(--success); }

/* ---------- 8. Placeholder görsel çerçevesi ---------- */
/* Tüm ürün ekran görüntüleri bu çerçeveye yerleştirilir.
   object-fit: cover ile görsel eklendiğinde düzen bozulmaz. */
.shot {
  position: relative; width: 100%; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--sage-100);
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.shot--16x9 { aspect-ratio: 16 / 9; }
.shot--4x3  { aspect-ratio: 4 / 3; }
.shot--3x2  { aspect-ratio: 3 / 2; }
.shot--1x1  { aspect-ratio: 1 / 1; }
.shot--phone { aspect-ratio: 9 / 19; max-width: 300px; border-radius: 36px; padding: 10px; background: var(--sage-900); }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot--phone img { border-radius: 28px; }
/* Görsel henüz yokken görünen yer tutucu yüzey */
.shot__ph {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; text-align: center;
  color: var(--sage-700); padding: 20px;
  background:
    linear-gradient(135deg, var(--sage-50), var(--sage-200)),
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(255,255,255,.35) 14px, rgba(255,255,255,.35) 15px);
}
.shot__ph svg { width: 40px; height: 40px; opacity: .65; }
.shot__ph b { font-family: var(--font-head); font-size: .95rem; }
.shot__ph small { font-size: .78rem; color: var(--sage-700); opacity: .8; max-width: 260px; }
/* Yer tutucu, gerçek görsel YÜKLENİNCE JS tarafından gizlenir (assets/js/site.js).
   Görsel dosyası henüz yokken kırık resim simgesi görünmez; bu opak katman üstünü kapatır. */

.float-badge {
  position: absolute; background: #fff; border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 11px;
  font-family: var(--font-head); font-size: .9rem; font-weight: 600;
}
.float-badge .dot { width: 36px; height: 36px; border-radius: 10px; background: var(--sage-100); color: var(--sage-700); display: grid; place-items: center; }
.float-badge--tl { top: -18px; left: -22px; }
.float-badge--br { bottom: -18px; right: -22px; }

/* ---------- 9. Güven şeridi ---------- */
.trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 30px; }
.trust__item { display: inline-flex; align-items: center; gap: 9px; color: var(--ink-soft); font-family: var(--font-head); font-weight: 500; font-size: .95rem; }
.trust__item svg { color: var(--sage-600); }

/* ---------- 10. Kartlar ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sage-200); }
.card__ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--sage-100); color: var(--sage-700); margin-bottom: 16px; }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { margin: 0; font-size: .98rem; }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--sage-700); font-family: var(--font-head); font-weight: 600; font-size: .92rem; }
.card__link:hover { gap: 10px; }

/* Özellik ikon kutusu (büyük altın) */
.card--gold { border-color: var(--gold-500); background: linear-gradient(180deg, #fff, var(--gold-100)); }

/* ---------- 11. Özellik satırı (alternatif metin/görsel) ---------- */
.featrow { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.featrow + .featrow { margin-top: clamp(48px, 7vw, 96px); }
.featrow--rev .featrow__media { order: -1; }
.featrow ul.checks { margin-top: 18px; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.checks li svg { flex: none; margin-top: 3px; color: var(--success); }
.checks li b { color: var(--ink); }

/* ---------- 12. Kurucu Plan / Fiyat ---------- */
.price-wrap { display: grid; grid-template-columns: 1fr 1.25fr; gap: 28px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; display: flex; flex-direction: column; }
.price-card--founder {
  border: 2px solid var(--gold-500);
  background: linear-gradient(180deg, #fff 0%, #fffdf8 100%);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.price-card--founder::after { content: ""; position: absolute; width: 240px; height: 240px; right: -90px; top: -90px; background: radial-gradient(circle, rgba(200,164,93,.18), transparent 70%); }
.price-tag { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; background: var(--gold-500); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .04em; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; text-transform: uppercase; }
.price-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.price-card .sub { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }
.price-amount { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price-amount .old { color: var(--muted); text-decoration: line-through; font-size: 1.2rem; }
.price-amount .now { font-family: var(--font-head); font-weight: 800; font-size: 2.8rem; color: var(--ink); letter-spacing: -.03em; }
.price-amount .per { color: var(--muted); font-size: .98rem; }
.price-card .save { color: var(--gold-600); font-weight: 700; font-family: var(--font-head); margin: 6px 0 22px; }
.price-card .feat { display: grid; gap: 13px; margin: 8px 0 26px; }
.price-card .feat li { display: flex; gap: 11px; align-items: flex-start; font-size: .98rem; color: var(--ink-soft); }
.price-card .feat li svg { flex: none; margin-top: 3px; color: var(--success); }
.price-card .gift { background: var(--gold-100); border: 1px dashed var(--gold-500); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 22px; }
.price-card .gift b { color: var(--gold-600); font-family: var(--font-head); }
.price-card .btn { margin-top: auto; }

/* FOMO sayaç */
.fomo { background: var(--sage-900); color: #fff; border-radius: var(--radius-lg); padding: 30px 34px; }
.fomo h3 { color: #fff; }
.fomo p { color: #C5D2CB; }
.fomo__bar { height: 14px; border-radius: 999px; background: rgba(255,255,255,.14); overflow: hidden; margin: 16px 0 10px; }
.fomo__fill { height: 100%; background: linear-gradient(90deg, var(--gold-500), var(--gold-600)); border-radius: 999px; transition: width 1.2s cubic-bezier(.2,.8,.2,1); }
.fomo__meta { display: flex; justify-content: space-between; font-family: var(--font-head); font-size: .9rem; color: #D7E0DA; }
.fomo__meta b { color: var(--gold-500); }
.fomo__count { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--gold-500); }

/* ---------- 13. Adımlar ---------- */
.steps { display: grid; gap: 22px; counter-reset: step; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step__n { flex: none; width: 46px; height: 46px; border-radius: 13px; background: var(--sage-700); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.step h4 { font-family: var(--font-head); font-size: 1.12rem; margin: 4px 0 6px; }
.step p { margin: 0; }

/* ---------- 14. İstatistik şeridi ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem,4vw,2.8rem); color: var(--sage-700); letter-spacing: -.02em; }
.bg-ink .stat .num { color: var(--gold-500); }
.stat .lbl { color: var(--muted); font-size: .95rem; }
.bg-ink .stat .lbl { color: #B9C7BF; }

/* ---------- 15. Görüş / referans ---------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); height: 100%; }
.quote p { font-size: 1.05rem; color: var(--ink); }
.quote__who { display: flex; align-items: center; gap: 13px; margin-top: 18px; }
.quote__av { width: 46px; height: 46px; border-radius: 50%; background: var(--sage-200); color: var(--sage-800); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote__who strong { display: block; font-family: var(--font-head); font-size: .95rem; }
.quote__who small { color: var(--muted); }
.stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: 12px; }

/* ---------- 16. SSS (accordion) ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q .pm { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--sage-100); color: var(--sage-700); display: grid; place-items: center; transition: var(--t); font-size: 1.2rem; }
.faq__item[open] .faq__q .pm { transform: rotate(45deg); background: var(--sage-700); color: #fff; }
.faq__a { padding: 0 24px 22px; color: var(--ink-soft); }
.faq__a p { margin: 0; }

/* ---------- 17. CTA bandı ---------- */
.cta-band { background: linear-gradient(135deg, var(--sage-800), var(--sage-700)); border-radius: var(--radius-lg); padding: clamp(36px,6vw,64px); text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(40% 60% at 80% 10%, rgba(200,164,93,.25), transparent 60%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: #D2DED7; position: relative; max-width: 560px; margin-inline: auto; }
.cta-band .hero__cta { justify-content: center; position: relative; }

/* ---------- 18. Form (kayıt / iletişim) ---------- */
.formcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(28px, 4vw, 44px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .92rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line);
  background: var(--cream); font-size: 1rem; font-family: var(--font-body); color: var(--ink);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sage-500); background: #fff; box-shadow: var(--ring); }
.field .hint { color: var(--muted); font-size: .82rem; margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.secbadges { display: flex; flex-wrap: wrap; gap: 14px 22px; justify-content: center; margin-top: 22px; color: var(--muted); font-size: .85rem; }
.secbadges span { display: inline-flex; align-items: center; gap: 7px; }
.secbadges svg { color: var(--sage-600); }

/* ---------- 19. Mobil uygulama mockup ---------- */
.appstores { display: flex; flex-wrap: wrap; gap: 14px; }
.store-btn { display: inline-flex; align-items: center; gap: 11px; background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 14px; transition: var(--t); }
.store-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.store-btn small { display: block; font-size: .68rem; opacity: .8; line-height: 1; }
.store-btn b { display: block; font-family: var(--font-head); font-size: 1.05rem; line-height: 1.2; }
.phones { display: flex; gap: 22px; justify-content: center; align-items: flex-end; }
.phones .shot--phone:nth-child(2) { transform: translateY(-24px); }

/* ---------- 20. Footer ---------- */
.footer { background: var(--sage-900); color: #C5D2CB; padding: 64px 0 30px; }
.footer a { color: #C5D2CB; transition: color var(--t); }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer h5 { font-family: var(--font-head); color: #fff; font-size: .95rem; margin: 0 0 16px; letter-spacing: .02em; }
.footer ul { display: grid; gap: 11px; font-size: .94rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; font-size: .88rem; color: #93A39A; }
.footer__bottom .badges { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- 21. Sayfa başlığı (alt sayfalar) ---------- */
.pagehead { padding: clamp(48px,7vw,90px) 0 clamp(36px,5vw,60px); position: relative; overflow: hidden; }
.pagehead::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 90% 0%, rgba(107,142,127,.14), transparent 60%); }
.pagehead .container { position: relative; }
.breadcrumb { font-size: .88rem; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--sage-700); }

/* ---------- 22. Reveal animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- 23. Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { max-width: 560px; }
  .featrow, .price-wrap { grid-template-columns: 1fr; gap: 32px; }
  .featrow--rev .featrow__media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .mobile-menu { display: block; } /* mobilde kayar panel olarak etkin (varsayılan display:none geçersiz kılınır) */
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .phones .shot--phone:nth-child(2) { transform: none; }
  .float-badge { display: none; }
  .section { padding: 52px 0; }
}

/* ---------- 24. Mobil açılır menü (JS toggle) ---------- */
.mobile-menu { position: fixed; inset: 72px 0 0; background: var(--cream); z-index: 55; padding: 24px; overflow-y: auto; transform: translateX(100%); transition: transform var(--t); }
.mobile-menu.open { transform: none; }
.mobile-menu a { display: block; padding: 15px 8px; font-family: var(--font-head); font-weight: 500; font-size: 1.1rem; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu .btn { margin-top: 18px; }
body.menu-open { overflow: hidden; }
.nav__burger.is-open span { background: transparent; }
.nav__burger.is-open span::before { top: 0; transform: rotate(45deg); }
.nav__burger.is-open span::after { top: 0; transform: rotate(-45deg); }

/* ---------- 25. Geri sayım sayacı (FOMO) ---------- */
.countdown { display: flex; gap: 10px; }
.cd-box { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 12px; padding: 10px 6px; min-width: 64px; text-align: center; }
.cd-box .n { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.cd-box .l { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: #C5D2CB; margin-top: 6px; }
/* açık zeminde sayaç */
.countdown--light .cd-box { background: var(--sage-50); border-color: var(--sage-200); }
.countdown--light .cd-box .n { color: var(--sage-800); }
.countdown--light .cd-box .l { color: var(--muted); }

/* ---------- 26. Değer yığını (value stack) ---------- */
.vstack { display: grid; gap: 0; margin: 4px 0 0; }
.vstack li { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.vstack li:last-child { border-bottom: 0; }
.vstack .vi { width: 42px; height: 42px; flex: none; border-radius: 11px; background: var(--sage-100); color: var(--sage-700); display: grid; place-items: center; font-size: 1.2rem; }
.vstack .vt { flex: 1; }
.vstack .vt strong { font-family: var(--font-head); font-size: 1rem; display: block; color: var(--ink); }
.vstack .vt small { color: var(--muted); font-size: .84rem; }
.vstack .vp { font-family: var(--font-head); font-weight: 700; color: var(--ink-soft); white-space: nowrap; }
.vstack .vp .was { color: var(--muted); text-decoration: line-through; }
.vstack .free { color: var(--success); font-family: var(--font-head); font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.vstack-total { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 16px; padding: 18px 20px; border-radius: var(--radius); background: var(--sage-900); color: #fff; }
.vstack-total .lbl { font-family: var(--font-head); font-weight: 600; }
.vstack-total .lbl small { display: block; color: #C5D2CB; font-weight: 400; font-size: .8rem; }
.vstack-total .amt { text-align: right; }
.vstack-total .amt .old { color: #93A39A; text-decoration: line-through; font-size: 1rem; font-family: var(--font-head); }
.vstack-total .amt .now { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--gold-500); line-height: 1; }
.save-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--success); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .9rem; padding: 8px 16px; border-radius: 999px; }

/* ---------- 27. Tarayıcı mockup (hediye .com web sitesi) ---------- */
.browser { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: #fff; }
.browser__bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; background: var(--cream-2); border-bottom: 1px solid var(--line); }
.browser__dots { display: flex; gap: 6px; }
.browser__dots i { width: 11px; height: 11px; border-radius: 50%; background: #d6cfc1; display: block; }
.browser__url { flex: 1; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: .85rem; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; font-family: var(--font-head); }
.browser__url svg { color: var(--success); flex: none; }
.browser__url b { color: var(--ink); }
.browser__url .free-tag { margin-left: auto; background: var(--gold-100); color: var(--gold-600); font-size: .68rem; font-weight: 700; padding: 2px 9px; border-radius: 999px; }
.browser__body { position: relative; aspect-ratio: 16/10; background: var(--sage-100); }
.browser__body img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 28. Sticky FOMO çubuğu (JS ile eklenir) ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: linear-gradient(100deg, var(--sage-900), var(--sage-800)); color: #fff; box-shadow: 0 -10px 30px rgba(28,36,33,.18); transform: translateY(110%); transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.sticky-cta.show { transform: none; }
.sticky-cta__in { max-width: var(--maxw); margin-inline: auto; padding: 12px 24px; display: flex; align-items: center; gap: 18px; }
.sticky-cta__txt { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 0; flex-wrap: wrap; }
.sticky-cta__pill { background: var(--gold-500); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .8rem; padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.sticky-cta__msg { font-family: var(--font-head); font-weight: 500; font-size: .95rem; }
.sticky-cta__msg b { color: var(--gold-500); }
.sticky-cta__msg .price { color: #fff; }
.sticky-cta__mini { display: flex; gap: 6px; }
.sticky-cta__mini .b { background: rgba(255,255,255,.12); border-radius: 8px; padding: 4px 8px; font-family: var(--font-head); font-weight: 700; font-size: .9rem; font-variant-numeric: tabular-nums; }
.sticky-cta__close { background: none; border: none; color: #B9C7BF; font-size: 1.4rem; line-height: 1; padding: 6px; flex: none; }
.sticky-cta__close:hover { color: #fff; }
body.has-sticky-cta { padding-bottom: 72px; }
@media (max-width: 720px) {
  .sticky-cta__in { padding: 10px 14px; gap: 10px; }
  .sticky-cta__mini, .sticky-cta__pill { display: none; }
  .sticky-cta__msg { font-size: .85rem; }
  .sticky-cta .btn { padding: 11px 16px; font-size: .9rem; }
  body.has-sticky-cta { padding-bottom: 64px; }
}

/* Kurucu plan vurgu — büyük başlık altın */
.founder-hl { color: var(--gold-600); }
.bg-ink .founder-hl { color: var(--gold-500); }

/* Kurucu plan 2'li gridleri mobilde tek sütuna indir (inline stilleri geçersiz kılar) */
@media (max-width: 820px) {
  .kurucu-2 { grid-template-columns: 1fr !important; }
}
