/* ============================================================
   FilmTime — Kurumsal Tanıtım & Fiyat Teklifi
   Koyu premium tema (panelle birebir uyumlu)
   ============================================================ */

:root {
  /* Zemin & yüzeyler */
  --bg-0: #0a0d12;
  --bg-canvas: #0d1117;
  --surface: #151b24;
  --surface-2: #1b2230;
  --border: #283142;
  --border-soft: rgba(40, 49, 66, 0.6);

  /* Metin */
  --fg: #e7edf5;
  --muted: #9aa7b8;
  --faint: #7e8a9c;

  /* Vurgular */
  --teal: #2dd4bf;
  --teal-dim: rgba(45, 212, 191, 0.14);
  --blue: #7c93ff;
  --gold: #f7a41c;
  --gold-2: #f9b948;
  --gold-dim: rgba(247, 164, 28, 0.14);

  /* Sistem */
  --radius: 14px;
  --radius-lg: 20px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-head: 'Sora', 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-canvas);
  color: var(--fg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
strong { color: var(--fg); font-weight: 600; }

/* numeric tabular */
.price__num, .gcard__v { font-variant-numeric: tabular-nums; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: #0a0d12; padding: 10px 16px;
  border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ============================================================
   AURORA BACKGROUND
   ============================================================ */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--bg-0);
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  will-change: transform;
}
.blob--teal  { width: 52vw; height: 52vw; background: var(--teal);  top: -14vw; left: -8vw;  opacity: 0.22; }
.blob--blue  { width: 46vw; height: 46vw; background: var(--blue);  top: 30vh;  right: -12vw; opacity: 0.16; }
.blob--gold  { width: 40vw; height: 40vw; background: var(--gold);  bottom: -16vw; left: 28vw; opacity: 0.12; }

@media (min-width: 768px) {
  .blob--teal { animation: drift1 26s var(--ease) infinite alternate; }
  .blob--blue { animation: drift2 32s var(--ease) infinite alternate; }
  .blob--gold { animation: drift3 30s var(--ease) infinite alternate; }
}
@keyframes drift1 { to { transform: translate(6vw, 8vh) scale(1.12); } }
@keyframes drift2 { to { transform: translate(-7vw, -5vh) scale(1.08); } }
@keyframes drift3 { to { transform: translate(4vw, -7vh) scale(1.15); } }

.grid-veil {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(231, 237, 245, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(231, 237, 245, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 35%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 35%, transparent 75%);
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.section {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(64px, 9vw, 130px) clamp(20px, 5vw, 40px);
  position: relative;
}
.section__head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 22px;
}

.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(45, 212, 191, 0.28);
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.tag--gold  { color: var(--gold-2); background: var(--gold-dim); border-color: rgba(247, 164, 28, 0.3); }
.tag--muted { color: var(--muted); background: rgba(154, 167, 184, 0.08); border-color: var(--border); }

.h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--fg);
}
.h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--fg);
}
.lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--muted); margin: 0 0 22px; }
.lead--accent { color: var(--fg); }
.lead--accent strong { color: var(--teal); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --b: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.2s;
  white-space: nowrap;
  min-height: 44px;
}
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--xl { padding: 18px 40px; font-size: 1.1rem; border-radius: 14px; }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #15100a;
  box-shadow: 0 8px 26px -8px rgba(247, 164, 28, 0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px -8px rgba(247, 164, 28, 0.7), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn--ghost {
  background: rgba(255,255,255,0.02);
  color: var(--fg);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-dim);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(13, 17, 23, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border-soft);
}
.nav__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  height: 68px;
  padding: 0 clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__links { display: none; gap: 30px; }
.nav__links a {
  font-size: 0.95rem;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--teal); transition: width 0.25s var(--ease);
}
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 14px; }

