/* =========================================================
   ESANSLİSTE — Landing tasarım sistemi
   Sıcak siyah + şampanya altın · Cormorant + Inter · koyu, sinematik
   ========================================================= */

:root {
  --bg:        #0b0a09;
  --bg-2:      #100e0c;
  --surface:   #17140f;
  --surface-2: #1e1a14;
  --hairline:  rgba(212,175,55,.14);
  --hairline-2:rgba(212,175,55,.28);
  --gold:      #c9a227;
  --gold-hi:   #e8d48b;
  --gold-soft: rgba(201,162,39,.16);
  --gold-glow: rgba(232,212,139,.35);
  --text:      #f6f1e6;
  --text-2:    #b9b0a0;
  --text-3:    #837a6c;
  --ok:        #4bb583;

  --font-display: 'Cormorant Garamond', 'Amiri', Georgia, serif;
  --font-body:    'Inter', 'Tajawal', system-ui, -apple-system, sans-serif;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 16px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; background: none; border: none; }

::selection { background: var(--gold); color: #000; }

/* Arka plan atmosferi: sabit koyu degrade + üstte partikül canvas */
.bg-atmos {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(201,162,39,.10), transparent 60%),
    radial-gradient(900px 600px at 100% 100%, rgba(201,162,39,.06), transparent 60%),
    var(--bg);
}
#particles { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5; }

/* ---------- Tipografi yardımcıları ---------- */
.display { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; }
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.gold-text {
  background: linear-gradient(96deg, var(--gold) 10%, var(--gold-hi) 50%, var(--gold) 90%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.mono { font-variant-numeric: lining-nums tabular-nums; font-feature-settings: "lnum" 1, "tnum" 1; }

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

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  letter-spacing: .01em; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(96deg, var(--gold), var(--gold-hi));
  color: #17130a; box-shadow: 0 8px 30px -8px var(--gold-glow);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 44px -10px var(--gold-glow); }
.btn-ghost {
  border: 1px solid var(--hairline-2); color: var(--text); background: rgba(255,255,255,.02);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--gold); background: var(--gold-soft); }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn svg { width: 18px; height: 18px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,10,9,.72); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--hairline);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 72px; }
.brand { font-family: var(--font-display); font-weight: 700; font-size: 23px; letter-spacing: .14em; display: inline-flex; align-items: baseline; gap: 2px; }
.brand .brand-dot { color: var(--gold); }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav .navlink { font-size: 14px; color: var(--text-2); transition: color .25s; position: relative; }
.header-nav .navlink:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 12px; }

/* Dil seçici */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--hairline); font-size: 13px; color: var(--text-2); transition: border-color .25s, color .25s;
}
.lang-btn:hover { border-color: var(--gold); color: var(--text); }
.lang-menu {
  position: absolute; inset-inline-end: 0; top: calc(100% + 8px); min-width: 150px;
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 12px; padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: .22s var(--ease); box-shadow: 0 20px 50px -20px #000;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  display: flex; width: 100%; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px;
  font-size: 14px; color: var(--text-2); transition: background .2s, color .2s;
}
.lang-menu button:hover, .lang-menu button.active { background: var(--gold-soft); color: var(--text); }
.lang-menu button .lang-native { margin-inline-start: auto; font-size: 12px; color: var(--text-3); }

