:root {
  --bg: #050b0b;
  --bg-soft: #0d1f1f;
  --text: #ecf6f6;
  --muted: #95a7a7;
  --teal: #00d9a6;
  --gold: #d4a54b;
  --line: rgba(255, 255, 255, 0.14);
  --card: rgba(11, 22, 22, 0.72);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 20% -10%, #123030 0%, var(--bg) 48%);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body { overflow-x: hidden; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 120;
  background: rgba(255,255,255,0.08);
}

#scroll-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.topbar {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 110;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px clamp(14px, 3vw, 40px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  background: rgba(5, 12, 12, 0.56);
  transition: transform .35s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
}

.brand-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--teal);
  box-shadow: 0 0 12px rgba(0, 217, 166, .8);
}

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

.top-links a {
  color: rgba(233,243,243,.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.top-links a:hover { color: #fff; }

main section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

#cine-scroll-space {
  width: 100%;
  margin: 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 130px 0 80px;
  position: relative;
}

.hero-glow {
  position: absolute;
  inset: 10% -10% auto;
  height: 60vh;
  background: radial-gradient(circle at center, rgba(0,217,166,.24), rgba(212,165,75,.08) 45%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 980px; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(239,248,248,.64);
  margin-bottom: 12px;
  font-weight: 600;
}

.hero h1 {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 6.2vw, 92px);
  line-height: 1.05;
  letter-spacing: -.5px;
}

.hero h1 span { color: var(--teal); }

.hero-sub {
  margin: 20px auto 0;
  max-width: 830px;
  color: rgba(228,238,238,.86);
  font-size: clamp(16px, 1.6vw, 23px);
  line-height: 1.6;
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  border-radius: 12px;
  padding: 13px 18px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-solid {
  background: linear-gradient(135deg, #00d9a6, #14b690);
  color: #06231b;
  box-shadow: 0 6px 28px rgba(0,217,166,.22);
}

.btn-outline {
  border-color: rgba(255,255,255,.2);
  color: #e5efef;
  background: rgba(255,255,255,.02);
}

.trust-row {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  font-size: 12px;
  color: rgba(223,235,235,.86);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255,255,255,.03);
}

/* ═══════════════════════════════════════════════════════════
   Flow Highlights — Apple "Get the highlights" gallery style
   Replaces lines 198-415 in index-budur.css
   ═══════════════════════════════════════════════════════════ */

/* ── Section Container ───────────────────────────────────── */
.flow-highlights {
  --flow-peek: clamp(32px, 8vw, 180px);
  --flow-gap: clamp(10px, 1.2vw, 16px);
  --flow-radius: 28px;
  --flow-card-h: auto;
  --flow-card-ratio: 1260 / 680;
  --flow-tab-dur: 5s;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(40px, 5vw, 72px) 0 clamp(48px, 5.6vw, 80px);
  background: var(--bg, #050b0b);
  border-radius: 32px;
  margin-top: 12px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

/* ── Header Row ──────────────────────────────────────────── */
.flow-head-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 92px);
  margin-bottom: clamp(20px, 2.4vw, 28px);
}

.flow-head-row h2 {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--text, #ecf6f6);
}

.flow-film-link {
  flex-shrink: 0;
  color: #2d97ff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(13px, 1.2vw, 18px);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.flow-film-link:hover {
  color: #5eb4ff;
}

/* ── Early Bird Pricing Clone (from /early-bird.html) ───── */
.flow-pricing-clone {
  --cc-bg-base: #0a1a1a;
  --cc-bg-elevated: #0f2020;
  --cc-bg-card: #142828;
  --cc-glass: rgba(255, 255, 255, 0.02);
  --cc-glass-hover: rgba(255, 255, 255, 0.04);
  --cc-text: #ffffff;
  --cc-text-secondary: #b8e0e8;
  --cc-text-muted: #7ba3ab;
  --cc-text-dim: #5a7a82;
  --cc-primary: #009688;
  --cc-primary-hover: #00796b;
  --cc-primary-light: rgba(0, 150, 136, 0.15);
  --cc-accent: #d4a54b;
  --cc-success: #26a69a;
  --cc-danger: #ef5350;
  --cc-border: rgba(255, 255, 255, 0.06);
  --cc-border-hover: rgba(255, 255, 255, 0.1);
  --cc-border-active: rgba(0, 150, 136, 0.3);
  --font-primary: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', Consolas, monospace;
  --starter: #2196f3;

  width: min(1320px, calc(100% - 56px));
  margin: 4rem auto 34px;
  padding: 4px 0 10px;
  font-family: var(--font-primary);
}

.flow-pricing-clone .period-toggle-wrap { text-align: center; margin-bottom: 36px; }
.flow-pricing-clone .period-toggle {
  display: inline-flex;
  background: var(--cc-bg-elevated);
  border: 1px solid var(--cc-border);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}

.flow-pricing-clone .toggle-btn {
  padding: 10px 28px;
  border: none;
  background: transparent;
  color: var(--cc-text-muted);
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-primary);
}

.flow-pricing-clone .toggle-btn:hover { color: var(--cc-text); }
.flow-pricing-clone .toggle-btn.active {
  background: var(--cc-primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 150, 136, 0.3);
}

.flow-pricing-clone .toggle-save {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  font-weight: 700;
}

.flow-pricing-clone .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.flow-pricing-clone .pricing-card {
  background: var(--cc-bg-card);
  border: 1px solid var(--cc-border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.flow-pricing-clone .pricing-card:hover { transform: translateY(-4px); }
.flow-pricing-clone .pricing-card.starter { border-color: rgba(33, 150, 243, 0.2); }
.flow-pricing-clone .pricing-card.starter:hover { border-color: var(--starter); box-shadow: 0 8px 40px rgba(33, 150, 243, 0.1); }
.flow-pricing-clone .pricing-card.pro {
  border-color: var(--cc-border-active);
  background: linear-gradient(180deg, var(--cc-primary-light) 0%, var(--cc-bg-card) 40%);
  transform: scale(1.04);
  z-index: 1;
}

.flow-pricing-clone .pricing-card.pro:hover {
  transform: scale(1.04) translateY(-4px);
  border-color: var(--cc-primary);
  box-shadow: 0 12px 50px rgba(0, 150, 136, 0.15);
}

.flow-pricing-clone .pricing-card.elite { border-color: rgba(212, 165, 75, 0.15); }
.flow-pricing-clone .pricing-card.elite:hover { border-color: var(--cc-accent); box-shadow: 0 8px 40px rgba(212, 165, 75, 0.1); }

/* ═══ Waitlist %X indirim rozeti ═══ */
.flow-pricing-clone .waitlist-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(0, 217, 166, 0.18), rgba(0, 150, 136, 0.22));
  border: 1px solid rgba(0, 217, 166, 0.35);
  color: #00d9a6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 6px;
  line-height: 1.4;
}

/* ═══ Detay affordance — expand pill + hint + pulse ═══ */
.flow-pricing-clone .card-expand-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(8, 16, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
}

.flow-pricing-clone .card-expand-btn--left {
  right: auto;
  left: 14px;
}

.flow-pricing-clone .card-expand-btn .expand-arrow {
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.2s;
}

.flow-pricing-clone .pricing-card:hover .card-expand-btn {
  color: #fff;
  background: rgba(8, 16, 16, 0.92);
}

.flow-pricing-clone .pricing-card:hover .card-expand-btn .expand-arrow {
  transform: translate(2px, -2px);
}

.flow-pricing-clone .pricing-card.starter:hover .card-expand-btn {
  border-color: var(--starter, #2196f3);
  color: var(--starter, #2196f3);
}
.flow-pricing-clone .pricing-card.pro:hover .card-expand-btn {
  border-color: var(--cc-primary, #009688);
  color: var(--cc-primary, #009688);
}
.flow-pricing-clone .pricing-card.elite:hover .card-expand-btn {
  border-color: var(--cc-accent, #d4a54b);
  color: var(--cc-accent, #d4a54b);
}

.flow-pricing-clone .card-detail-hint {
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
  color: var(--cc-text-muted, rgba(255, 255, 255, 0.55));
  font-style: italic;
  transition: color 0.2s;
}

.flow-pricing-clone .pricing-card:hover .card-detail-hint {
  color: rgba(255, 255, 255, 0.85);
}

@keyframes cc-card-pulse {
  0%, 100% {
    box-shadow: 0 12px 50px rgba(0, 150, 136, 0.15);
  }
  50% {
    box-shadow: 0 12px 60px rgba(0, 150, 136, 0.45), 0 0 0 3px rgba(0, 150, 136, 0.18);
  }
}

.flow-pricing-clone .pricing-card.pulse-once {
  animation: cc-card-pulse 2s ease-in-out 1;
}

@media (prefers-reduced-motion: reduce) {
  .flow-pricing-clone .pricing-card.pulse-once {
    animation: none;
  }
  .flow-pricing-clone .card-expand-btn,
  .flow-pricing-clone .card-expand-btn .expand-arrow,
  .flow-pricing-clone .card-detail-hint {
    transition: none;
  }
}

.flow-pricing-clone .card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.flow-pricing-clone .card-badge.popular {
  background: linear-gradient(135deg, var(--cc-primary), var(--cc-primary-hover));
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
}

.flow-pricing-clone .card-badge.alpha {
  background: linear-gradient(135deg, var(--cc-accent), #b8862e);
  color: var(--cc-bg-base);
  box-shadow: 0 4px 15px rgba(212, 165, 75, 0.3);
}

.flow-pricing-clone .card-name { font-size: 24px; font-weight: 800; margin-bottom: 4px; line-height: 1.1; }
.flow-pricing-clone .card-name.starter-c { color: var(--starter); }
.flow-pricing-clone .card-name.pro-c { color: var(--cc-primary); }
.flow-pricing-clone .card-name.elite-c { color: var(--cc-accent); }
.flow-pricing-clone .card-tagline { font-size: 13px; color: var(--cc-text-muted); margin-bottom: 24px; }

.flow-pricing-clone .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.flow-pricing-clone .price-eb {
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.flow-pricing-clone .price-eb.starter-c { color: var(--starter); }
.flow-pricing-clone .price-eb.pro-c { color: var(--cc-primary); }
.flow-pricing-clone .price-eb.elite-c { color: var(--cc-accent); }
.flow-pricing-clone .price-period { font-size: 16px; color: var(--cc-text-muted); font-weight: 400; }
.flow-pricing-clone .price-normal { font-size: 14px; color: var(--cc-text-muted); margin-bottom: 4px; }
.flow-pricing-clone .price-normal s { color: var(--cc-danger); text-decoration: line-through; opacity: 0.7; }
.flow-pricing-clone .price-daily { font-size: 13px; color: var(--cc-success); font-weight: 600; margin-bottom: 4px; }
.flow-pricing-clone .price-yearly { font-size: 13px; color: var(--cc-text-muted); margin-bottom: 4px; }

.flow-pricing-clone .save-badge {
  display: inline-block;
  background: rgba(38, 166, 154, 0.12);
  color: var(--cc-success);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.flow-pricing-clone .value-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--cc-glass-hover);
  font-size: 13px;
}

.flow-pricing-clone .value-line:first-child { border-top: none; }
.flow-pricing-clone .value-line .name { color: var(--cc-text-secondary); }
.flow-pricing-clone .value-line .val { font-weight: 600; font-family: var(--font-mono); font-size: 12px; color: var(--cc-text); }

.flow-pricing-clone .value-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 2px solid var(--cc-border);
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
}

.flow-pricing-clone .value-total .val {
  font-family: var(--font-mono);
  text-decoration: line-through;
  color: var(--cc-danger);
  opacity: 0.7;
}

.flow-pricing-clone .card-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cc-border-hover), transparent);
  margin: 20px 0;
}

.flow-pricing-clone .feature-list { list-style: none; margin: 0 0 24px; padding: 0; }
.flow-pricing-clone .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--cc-text-secondary);
}

.flow-pricing-clone .feature-list li .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.flow-pricing-clone .check.on { background: rgba(38, 166, 154, 0.15); color: var(--cc-success); }
.flow-pricing-clone .check.off { background: var(--cc-glass); color: var(--cc-text-dim); font-size: 8px; }

.flow-pricing-clone .cta-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}

.flow-pricing-clone .cta-btn.starter-btn { background: linear-gradient(135deg, var(--starter), #1976d2); color: #fff; }
.flow-pricing-clone .cta-btn.starter-btn:hover { box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3); transform: translateY(-1px); }
.flow-pricing-clone .cta-btn.pro-btn { background: linear-gradient(135deg, var(--cc-primary), var(--cc-primary-hover)); color: #fff; }
.flow-pricing-clone .cta-btn.pro-btn:hover { box-shadow: 0 6px 20px rgba(0, 150, 136, 0.3); transform: translateY(-1px); }
.flow-pricing-clone .cta-btn.elite-btn { background: linear-gradient(135deg, var(--cc-accent), #b8862e); color: var(--cc-bg-base); }
.flow-pricing-clone .cta-btn.elite-btn:hover { box-shadow: 0 6px 20px rgba(212, 165, 75, 0.3); transform: translateY(-1px); }

.flow-pricing-clone .cta-sub {
  text-align: center;
  font-size: 12px;
  color: var(--cc-text-dim);
  margin-top: 10px;
}

/* ── Gallery Wrapper ─────────────────────────────────────── */
.flow-gallery {
  position: relative;
}

/* ── Scroll Track ────────────────────────────────────────── */
.flow-track {
  display: flex;
  gap: var(--flow-gap);
  padding: 0 var(--flow-peek);
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* Mobile scroll fix (26 Nis 2026 v2): yatay snap dikey scroll'u kilitlemesin */
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  /* hide scrollbar cross-browser */
  scrollbar-width: none;         /* Firefox */
  -ms-overflow-style: none;      /* IE 10+ */
}

.flow-track::-webkit-scrollbar {
  display: none;                 /* Chrome / Safari */
}

/* ── Individual Card ─────────────────────────────────────── */
.flow-card {
  flex: 0 0 calc(100% - (var(--flow-peek) * 2));
  min-height: var(--flow-card-h);
  aspect-ratio: var(--flow-card-ratio);
  border-radius: var(--flow-radius);
  overflow: hidden;
  position: relative;
  scroll-snap-align: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
  background: #060810;
  transform: translateZ(0);
  transition:
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.flow-card.is-active {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.46);
}

/* ── Card Media (full-bleed background) ──────────────────── */
.flow-media {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

.flow-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* ── Card Text Overlay (bottom) ──────────────────────────── */
.flow-card-text {
  position: absolute;
  left: clamp(14px, 1.8vw, 24px);
  top: clamp(14px, 1.8vw, 24px);
  bottom: clamp(14px, 1.8vw, 24px);
  width: clamp(240px, 28vw, 420px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.4vw, 32px);
  background: transparent;
  backdrop-filter: blur(2px) saturate(1.1);
  -webkit-backdrop-filter: blur(2px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  pointer-events: none;
  overflow: hidden;
}

/* Teal glow accent — top edge */
.flow-card-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--teal, #009688) 40%,
    rgba(0, 217, 166, 0.9) 50%,
    var(--teal, #009688) 60%,
    transparent
  );
  border-radius: 0 0 2px 2px;
  box-shadow: 0 0 12px rgba(0, 150, 136, 0.4), 0 0 24px rgba(0, 150, 136, 0.15);
}

/* Subtle inner light — bottom edge */
.flow-card-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}

.flow-card-text h3 {
  margin: 0 0 8px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(22px, 2.6vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #ffffff;
  font-weight: 700;
}

.flow-card-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.5);
}

/* Legacy alias (keep existing .flow-copy markup working) */
.flow-copy {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 3;
  padding: clamp(22px, 3vw, 48px);
  max-width: min(72%, 640px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0) 88%);
}

.flow-copy h3 {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(26px, 3vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #f5f7fb;
  font-weight: 700;
}

.flow-copy p {
  margin: 10px 0 0;
  color: rgba(239, 246, 252, 0.88);
  font-size: clamp(13px, 1.2vw, 22px);
  line-height: 1.55;
}

/* ── Tab Bar (Apple-style pill) ──────────────────────────── */
.flow-tabbar {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px 5px 5px 8px;
  margin-top: clamp(18px, 2.2vw, 26px);
  width: fit-content;
  max-width: calc(100% - 32px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 14, 18, 0.56);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

/* ── Play / Pause Button ─────────────────────────────────── */
.flow-play-pause {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(22, 28, 36, 0.95);
  color: rgba(220, 236, 248, 0.9);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
  margin-right: 4px;
}

.flow-play-pause svg {
  width: 13px;
  height: 13px;
  display: block;
  fill: currentColor;
}

.flow-play-pause:hover {
  transform: translateY(-1px);
  background: rgba(30, 38, 48, 0.98);
  border-color: rgba(255, 255, 255, 0.22);
}

.flow-play-pause:focus-visible {
  outline: 2px solid rgba(125, 208, 255, 0.8);
  outline-offset: 3px;
}

/* ── Individual Tab ──────────────────────────────────────── */
.flow-tab {
  position: relative;
  padding: 7px 15px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--muted, #95a7a7);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}

.flow-tab.is-active {
  color: var(--text, #ecf6f6);
  background: rgba(255, 255, 255, 0.1);
}

/* Tab label sits above the progress fill */
.flow-tab-label {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

/* ── Per-tab Progress Fill ───────────────────────────────── */
.flow-tab-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  /* No transition by default — JS sets width = 0% instantly on reset */
}

/* When active, animate from 0 → 100% over 5 s */
.flow-tab.is-active .flow-tab-progress {
  width: 100%;
  transition: width var(--flow-tab-dur, 5s) linear;
}

/* ═══════════════════════════════════════════════════════════
   Responsive — 768 px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .flow-highlights {
    --flow-peek: clamp(10px, 2.8vw, 28px);
    --flow-gap: 10px;
    --flow-card-h: auto;
    border-radius: 24px;
  }

  /* Mobile: scroll-snap'i KAPAT, dikey scroll'u kart üzerinden geçirebilesin */
  .flow-track {
    scroll-snap-type: none;
  }

  .flow-card {
    aspect-ratio: 9 / 14;
    max-height: 60vh;
    scroll-snap-align: none;
  }

  .flow-head-row {
    padding: 0 clamp(14px, 3.5vw, 32px);
  }

  /* ── Flow card text: bottom overlay on mobile ── */
  .flow-card-text {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
    border-radius: 0 0 var(--flow-radius, 28px) var(--flow-radius, 28px);
    padding: 20px 16px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
  }

  .flow-card-text::before,
  .flow-card-text::after {
    display: none;
  }

  .flow-card-text p {
    font-size: clamp(18px, 5.2vw, 26px);
    line-height: 1.25;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  }

  .flow-media img {
    object-fit: cover;
  }

  .flow-tabbar {
    max-width: calc(100% - 24px);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    margin-left: auto;
    margin-right: auto;
  }

  .flow-tabbar::-webkit-scrollbar {
    display: none;
  }

  .flow-tab {
    font-size: 12px;
    padding: 6px 12px;
    flex-shrink: 0;
  }

  .flow-play-pause {
    width: 30px;
    height: 30px;
  }

  .flow-play-pause svg {
    width: 11px;
    height: 11px;
  }
}

/* ═══════════════════════════════════════════════════════════
   Responsive — 480 px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .flow-highlights {
    --flow-peek: 8px;
    --flow-gap: 8px;
    border-radius: 18px;
    margin-top: 8px;
  }

  .flow-card {
    border-radius: 22px;
    aspect-ratio: 9 / 16;
    max-height: 55vh;
  }

  .flow-card-text {
    border-radius: 0 0 22px 22px;
    padding: 16px 14px 20px;
  }

  .flow-card-text p {
    font-size: clamp(16px, 4.8vw, 22px);
  }

  .flow-head-row h2 {
    font-size: clamp(28px, 8.5vw, 40px);
  }

  .flow-film-link {
    font-size: 12px;
  }

  .flow-tab {
    font-size: 11px;
    padding: 5px 10px;
    flex-shrink: 0;
  }

  .flow-tab-label {
    max-width: 56px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .flow-tabbar {
    padding: 4px 4px 4px 6px;
    gap: 1px;
  }

  .flow-play-pause {
    width: 28px;
    height: 28px;
    margin-right: 2px;
  }
}

.mobile-cinematic {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 0 68px;
  overflow: clip;
}

.mobile-cinematic-head {
  position: relative;
  padding: clamp(56px, 9vh, 96px) clamp(20px, 5vw, 84px) clamp(24px, 4vh, 48px);
  text-align: left;
  max-width: min(860px, 92vw);
  margin: 0 auto;
}

.mobile-cinematic-head h2 {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(34px, 5.2vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.022em;
}

.mobile-cinematic-head p:last-child {
  margin: 14px auto 0;
  color: rgba(224, 236, 236, 0.84);
  font-size: clamp(14px, 1.45vw, 19px);
  line-height: 1.6;
}

.mobile-cine-space {
  position: relative;
  height: clamp(160vh, 200vh, 240vh);
}

.mobile-cine-stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 100vh;
  border-radius: 0;
  overflow: hidden;
  background: #020809;
  border: none;
  box-shadow: none;
  isolation: isolate;
  transform: translateZ(0);
  will-change: transform;
}

.mobile-cine-stage.is-active {
  box-shadow: none;
}

#mobile-cine-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
  transform: scale(var(--mobile-cine-scale, 1.03)) translateZ(0);
  transform-origin: center center;
  will-change: transform, opacity;
  backface-visibility: hidden;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.mobile-cine-stage.is-ready #mobile-cine-video {
  opacity: 1;
}

.mobile-cine-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.mobile-cine-stage.is-ready .mobile-cine-fallback {
  opacity: 0;
}

.mobile-cine-frame {
  position: absolute;
  inset: clamp(8px, 1.3vw, 22px);
  border-radius: clamp(30px, 3.2vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 0 0 14px rgba(1, 5, 7, 0.34),
    0 18px 46px rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.mobile-cine-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 10, 12, 0.18) 0%, rgba(3, 10, 12, 0.56) 100%),
    radial-gradient(circle at 85% 50%, rgba(0, 217, 166, 0.12), transparent 55%);
  pointer-events: none;
}

.mobile-cine-copy {
  position: absolute;
  left: clamp(20px, 4vw, 52px);
  right: clamp(20px, 4vw, 52px);
  bottom: clamp(20px, 4vw, 48px);
  max-width: min(620px, 84%);
  z-index: 2;
}

.mobile-cine-copy p {
  margin: 0;
  color: rgba(225, 242, 239, 0.78);
  font-size: clamp(11px, 1.15vw, 14px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.mobile-cine-copy h3 {
  margin: 10px 0 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(26px, 4.1vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.mobile-cine-meta {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.mobile-cine-progress {
  width: min(520px, 92%);
  margin: 0 auto;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

#mobile-cine-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform-origin: left center;
  transform: scaleX(0);
}

.mobile-cine-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.mobile-cine-steps li {
  position: relative;
  padding: 6px 4px 10px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(205, 223, 223, 0.45);
  background: transparent;
  border: 0;
  transition: color 0.28s ease, opacity 0.28s ease;
  opacity: 0.6;
}

.mobile-cine-steps li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: 0 auto 6px;
  background: rgba(255, 255, 255, 0.22);
  transition: background 0.28s ease, transform 0.28s ease;
}

.mobile-cine-steps li.is-active {
  color: #f6fffd;
  opacity: 1;
}

.mobile-cine-steps li.is-active::before {
  background: var(--teal);
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(0, 217, 166, 0.18);
}

.section-head {
  margin-bottom: 16px;
}

.section-head h2 {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.08;
}

.metrics,
.audience,
.ecosystem,
.compliance,
.final-cta {
  padding: 68px 0;
}

.metric-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.metric-card,
.audience-grid article,
.compliance-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  padding: 20px;
}

.metric-num {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--teal);
}

.metric-label {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.audience-grid article h3 {
  margin: 0;
  font-size: 22px;
}

.audience-grid article p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Testimonials Slider - main index ile birebir */
.testimonials-slider-section {
  padding: 4rem 0 6rem;
  background: linear-gradient(180deg, rgba(0, 150, 136, 0.03) 0%, transparent 100%);
  overflow: visible;
  overflow-x: clip;
}

.testimonials-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-slider-header h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.testimonials-slider-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0.25rem 0 0;
}

.view-all-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border: 1px solid var(--primary);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.view-all-link:hover {
  background: var(--primary);
  color: #fff;
}

.testimonials-track-wrapper {
  position: relative;
  width: 100%;
}

.testimonials-track-wrapper::before,
.testimonials-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.testimonials-track-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  animation: scrollTestimonials 30s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-slide {
  flex-shrink: 0;
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial-slide:hover {
  border-color: var(--primary);
  background: rgba(0, 150, 136, 0.08);
  transform: translateY(-4px);
  z-index: 10;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.testimonial-slide-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.testimonial-slide-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid var(--primary);
}

.testimonial-slide-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #00796b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-slide-info {
  flex: 1;
  min-width: 0;
}

.testimonial-slide-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}

.testimonial-slide-job {
  font-size: 12px;
  color: var(--text-muted);
}

.testimonial-slide-stars {
  color: #ffd700;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.testimonial-slide-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.testimonial-slide:hover .testimonial-slide-text {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  white-space: normal;
}

.testimonials-track-wrapper:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonials-empty {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.eco-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  transition: border-color .3s ease, transform .3s ease;
}

.eco-card:hover {
  border-color: rgba(255,255,255,.24);
  transform: translateY(-4px);
}

.eco-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.eco-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.eco-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #9fc9c9;
}

.eco-core { border-color: rgba(0,217,166,.38); }
.eco-premium { border-color: rgba(212,165,75,.44); }
.eco-process { border-color: rgba(111,201,255,.34); }
.eco-community { border-color: rgba(255,255,255,.2); }

.eco-core .eco-badge { color: var(--teal); }
.eco-premium .eco-badge { color: var(--gold); }
.eco-process .eco-badge { color: #6fc9ff; }

.eco-links-row {
  display: grid;
  gap: 8px;
}

.eco-links-row a {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 9px;
  padding: 10px 10px;
  text-decoration: none;
  color: #dce8e8;
  background: rgba(255,255,255,.03);
  font-size: 13px;
}

.eco-links-row a:hover {
  border-color: rgba(0,217,166,.5);
  color: #fff;
}

.compliance-card h2 {
  margin-top: 0;
  font-size: 30px;
}

.compliance-card p {
  color: rgba(224,236,236,.9);
  line-height: 1.7;
}

.legal-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-links a {
  color: #f5e4be;
  text-decoration: none;
  border: 1px solid rgba(212,165,75,.4);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
}

.final-cta {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.07);
}

.final-cta h2 {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(34px, 4.8vw, 70px);
}

.final-cta p {
  margin: 12px auto 0;
  color: var(--muted);
  max-width: 680px;
}

.waitlist-section {
  width: 100%;
  padding: 1.5rem 0 0;
  background: transparent;
}

.waitlist-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(0, 150, 136, 0.1), rgba(212, 165, 75, 0.05));
  border: 2px solid var(--teal);
  border-radius: 24px;
}

.waitlist-box h2 {
  font-size: 2rem;
  margin: 0 0 0.75rem;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.waitlist-box .subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 0 2rem;
}

.waitlist-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.waitlist-form input {
  flex: 1;
  width: 100%;
  min-height: 50px;
  padding: 0 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--text);
  font-size: 1rem;
  outline: none;
}

.waitlist-form input::placeholder {
  color: rgba(196, 214, 214, 0.7);
}

.waitlist-form input:focus {
  border-color: var(--teal);
}

.waitlist-form button {
  min-height: 50px;
  padding: 0 1.4rem;
  background: linear-gradient(135deg, var(--teal), #00BCD4);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.waitlist-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 150, 136, 0.35);
}

.waitlist-form button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.waitlist-success {
  display: none;
  padding: 1.5rem;
  background: rgba(0, 217, 166, 0.1);
  border: 1px solid rgba(0, 217, 166, 0.3);
  border-radius: 12px;
  color: #00d9a6;
}

.waitlist-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.waitlist-stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer {
  margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 38px 16px 22px;
  background: linear-gradient(180deg, rgba(8,20,20,.88) 0%, rgba(4,10,10,.98) 100%);
}

.site-footer-content {
  width: min(1240px, calc(100% - 16px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.site-footer-brand-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer-logo {
  border-radius: 12px;
  object-fit: contain;
}

.site-footer-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.site-footer-tagline {
  margin: 6px 0 0;
  font-size: 22px;
  color: #97c8cf;
}

.site-footer-about {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: #bdd7db;
}

.site-footer-social {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.site-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: #cbe4e7;
  transition: all .25s ease;
}

.site-social-link svg {
  width: 18px;
  height: 18px;
}

.site-social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(0,217,166,.6);
  color: #fff;
}

.site-footer-col h4 {
  margin: 4px 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #8cc8d1;
}

.site-footer-col a {
  display: block;
  padding: 6px 0;
  color: #c6dfe2;
  text-decoration: none;
  font-size: 15px;
}

.site-footer-col a:hover {
  color: #fff;
}

.site-footer-address {
  width: min(1240px, calc(100% - 16px));
  margin: 18px auto 0;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px;
  text-align: center;
  font-style: normal;
  font-size: 13px;
  line-height: 1.65;
  color: #9bc3c8;
}

.site-footer-address a {
  color: var(--teal);
  text-decoration: none;
}

.site-footer-bottom {
  width: min(1240px, calc(100% - 16px));
  margin: 14px auto 0;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px;
  text-align: center;
}

.site-footer-bottom p {
  margin: 0;
  color: #9bc3c8;
  font-size: 13px;
}

.site-footer-disclaimer {
  margin-top: 10px !important;
  font-size: 12px !important;
  line-height: 1.6;
  color: #88b3b9 !important;
}

@media (max-width: 1120px) {
  .flow-head-row h2 {
    font-size: clamp(34px, 6vw, 52px);
  }

  .flow-track-wrap {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .flow-track-wrap::-webkit-scrollbar {
    display: none;
  }

  .flow-track {
    transform: none !important;
    transition: none;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
  }

  .flow-card {
    flex: 0 0 min(88vw, 860px);
    scroll-snap-align: center;
    min-height: clamp(380px, 64vw, 580px);
  }

  .flow-copy {
    max-width: 80%;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .eco-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-pricing-clone {
    width: min(980px, calc(100% - 28px));
  }

  .flow-pricing-clone .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .flow-pricing-clone .pricing-card.pro {
    transform: none;
  }

  .flow-pricing-clone .pricing-card.pro:hover {
    transform: translateY(-4px);
  }

  .mobile-cine-space {
    height: 200vh;
  }

  .mobile-cine-stage {
    height: 100svh;
    min-height: 100vh;
    border-radius: 0;
  }

  .site-footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .top-links a:not(.btn) { display: none; }

  .hero {
    padding-top: 108px;
  }

  .metric-grid,
  .eco-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-cta {
    width: 100%;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-stats {
    flex-direction: column;
    gap: 0.75rem;
  }

  .waitlist-box {
    padding: 2rem 1.5rem;
  }

  .flow-pricing-clone {
    width: min(960px, calc(100% - 16px));
  }

  .flow-pricing-clone .period-toggle-wrap {
    margin-bottom: 22px;
  }

  .flow-pricing-clone .toggle-btn {
    padding: 9px 16px;
    font-size: 13px;
  }

  .mobile-cinematic {
    padding: 0 0 56px;
  }

  .mobile-cine-space {
    height: 180vh;
  }

  .mobile-cine-stage {
    top: 0;
    height: 100svh;
    min-height: 100vh;
    border-radius: 0;
  }

  .mobile-cine-copy {
    max-width: 92%;
  }

  .mobile-cine-copy h3 {
    font-size: clamp(20px, 6vw, 34px);
  }

  .mobile-cine-steps {
    gap: 14px;
  }

  .mobile-cine-steps li {
    font-size: 11px;
    padding: 6px 4px 10px;
  }

  .testimonials-slider-section {
    padding: 2rem 0 3rem;
  }

  .testimonials-slider-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }

  .testimonials-slider-header h2 {
    font-size: 1.4rem;
  }

  .view-all-link {
    font-size: 13px;
    padding: 6px 12px;
  }

  .testimonial-slide {
    width: calc(100vw - 60px);
    min-width: 260px;
    max-width: 320px;
    padding: 1.25rem;
  }

  .testimonials-track {
    gap: 1rem;
    padding: 0 1rem;
  }

  .testimonials-track-wrapper::before,
  .testimonials-track-wrapper::after {
    width: 30px;
  }

  .testimonial-slide-header {
    gap: 10px;
    margin-bottom: 0.75rem;
  }

  .testimonial-slide-photo,
  .testimonial-slide-avatar {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .testimonial-slide-text {
    font-size: 13px;
  }

  .site-footer-content {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .site-footer-title {
    font-size: 28px;
  }

  .site-footer-tagline {
    font-size: 18px;
  }

  .site-footer-about {
    font-size: 14px;
  }

  .site-footer-col a {
    font-size: 14px;
  }

  .site-footer-address,
  .site-footer-bottom {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .flow-pricing-clone .pricing-card {
    padding: 22px 14px;
  }

  .flow-pricing-clone .price-eb {
    font-size: 34px;
  }

  .flow-pricing-clone .feature-list li {
    font-size: 13px;
  }

  .flow-pricing-clone .toggle-btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .mobile-cine-space {
    height: 160vh;
  }

  .mobile-cine-stage {
    top: 0;
    height: 100svh;
    min-height: 100vh;
  }

  .mobile-cine-frame {
    inset: 6px;
    border-radius: 16px;
  }

  .mobile-cine-meta {
    margin-top: 12px;
    gap: 10px;
  }

  .mobile-cine-steps {
    gap: 10px;
  }

  .mobile-cine-steps li {
    flex: 0 0 auto;
    min-width: 64px;
  }

  .testimonials-slider-section {
    padding: 1.5rem 0 2rem;
  }

  .testimonials-slider-header h2 {
    font-size: 1.25rem;
  }

  .testimonial-slide {
    width: calc(100vw - 40px);
    min-width: 240px;
    max-width: 300px;
    padding: 1rem;
    border-radius: 12px;
  }

  .testimonials-track {
    gap: 0.75rem;
    padding: 0 0.5rem;
  }

  .testimonials-track-wrapper::before,
  .testimonials-track-wrapper::after {
    width: 20px;
  }

  .testimonial-slide-photo,
  .testimonial-slide-avatar {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* Flow card accent colors */
.flow-card-text .accent-teal { color: var(--teal, #009688); }
.flow-card-text .accent-gold { color: var(--gold, #d4a54b); }

/* ═══ Testimonials: edge-to-edge flow ═══ */
.testimonials-slider-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding: 4rem 0 5rem;
}

.testimonials-track-wrapper::before {
  width: 60px;
  background: linear-gradient(90deg, var(--bg, #0f2020) 0%, transparent 100%);
}

.testimonials-track-wrapper::after {
  width: 60px;
  background: linear-gradient(270deg, var(--bg, #0f2020) 0%, transparent 100%);
}

.testimonials-track {
  padding: 0;
}

/* ── Post-Cinematic Hero (eklendi 23 Nisan 2026 — conversion odaklı) ── */
.post-cine-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%,
    rgba(0, 217, 166, .10) 0%,
    transparent 70%);
  border-bottom: 1px solid var(--line);
}
.pch-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.post-cine-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.12;
  max-width: 820px;
  color: var(--text);
}
.pch-lead {
  margin: 0 0 40px;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--muted);
  max-width: 620px;
  line-height: 1.65;
}
.pch-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}
.pch-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal), #009688);
  color: #050b0b;
  text-decoration: none;
  transition: opacity .18s, transform .18s;
}
.pch-btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.pch-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  transition: border-color .18s, color .18s;
}
.pch-btn-secondary:hover { border-color: var(--teal); color: var(--text); }
.pch-proof { font-size: 12.5px; color: var(--muted); opacity: .75; }
@media (max-width: 600px) {
  .post-cine-hero { padding: 72px 20px 60px; }
  .pch-actions { flex-direction: column; align-items: center; width: 100%; }
  .pch-btn-primary, .pch-btn-secondary { width: 100%; justify-content: center; }
  .hero-trust { gap: 8px; margin-top: 20px; }
  .hero-trust li { font-size: 12px; padding: 7px 12px; }
}
/* ── End Post-Cinematic Hero ── */

/* ── Hero Trust Strip + Mobile Menu Lang Group (eklendi 26 Nis 2026 — UX düzeltme dalgası) ── */
.hero-trust {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  max-width: 760px;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 217, 166, 0.22);
  background: rgba(0, 217, 166, 0.06);
  font-size: 13px;
  font-weight: 500;
  color: rgba(225, 242, 239, 0.92);
  white-space: nowrap;
}
.hero-trust-icon {
  font-size: 14px;
  line-height: 1;
  filter: saturate(1.1);
}
.hero-trust strong {
  color: var(--teal);
  font-weight: 700;
}

.mobile-menu-lang {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu-lang-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .7;
  padding: 0 0 6px;
}
/* ── End Hero Trust + Mobile Menu Lang ── */

/* ── Tur 3+4: Pricing Eyebrow + CTA Arrow ── */
.flow-pricing-clone .pricing-eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4a54b;
  margin: 0 0 28px;
  font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', Consolas, monospace;
  opacity: 0.85;
}

.cta-arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.pch-btn-primary:hover .cta-arrow,
.pch-btn-primary:focus-visible .cta-arrow {
  transform: translateX(4px);
}
/* ── End Tur 3+4 ── */

/* ── Tur 5: Final Register CTA ── */
.final-register-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #009688, #00796b);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 18px 36px;
  border-radius: 12px;
  text-decoration: none;
  margin: 28px auto 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 18px rgba(0, 150, 136, 0.32);
  letter-spacing: 0.01em;
}

.final-register-cta:hover,
.final-register-cta:focus-visible {
  background: linear-gradient(135deg, #00bfa6, #00897b);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 150, 136, 0.45);
  outline: none;
}

.final-register-cta:hover .cta-arrow,
.final-register-cta:focus-visible .cta-arrow {
  transform: translateX(4px);
}
/* ── End Tur 5 ── */

/* ── Tur 6: Starter Free Tier Badge ── */
.flow-pricing-clone .card-badge.free {
  background: linear-gradient(135deg, var(--starter), #1565c0);
  color: #fff;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}
/* ── End Tur 6 ── */