/* Wordmark */
.wm { display: inline-flex; flex-direction: column; line-height: 1; }
.wm__the {
  font-family: var(--font-head); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.08em; color: var(--faint); margin-bottom: 1px;
}
.wm__main {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 800;
  letter-spacing: -0.04em;
}
.wm__film { color: var(--gold); }
.wm__time { color: var(--fg); }
.wm--sm .wm__main { font-size: 1.05rem; }
.wm--sm .wm__the { font-size: 0.52rem; }

/* Burger */
.nav__burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px;
  background: transparent; border: 1px solid var(--border); border-radius: 11px; cursor: pointer;
}
.nav__burger span { display: block; height: 2px; background: var(--fg); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px clamp(20px, 5vw, 40px) 24px;
  background: rgba(13, 17, 23, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}
/* hidden attribute must win over the display:flex above */
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 13px 4px; color: var(--muted); font-size: 1.05rem; border-bottom: 1px solid var(--border-soft); }
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu__cta { margin-top: 14px; justify-content: center; }

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(120px, 16vh, 180px) clamp(20px, 5vw, 40px) clamp(60px, 9vw, 110px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 7vw, 72px);
  align-items: center;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 26px;
  color: var(--fg);
}
.hero__sub {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 0 34px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Browser mockup frame ---------- */
.mock {
  margin: 0;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(45, 212, 191, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  position: relative;
}
.mock__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-soft);
}
.dot { width: 11px; height: 11px; border-radius: 50%; background: #3a4456; }
.dot:nth-child(1) { background: #e06c5e; }
.dot:nth-child(2) { background: #e0b34e; }
.dot:nth-child(3) { background: #5ec27a; }
.mock__addr {
  margin-left: 12px; font-size: 0.78rem; color: var(--faint);
  background: rgba(0,0,0,0.3); padding: 4px 14px; border-radius: 8px;
  border: 1px solid var(--border-soft); font-family: var(--font-body);
}
.mock img { width: 100%; }

.mock--tilt { transform: perspective(1600px) rotateY(-7deg) rotateX(3deg); transition: transform 0.6s var(--ease); }
.mock--tilt:hover { transform: perspective(1600px) rotateY(-2deg) rotateX(1deg) translateY(-4px); }

/* ============================================================
   2. PROBLEM -> SOLUTION
   ============================================================ */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
}
.problem__head .h2 { margin-top: 8px; }
.problem__body { display: flex; flex-direction: column; }

.chips {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: clamp(40px, 6vw, 60px);
  padding-top: clamp(32px, 4vw, 44px);
  border-top: 1px solid var(--border-soft);
}
.chip {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg);
}

/* ============================================================
   3. FEATURES (asymmetric alternating)
   ============================================================ */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  margin-bottom: clamp(56px, 9vw, 110px);
}
.feature:last-child { margin-bottom: 0; }
.feature__label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 16px;
}
.feature__text p { color: var(--muted); font-size: 1.06rem; margin: 0; max-width: 46ch; }
.feature__text strong { color: var(--teal); }
.feature__visual { width: 100%; }

@media (min-width: 880px) {
  .feature { grid-template-columns: 0.85fr 1.15fr; }
  .feature--imgright .feature__text { order: 1; }
  .feature--imgright .feature__visual { order: 2; }
  .feature--imgleft .feature__text { order: 2; }
  .feature--imgleft .feature__visual { order: 1; }
  /* asymmetric overflow / cinematic */
  .feature--imgright .feature__visual { margin-right: clamp(-40px, -3vw, -10px); }
  .feature--imgleft  .feature__visual { margin-left: clamp(-40px, -3vw, -10px); }
}

/* ============================================================
   4. WHATSAPP — flow diagram
   ============================================================ */
.wa__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 32px);
}
@media (min-width: 880px) { .wa__grid { grid-template-columns: 1fr 1fr; } }