/* Menü toggle (mobil) */
.menu-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--hairline); align-items: center; justify-content: center; }
.menu-toggle span { width: 18px; height: 1.5px; background: var(--text); position: relative; transition: .3s; }
.menu-toggle span::before, .menu-toggle span::after { content: ''; position: absolute; inset-inline: 0; height: 1.5px; background: var(--text); transition: .3s; }
.menu-toggle span::before { top: -6px; } .menu-toggle span::after { top: 6px; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 60%; opacity: .82; }
.hero-video { z-index: 1; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero-video.playing { opacity: .82; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(11,10,9,.55) 30%, rgba(11,10,9,.35) 48%, rgba(11,10,9,.75) 78%, var(--bg) 100%),
    radial-gradient(90% 55% at 50% 40%, rgba(11,10,9,.72) 0%, transparent 70%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; text-align: center; padding-block: 130px 100px; }
.hero-inner::before {
  content: ''; position: absolute; z-index: -1; inset-inline: 50%; inset-block-start: 44%;
  width: min(760px, 92%); height: 440px; transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(9,8,7,.78) 0%, rgba(9,8,7,.45) 45%, transparent 72%);
  filter: blur(8px); pointer-events: none;
}
html[dir="rtl"] .hero-inner::before { inset-inline: 50%; transform: translate(50%, -50%); }
.hero-eyebrow { justify-content: center; margin-bottom: 26px; }
.hero-eyebrow::before, .hero-eyebrow.eyebrow::after { content: ''; width: 26px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(40px, 7vw, 84px); line-height: 1.04; letter-spacing: -.015em; margin-bottom: 24px; text-shadow: 0 2px 30px rgba(0,0,0,.6), 0 1px 4px rgba(0,0,0,.5); }
.hero-sub { text-shadow: 0 1px 12px rgba(0,0,0,.7); }
.hero h1 .gold-text { display: inline-block; }
.hero-sub { max-width: 620px; margin: 0 auto 40px; font-size: clamp(16px, 2vw, 19px); color: var(--text-2); line-height: 1.7; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 26px; inset-inline: 0; z-index: 2; display: flex; justify-content: center; }
.hero-scroll span { width: 22px; height: 36px; border: 1.5px solid var(--hairline-2); border-radius: 999px; position: relative; }
.hero-scroll span::after { content: ''; position: absolute; top: 7px; inset-inline: 0; margin: auto; width: 3px; height: 7px; border-radius: 2px; background: var(--gold); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translateY(0)} 30%{opacity:1} 70%{opacity:1} 100%{opacity:0;transform:translateY(9px)} }

/* Kur rozeti mikro-kart (hero köşesi) */
.hero-chip {
  position: absolute; z-index: 3; inset-block-start: 108px; inset-inline-end: var(--pad);
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 15px; border-radius: 12px;
  background: rgba(23,20,15,.6); backdrop-filter: blur(10px); border: 1px solid var(--hairline);
  font-size: 12.5px; color: var(--text-2);
}
.hero-chip b { color: var(--gold-hi); font-weight: 600; }
.hero-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(75,181,131,.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(75,181,131,.5)} 70%{box-shadow:0 0 0 8px rgba(75,181,131,0)} 100%{box-shadow:0 0 0 0 rgba(75,181,131,0)} }

/* =========================================================
   ORTAK BÖLÜM
   ========================================================= */
.section { position: relative; padding-block: clamp(52px, 6.5vw, 88px); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(38px, 5vw, 60px); }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 4.6vw, 50px); line-height: 1.1; margin-bottom: 18px; }
.section-head p { color: var(--text-2); font-size: clamp(15px, 1.8vw, 17px); }
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--hairline-2), transparent); max-width: var(--maxw); margin-inline: auto; }

/* Güven şeridi */
.trust { padding-block: 30px; border-block: 1px solid var(--hairline); background: rgba(23,20,15,.4); }
.trust-track { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); }
.trust-item svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

/* Nasıl çalışır */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative; padding: 34px 28px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--hairline); overflow: hidden;
}
.step::before { content: ''; position: absolute; inset: 0; background: radial-gradient(400px 200px at 50% -30%, var(--gold-soft), transparent 70%); opacity: 0; transition: opacity .4s; }
.step:hover::before { opacity: 1; }
.step-num { font-family: var(--font-display); font-size: 46px; font-weight: 600; color: transparent; -webkit-text-stroke: 1px var(--hairline-2); line-height: 1; margin-bottom: 18px; }
.step h3 { font-family: var(--font-display); font-size: 25px; font-weight: 600; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--text-2); }

/* =========================================================
   ÖZELLİK VİTRİNİ (canlı demolar)
   ========================================================= */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: center; margin-block: clamp(38px, 5.5vw, 68px); }