.wa-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 40px);
  position: relative;
  overflow: hidden;
}
.wa-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 200px at 100% 0%, var(--teal-dim), transparent 70%);
  pointer-events: none;
}
.wa-card p { color: var(--muted); margin: 0 0 28px; position: relative; }

.flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.flow__node {
  display: flex; align-items: center; gap: 13px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), border-color 0.4s;
}
.flow.is-active .flow__node { opacity: 1; transform: none; }
.flow.is-active .flow__node:nth-child(3) { transition-delay: 0.18s; }
.flow.is-active .flow__node:nth-child(5) { transition-delay: 0.36s; }

.flow__node--accent {
  border-color: rgba(45, 212, 191, 0.4);
  background: linear-gradient(180deg, var(--teal-dim), var(--surface-2));
  box-shadow: 0 0 0 1px rgba(45,212,191,0.1), 0 8px 30px -12px rgba(45,212,191,0.4);
}
.flow__icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(0,0,0,0.25);
  color: var(--teal);
  border: 1px solid var(--border-soft);
}
.flow__node--accent .flow__icon { color: var(--gold-2); }
.flow__label { font-size: 0.95rem; color: var(--fg); font-weight: 500; }

.flow__arrow {
  align-self: center;
  width: 2px; height: 26px;
  margin: 4px 0;
  background: linear-gradient(180deg, var(--teal), transparent);
  position: relative;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.flow.is-active .flow__arrow { opacity: 0.7; }
.flow.is-active .flow__arrow:nth-child(2) { transition-delay: 0.12s; }
.flow.is-active .flow__arrow:nth-child(4) { transition-delay: 0.3s; }
.flow__arrow::after {
  content: ""; position: absolute; bottom: -1px; left: 50%; transform: translateX(-50%);
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid var(--teal); opacity: 0.7;
}

.flow--mini { margin-top: 28px; }
.flow--mini .flow__node { padding: 11px 16px; }
.flow--mini .flow__label { font-size: 0.9rem; }

/* ============================================================
   5. WARRANTY CARD
   ============================================================ */
.warranty__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
  align-items: center;
}
@media (min-width: 920px) { .warranty__grid { grid-template-columns: 1.05fr 0.95fr; } }
.warranty__copy .lead strong { color: var(--gold-2); }

.warranty__visual { display: flex; justify-content: center; }
.gcard {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1.586;       /* credit-card ratio */
  border-radius: 18px;
  padding: 26px 28px;
  background:
    linear-gradient(135deg, #1c2433 0%, #131922 60%, #0f141d 100%);
  border: 1px solid var(--border);
  box-shadow:
    0 30px 70px -28px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.gcard:hover { transform: translateY(-6px) rotate(-0.5deg); }
.gcard__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(300px 160px at 12% 0%, var(--gold-dim), transparent 70%),
    radial-gradient(360px 200px at 100% 100%, var(--teal-dim), transparent 70%);
}
.gcard__top { display: flex; align-items: flex-start; justify-content: space-between; position: relative; }
.gcard__chip {
  width: 44px; height: 32px; border-radius: 7px;
  background: linear-gradient(135deg, var(--gold-2), #b97a12);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.18);
  position: relative;
}
.gcard__chip::after {
  content: ""; position: absolute; inset: 6px 8px;
  background-image: linear-gradient(90deg, rgba(0,0,0,0.25) 1px, transparent 1px);
  background-size: 8px 100%;
}
.gcard__title {
  position: relative;
  font-family: var(--font-head); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 0.78rem; color: var(--muted); margin: 0;
}
.gcard__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; position: relative; }
.gcard__k { display: block; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 4px; }
.gcard__v { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.1rem, 3vw, 1.4rem); color: var(--fg); letter-spacing: 0.02em; }
.gcard__qr {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px;
  width: 56px; height: 56px; padding: 6px;
  background: rgba(255,255,255,0.9); border-radius: 8px;
}
.gcard__qr span { background: #0a0d12; border-radius: 1px; }
.gcard__qr span:nth-child(2),
.gcard__qr span:nth-child(3),
.gcard__qr span:nth-child(6),
.gcard__qr span:nth-child(9),
.gcard__qr span:nth-child(12),
.gcard__qr span:nth-child(15) { background: transparent; }

/* ============================================================
   6. ROADMAP
   ============================================================ */
.roadmap__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 28px);
}
@media (min-width: 720px) { .roadmap__cols { grid-template-columns: 1fr 1fr; } }