.feature-row:first-of-type { margin-top: 0; } .feature-row:last-of-type { margin-bottom: 0; }
.feature-row:nth-child(even) .feature-text { order: 2; }
.feature-text .eyebrow { margin-bottom: 16px; }
.feature-text h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(26px, 3.4vw, 38px); line-height: 1.12; margin-bottom: 16px; }
.feature-text p { color: var(--text-2); font-size: 16px; margin-bottom: 22px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.feature-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--text-2); }
.feature-list li svg { width: 19px; height: 19px; color: var(--gold); flex: none; margin-top: 1px; }

/* Demo çerçeve (cam kart) */
.demo-card {
  position: relative; border-radius: 20px; padding: 22px; overflow: hidden;
  background: linear-gradient(180deg, rgba(30,26,20,.9), rgba(16,14,12,.92));
  border: 1px solid var(--hairline-2);
  box-shadow: 0 40px 90px -40px #000, inset 0 1px 0 rgba(255,255,255,.04);
}
.demo-card::after { content: ''; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(600px 300px at 80% -10%, var(--gold-soft), transparent 60%); pointer-events: none; }
.demo-label { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.demo-label .demo-dots { display: inline-flex; gap: 5px; }
.demo-label .demo-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--hairline); }

/* Fiyat motoru demosu */
.pd-input { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 16px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--hairline); margin-bottom: 18px; }
.pd-input label { font-size: 13px; color: var(--text-2); }
.pd-slider { flex: 1; }
.pd-cost { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--gold-hi); min-width: 92px; text-align: end; }
input[type=range] { -webkit-appearance: none; appearance: none; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--hairline)); outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--gold-hi); cursor: pointer; box-shadow: 0 0 0 4px rgba(232,212,139,.18); }
input[type=range]::-moz-range-thumb { width: 18px; height: 18px; border: none; border-radius: 50%; background: var(--gold-hi); cursor: pointer; box-shadow: 0 0 0 4px rgba(232,212,139,.18); }
.pd-tiers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.pd-tier { text-align: center; padding: 12px 6px; border-radius: 11px; background: var(--surface); border: 1px solid var(--hairline); }
.pd-tier .g { font-size: 11px; color: var(--text-3); letter-spacing: .04em; }
.pd-tier .p { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--text); margin-top: 3px; }
.pd-tier .try { font-size: 10.5px; color: var(--gold); margin-top: 2px; }