.rm-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 38px);
}
.rm-col--live { box-shadow: inset 3px 0 0 var(--teal); }
.rm-col--soon { box-shadow: inset 3px 0 0 var(--gold); }
.rm-col__title {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.2rem;
  margin: 0 0 22px; color: var(--fg);
}
.rm-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.rm-dot--live { background: var(--teal); box-shadow: 0 0 0 4px var(--teal-dim); }
.rm-dot--soon { background: var(--gold); box-shadow: 0 0 0 4px var(--gold-dim); }
.rm-list li {
  position: relative; padding: 11px 0 11px 28px;
  color: var(--muted); font-size: 1rem;
  border-bottom: 1px solid var(--border-soft);
}
.rm-list li:last-child { border-bottom: 0; }
.rm-list li::before {
  content: ""; position: absolute; left: 4px; top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 50%;
}
.rm-col--live .rm-list li::before { background: var(--teal); }
.rm-col--soon .rm-list li::before { background: var(--faint); border: 1px solid var(--gold); background: transparent; }

.roadmap__note {
  margin: clamp(28px, 4vw, 40px) 0 0;
  color: var(--faint);
  font-size: 0.98rem;
  max-width: 760px;
}

/* ============================================================
   7. PRICING
   ============================================================ */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.5vw, 26px);
  align-items: stretch;
}
@media (min-width: 920px) {
  .pricing__grid { grid-template-columns: 1fr 1.12fr 1fr; align-items: center; }
}

.price {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 38px);
  position: relative;
  height: 100%;
}
.price--featured {
  border-color: rgba(247, 164, 28, 0.45);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  box-shadow:
    0 0 0 1px rgba(247,164,28,0.15),
    0 30px 70px -30px rgba(247, 164, 28, 0.35);
}
@media (min-width: 920px) { .price--featured { transform: scale(1.04); z-index: 2; } }

.price__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-head); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #15100a; padding: 6px 16px; border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(247,164,28,0.6);
}
.price__name {
  font-family: var(--font-head); font-weight: 600; font-size: 1.15rem;
  margin: 0 0 14px; color: var(--fg);
}
.price__amount { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin: 0 0 24px; }
.price__num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.7rem); letter-spacing: -0.02em; color: var(--fg); line-height: 1;
}
.price--featured .price__num { color: var(--gold-2); }
.price__num--text { font-size: clamp(1.6rem, 4vw, 2rem); }
.price__per { font-size: 0.95rem; color: var(--faint); }