/* Sipariş akışı demosu (telefon) */
.phone { max-width: 300px; margin-inline: auto; border-radius: 34px; padding: 12px; background: linear-gradient(160deg, #221d16, #0c0b09); border: 1px solid var(--hairline-2); box-shadow: 0 40px 80px -30px #000; }
.phone-screen { border-radius: 24px; background: var(--bg); overflow: hidden; border: 1px solid var(--hairline); }
.phone-bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--hairline); font-size: 12px; color: var(--text-3); }
.phone-body { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.ord-line { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.ord-line .n { color: var(--text-2); } .ord-line .v { color: var(--text); font-family: var(--font-display); }
.ord-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 10px; border-top: 1px solid var(--hairline); }
.ord-total .big { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--gold-hi); }
.wa-pill { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px; border-radius: 11px; background: #1f8f4d; color: #fff; font-size: 13px; font-weight: 600; margin-top: 4px; }
.copy-pill { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-radius: 10px; background: var(--surface); border: 1px solid var(--hairline); font-size: 12px; }
.copy-pill .mono { color: var(--text); } .copy-pill svg { width: 15px; height: 15px; color: var(--gold); }

/* Dil demosu */
.lang-demo { display: flex; flex-direction: column; gap: 12px; }
.lang-demo .ld-title { font-family: var(--font-display); font-size: 30px; font-weight: 600; text-align: center; transition: opacity .4s; }
.lang-demo .ld-row { display: flex; justify-content: space-between; padding: 12px 14px; border-radius: 10px; background: var(--surface); border: 1px solid var(--hairline); font-size: 13px; }
.lang-demo.rtl { direction: rtl; }
.lang-demo .ld-tabs { display: flex; gap: 6px; justify-content: center; margin-top: 6px; }
.lang-demo .ld-tabs button { padding: 5px 12px; border-radius: 999px; font-size: 12px; color: var(--text-3); border: 1px solid var(--hairline); }
.lang-demo .ld-tabs button.active { color: #17130a; background: var(--gold); border-color: var(--gold); font-weight: 600; }

/* Palet demosu */
.pal-demo { display: flex; flex-direction: column; gap: 16px; }
.pal-swatches { display: flex; gap: 10px; justify-content: center; }
.pal-swatches button { width: 40px; height: 40px; border-radius: 50%; border: 2px solid transparent; transition: transform .25s, border-color .25s; position: relative; }
.pal-swatches button.active { border-color: var(--text); transform: scale(1.12); }
.pal-preview { border-radius: 14px; padding: 20px; border: 1px solid var(--pal-accent, var(--gold)); background: linear-gradient(180deg, var(--surface), var(--bg-2)); transition: border-color .5s; }
.pal-preview .pp-brand { font-family: var(--font-display); font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--pal-accent, var(--gold)); transition: color .5s; }
.pal-preview .pp-name { font-family: var(--font-display); font-size: 24px; margin: 6px 0 14px; }
.pal-preview .pp-chips { display: flex; gap: 8px; }
.pal-preview .pp-chip { flex: 1; text-align: center; padding: 9px 4px; border-radius: 9px; background: color-mix(in srgb, var(--pal-accent, var(--gold)) 12%, transparent); color: var(--pal-accent, var(--gold)); font-size: 13px; font-family: var(--font-display); transition: .5s; }

/* Excel demosu */
.xl-demo { display: flex; flex-direction: column; gap: 14px; }
.xl-file { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 12px; border: 1px dashed var(--hairline-2); background: var(--bg-2); }
.xl-file svg { width: 26px; height: 26px; color: var(--gold); }
.xl-file .xf-name { font-size: 13px; } .xl-file .xf-meta { font-size: 11px; color: var(--text-3); }
.xl-rows { display: flex; flex-direction: column; gap: 6px; }
.xl-rows .xr { display: flex; justify-content: space-between; padding: 9px 12px; border-radius: 8px; background: var(--surface); font-size: 12.5px; opacity: 0; transform: translateY(8px); }
.xl-rows .xr.in { opacity: 1; transform: none; transition: .4s var(--ease); }
.xl-rows .xr .ok { color: var(--ok); }
.xl-count { text-align: center; font-family: var(--font-display); font-size: 15px; color: var(--gold-hi); }

/* =========================================================
   PAKETLER
   ========================================================= */
.pricing { position: relative; }
.pricing-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.pricing-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.pricing-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg), rgba(11,10,9,.6), var(--bg)); }
.pricing .container { position: relative; z-index: 1; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column; padding: 34px 28px; border-radius: 20px;
  background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--hairline);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.plan:hover { transform: translateY(-6px); border-color: var(--hairline-2); box-shadow: 0 40px 80px -40px #000; }
.plan.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold-soft), 0 40px 90px -40px var(--gold-glow); }
.plan.featured::before { content: attr(data-badge); position: absolute; top: -12px; inset-inline: 0; margin-inline: auto; width: max-content; padding: 5px 16px; border-radius: 999px; background: linear-gradient(96deg, var(--gold), var(--gold-hi)); color: #17130a; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.plan-name { font-family: var(--font-display); font-size: 26px; font-weight: 600; }
.plan-desc { font-size: 13px; color: var(--text-3); margin-top: 4px; min-height: 34px; }
.plan-price { margin: 20px 0; display: flex; align-items: baseline; gap: 6px; }
.plan-price .amt { font-family: var(--font-display); font-size: 46px; font-weight: 700; color: var(--text); }
.plan-price .per { font-size: 13px; color: var(--text-3); }
.plan-price .free { font-family: var(--font-display); font-size: 40px; font-weight: 700; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 6px 0 26px; }
.plan ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-2); }
.plan ul li svg { width: 18px; height: 18px; flex: none; margin-top: 1px; color: var(--gold); }
.plan ul li.off { color: var(--text-3); } .plan ul li.off svg { color: var(--text-3); opacity: .5; }
.plan .btn { margin-top: auto; width: 100%; }

/* =========================================================
   DEMO CTA / SSS / KAPANIŞ
   ========================================================= */
.demo-band { text-align: center; }
.demo-band .demo-inner { position: relative; padding: clamp(44px, 7vw, 80px) var(--pad); border-radius: 24px; border: 1px solid var(--hairline-2); overflow: hidden; background: linear-gradient(180deg, var(--surface), var(--bg-2)); }
.demo-band .demo-inner::before { content: ''; position: absolute; inset: 0; background: url(../img/tex-1.webp) center/cover no-repeat; opacity: .35; }
.demo-band .demo-inner::after { content: ''; position: absolute; inset: 0; background: radial-gradient(700px 340px at 50% 30%, transparent, rgba(16,14,12,.85) 78%), linear-gradient(180deg, rgba(23,20,15,.5), rgba(16,14,12,.6)); }
.demo-band h2 { position: relative; z-index: 1; font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 600; margin-bottom: 14px; }
.demo-band p { position: relative; z-index: 1; color: var(--text-2); max-width: 520px; margin: 0 auto 30px; }
.demo-band .btn { position: relative; z-index: 1; }

/* SSS */
.faq-list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--hairline); border-radius: 14px; background: var(--surface); overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: var(--hairline-2); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; text-align: start; font-size: 16px; font-weight: 500; color: var(--text); }
.faq-q .faq-ic { width: 22px; height: 22px; flex: none; position: relative; }
.faq-q .faq-ic::before, .faq-q .faq-ic::after { content: ''; position: absolute; inset-block: 0; margin: auto; inset-inline: 0; background: var(--gold); transition: transform .3s; }
.faq-q .faq-ic::before { width: 13px; height: 1.5px; margin-inline: auto; } .faq-q .faq-ic::after { width: 1.5px; height: 13px; margin-inline: auto; }
.faq-item.open .faq-ic::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 22px 22px; color: var(--text-2); font-size: 14.5px; line-height: 1.7; }

/* Kapanış */
.finale { text-align: center; position: relative; }
.finale h2 { font-family: var(--font-display); font-size: clamp(34px, 6vw, 68px); font-weight: 600; line-height: 1.06; margin-bottom: 20px; }
.finale p { color: var(--text-2); max-width: 500px; margin: 0 auto 34px; }

/* Footer */
.site-footer { border-top: 1px solid var(--hairline); padding-block: 46px 34px; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: center; }
.footer-brand { font-family: var(--font-display); font-size: 21px; letter-spacing: .12em; font-weight: 700; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; font-size: 14px; color: var(--text-2); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { margin-top: 22px; font-size: 12.5px; color: var(--text-3); text-align: center; }

/* =========================================================
   MOTION — reveal
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
.float { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-actions .navlink-login, .header-actions .cta-start { display: none; }
  .steps { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .feature-row { grid-template-columns: 1fr; gap: 30px; }
  .feature-row:nth-child(even) .feature-text { order: 0; }
  .hero-chip { display: none; }

  /* Mobil menü paneli */
  .mobile-menu { position: fixed; inset: 0; z-index: 99; background: rgba(11,10,9,.97); backdrop-filter: blur(10px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px; opacity: 0; visibility: hidden; transition: .3s; }
  .mobile-menu.open { opacity: 1; visibility: visible; }
  .mobile-menu a { font-family: var(--font-display); font-size: 26px; color: var(--text); }
  .mobile-menu .btn { margin-top: 10px; }
}
@media (min-width: 901px) { .mobile-menu { display: none; } }

@media (max-width: 560px) {
  .pd-tiers { grid-template-columns: repeat(5, 1fr); gap: 5px; }
  .pd-tier { padding: 9px 3px; } .pd-tier .p { font-size: 16px; }
  .pd-tier .g { font-size: 9.5px; } .pd-tier .try { font-size: 9px; }
  .hero-cta .btn { flex: 1; }
  .trust-track { gap: 12px 22px; }
  .hero h1 { font-size: clamp(27px, 7.4vw, 44px); }
  .hero-sub { font-size: 15px; }
  .section-head h2, .feature-text h3 { letter-spacing: -.01em; }
}

/* RTL — Arapça */
html[dir="rtl"] { }
html[dir="rtl"] .eyebrow::before { background: linear-gradient(270deg, transparent, var(--gold)); }
html[dir="rtl"] body { font-family: 'Tajawal', var(--font-body); }
html[dir="rtl"] .display, html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] .brand { font-family: 'Amiri', var(--font-display); }
html[dir="rtl"] .mono { direction: ltr; unicode-bidi: isolate; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  #particles { display: none; }
}