.price__list { display: flex; flex-direction: column; gap: 13px; margin: 0 0 24px; flex: 1; }
.price__list li {
  position: relative; padding-left: 28px; color: var(--muted); font-size: 0.98rem; line-height: 1.45;
}
.price__list li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--teal-dim);
  border: 1px solid rgba(45,212,191,0.4);
}
.price__list li::after {
  content: ""; position: absolute; left: 5px; top: 8px;
  width: 5px; height: 8px; border: solid var(--teal);
  border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.price--featured .price__list li::before { background: var(--gold-dim); border-color: rgba(247,164,28,0.45); }
.price--featured .price__list li::after { border-color: var(--gold-2); }

.price__highlight {
  font-size: 0.9rem; color: var(--gold-2);
  background: var(--gold-dim);
  border: 1px solid rgba(247,164,28,0.25);
  border-radius: 10px; padding: 12px 14px; margin: 0 0 22px;
}
.price__cta { width: 100%; }

/* ============================================================
   8. CLOSING
   ============================================================ */
.closing { text-align: center; }
.closing__inner {
  max-width: 760px; margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 8vw, 88px) clamp(28px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.closing__inner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(500px 240px at 50% 0%, var(--gold-dim), transparent 70%),
    radial-gradient(500px 300px at 50% 120%, var(--teal-dim), transparent 70%);
  pointer-events: none;
}
.closing__title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.9rem, 5vw, 3.2rem); line-height: 1.06;
  letter-spacing: -0.03em; margin: 0 0 16px; position: relative; color: var(--fg);
}
.closing__sub { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); margin: 0 0 36px; position: relative; }
.closing .btn { position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border-soft); }
.footer__inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 48px clamp(20px, 5vw, 40px);
  display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
}
.footer__by { display: flex; flex-direction: column; gap: 4px; color: var(--muted); font-size: 0.95rem; margin: 0; }
.footer__by a { color: var(--teal); transition: color 0.2s; width: fit-content; }
.footer__by a:hover { color: var(--gold-2); }
.footer__copy { color: var(--faint); font-size: 0.88rem; margin: 0; }

@media (min-width: 720px) {
  .footer__inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer__by { flex: 1; padding-left: 32px; }
}

/* ============================================================
   BENEFITS STRIP (problem section)
   ============================================================ */
.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 26px);
  margin-top: clamp(40px, 6vw, 60px);
}
@media (min-width: 600px)  { .benefits { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .benefits { grid-template-columns: repeat(4, 1fr); } }
.benefit {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.benefit__ic {
  display: inline-grid; place-items: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--teal-dim); color: var(--teal);
  border: 1px solid rgba(45,212,191,0.25);
  margin-bottom: 16px;
}
.benefit h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; margin: 0 0 8px; color: var(--fg); }
.benefit p  { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.5; }

/* ============================================================
   WHATSAPP — intro + önerilen özellikler grid
   ============================================================ */
.wa-intro { max-width: 840px; margin-bottom: clamp(34px, 5vw, 50px); }
.wa-intro strong { color: var(--gold-2); }

.wa-sub { margin: clamp(56px, 8vw, 86px) 0 clamp(26px, 4vw, 38px); max-width: 760px; }
.wa-sub .feature__label { display: inline-block; }
.wa-sub .h3 { margin: 6px 0 12px; }
.wa-sub__lead { color: var(--muted); margin: 0; font-size: 1.04rem; }

.wa-uses {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 22px);
}
@media (min-width: 620px) { .wa-uses { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .wa-uses { grid-template-columns: repeat(3, 1fr); } }

.wa-use {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.wa-use:hover {
  transform: translateY(-4px);
  border-color: rgba(45,212,191,0.4);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
}
.wa-use__ic {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(0,0,0,0.25); color: var(--teal);
  border: 1px solid var(--border-soft);
  margin-bottom: 15px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.wa-use:hover .wa-use__ic { color: var(--gold-2); border-color: rgba(247,164,28,0.3); }
.wa-use__t { font-family: var(--font-head); font-weight: 600; font-size: 1.04rem; margin: 0 0 8px; color: var(--fg); }
.wa-use__d { margin: 0; color: var(--muted); font-size: 0.94rem; line-height: 1.5; }

.wa-note {
  margin: clamp(32px, 4vw, 46px) 0 0;
  max-width: 820px;
  color: var(--faint);
  font-size: 0.98rem;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }

/* kinetic title words */
.kinetic .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.kinetic.is-visible .word { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE — DESKTOP NAV
   ============================================================ */
@media (min-width: 920px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
  .mobile-menu { display: none !important; }
}

@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  .problem__grid { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .kinetic .word, .flow__node, .flow__arrow { opacity: 1 !important; transform: none !important; }
  .mock--tilt { transform: none !important; }
  .blob { animation: none !important; }
}