/* ---------- Giriş modalı ---------- */
.login-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.login-modal[hidden] { display: none; }
.login-backdrop { position: absolute; inset: 0; background: rgba(6,5,4,.72); backdrop-filter: blur(6px); animation: fade .3s var(--ease); }
.login-card { position: relative; width: 100%; max-width: 420px; background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--hairline-2); border-radius: 20px; padding: 34px 30px; box-shadow: 0 50px 100px -30px #000; animation: pop .35s var(--ease); }
@keyframes fade { from { opacity: 0; } } @keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.97); } }
.login-close { position: absolute; top: 14px; inset-inline-end: 16px; width: 34px; height: 34px; border-radius: 9px; font-size: 22px; color: var(--text-3); transition: color .2s, background .2s; }
.login-close:hover { color: var(--text); background: var(--surface-2); }
.login-card h3 { font-size: 26px; font-weight: 600; margin-bottom: 8px; }
.login-p { color: var(--text-2); font-size: 14px; margin-bottom: 22px; }
.login-field { display: flex; align-items: stretch; border: 1px solid var(--hairline-2); border-radius: 12px; overflow: hidden; background: var(--bg-2); transition: border-color .25s; }
.login-field:focus-within { border-color: var(--gold); }
.login-field input { flex: 1; min-width: 0; padding: 14px 16px; background: none; border: none; color: var(--text); font-size: 15px; outline: none; }
.login-suffix { display: flex; align-items: center; padding-inline: 14px; background: var(--surface-2); color: var(--text-3); font-size: 13px; white-space: nowrap; }
.login-hint { font-size: 12.5px; color: var(--text-3); margin: 12px 2px 20px; word-break: break-all; }
.login-hint b { color: var(--gold); }
.login-go { width: 100%; }
html[dir="rtl"] .login-field { direction: ltr; }

/* ---------- Aylık / Yıllık geçişi ---------- */
.billing-toggle { position: relative; display: flex; width: -moz-fit-content; width: fit-content; gap: 4px; margin: -18px auto clamp(40px,6vw,60px); padding: 5px; border-radius: 999px; border: 1px solid var(--hairline-2); background: var(--bg-2); }
.bt-opt { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; padding: 9px 20px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--text-2); transition: color .3s; white-space: nowrap; }
.bt-opt.active { color: #17130a; }
.bt-save { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 999px; background: var(--gold-soft); color: var(--gold-hi); transition: background .3s, color .3s; }
.bt-opt.active .bt-save { background: rgba(23,19,10,.22); color: #17130a; }
.bt-slider { position: absolute; z-index: 0; top: 5px; bottom: 5px; border-radius: 999px; background: linear-gradient(96deg, var(--gold), var(--gold-hi)); transition: left .32s var(--ease), width .32s var(--ease); box-shadow: 0 6px 20px -6px var(--gold-glow); }
.plan-note { font-size: 12.5px; color: var(--text-3); margin-top: -12px; margin-bottom: 22px; min-height: 18px; transition: opacity .25s; }
.plan-note b { color: var(--gold); font-weight: 600; }
