/* ============================================================
   Sürücü Kazanç — Landing Page v3
   Modern 2025 Design: Slate + Green + Blue, Bento Grid, Aurora
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: #e2e8f0;
  background: #080d1a;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Colors */
  --green:       #6ae53b;
  --green-light: #82ed58;
  --green-dark:  #52c42a;
  --blue:        #3b82f6;
  --blue-light:  #60a5fa;
  --blue-dark:   #1d4ed8;
  --indigo:      #6366f1;

  /* Backgrounds */
  --bg-base:     #080d1a;
  --bg-surface:  #0f172a;
  --bg-elevated: #1e293b;
  --bg-card:     rgba(15, 23, 42, 0.7);

  /* Text */
  --text-primary:   #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted:     #64748b;

  /* Borders */
  --border:      rgba(148, 163, 184, 0.10);
  --border-glow: rgba(59, 130, 246, 0.25);

  /* Glass */
  --glass-bg:    rgba(15, 23, 42, 0.65);
  --glass-blur:  blur(24px) saturate(180%);

  /* Gradients */
  --grad-green:  linear-gradient(135deg, #6ae53b, #52c42a);
  --grad-blue:   linear-gradient(135deg, #3b82f6, #6366f1);
  --grad-mixed:  linear-gradient(135deg, #6ae53b 0%, #3b82f6 100%);
  --grad-text:   linear-gradient(135deg, #6ae53b 0%, #60a5fa 60%, #a78bfa 100%);

  /* Spacing */
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-2xl: 48px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:  0 16px 64px rgba(0,0,0,0.6);
  --shadow-green: 0 0 40px rgba(106,229,59,0.25);
  --shadow-blue:  0 0 40px rgba(59,130,246,0.25);
}

/* ── Layout ───────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 100px 0; }

/* ── Video Background ─────────────────────────────────────── */
.video-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bg-base);
  overflow: hidden;
}

/* Desktop video: shown by default */
.video-bg-desktop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Mobile video: hidden by default */
.video-bg-mobile {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none;
}

/* Dark overlay so text stays readable */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 20, 0.72);
}

/* Subtle dot grid on top of video */
.video-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Switch to mobile video on small screens */
@media (max-width: 768px) {
  .video-bg-desktop { display: none; }
  .video-bg-mobile  { display: block; }
}

/* ── Glass Card ───────────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
}

/* ── Gradient Text ────────────────────────────────────────── */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Badge / Pill ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid;
}
.badge-green {
  background: rgba(106,229,59,0.10);
  border-color: rgba(106,229,59,0.30);
  color: var(--green-light);
}
.badge-blue {
  background: rgba(59,130,246,0.10);
  border-color: rgba(59,130,246,0.30);
  color: var(--blue-light);
}
.badge .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); box-shadow: 0 0 0 0 currentColor; }
  50%      { opacity:.6; transform:scale(1.3); box-shadow: 0 0 0 4px transparent; }
}

/* ── Typography ───────────────────────────────────────────── */
.display {
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.05;
  color: var(--text-primary);
}
.h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.15;
  color: var(--text-primary);
}
.h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}
.body-lg {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.body-sm {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  outline: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--grad-mixed);
  color: #fff;
  box-shadow: 0 4px 24px rgba(106,229,59,0.35), 0 0 0 1px rgba(106,229,59,0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(106,229,59,0.45), 0 0 0 1px rgba(106,229,59,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: rgba(148,163,184,0.3);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-2px);
}

/* ── Store Buttons (legacy, kept for compatibility) ───────── */
.store-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Official Store Badges ────────────────────────────────── */
.store-badge-link {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s;
  flex-shrink: 0;
}
.store-badge-link:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}

/* Google Play badge — primary, larger */
.store-badge-play {
  height: 56px;
  width: auto;
  display: block;
}

/* App Store badge — same height as Google Play per brand guidelines */
.store-badge-apple {
  height: 56px;
  width: auto;
  display: block;
}

/* Row wrapper for CTA section */
.store-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .store-badge-play,
  .store-badge-apple {
    height: 46px;
  }
}

/* ════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(8, 13, 26, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  color: var(--text-primary);
}
.nav-logo img {
  width: 90px; height: 90px;
  object-fit: contain;
  border-radius: 11px;
}
.nav-logo .logo-accent { color: var(--green-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 7px 14px;
  border-radius: 8px;
  transition: all 0.18s;
}
.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-social {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9px;
  color: var(--text-secondary);
  font-size: 15px;
  transition: all 0.18s;
  border: 1px solid transparent;
}
.nav-social:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.07);
  border-color: var(--border);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Mobile Menu ──────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(8,13,26,0.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.18s;
}
.mobile-menu a:hover { color: var(--green-light); }
.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-secondary);
  background: none;
  border: none;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  transition: all 0.18s;
}
.mobile-close:hover { background: rgba(255,255,255,0.08); color: var(--text-primary); }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-badge { margin-bottom: 24px; }

.hero-title {
  margin-bottom: 22px;
}

.hero-desc {
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.8px;
  line-height: 1;
}
.trust-lbl {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ── Phone Mockup ─────────────────────────────────────────── */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-glow-wrap {
  position: absolute;
  inset: -60px;
  pointer-events: none;
}
.phone-glow-1 {
  position: absolute;
  top: 10%; left: 10%;
  width: 80%; height: 50%;
  background: radial-gradient(ellipse, rgba(106,229,59,0.22) 0%, transparent 70%);
  filter: blur(40px);
  animation: glow-float 6s ease-in-out infinite;
}
.phone-glow-2 {
  position: absolute;
  bottom: 10%; right: 10%;
  width: 70%; height: 50%;
  background: radial-gradient(ellipse, rgba(59,130,246,0.18) 0%, transparent 70%);
  filter: blur(40px);
  animation: glow-float 8s ease-in-out infinite reverse;
}
@keyframes glow-float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-12px) scale(1.08); }
}

.phone-frame {
  width: 270px;
  background: #0a1628;
  border-radius: 48px;
  border: 1.5px solid rgba(59,130,246,0.35);
  box-shadow:
    0 0 0 8px rgba(59,130,246,0.05),
    0 0 0 16px rgba(106,229,59,0.03),
    0 40px 80px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.06);
  padding: 16px 12px;
  animation: phone-float 7s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes phone-float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-10px) rotate(0.5deg); }
  66%      { transform: translateY(-6px) rotate(-0.3deg); }
}

.phone-island {
  width: 90px; height: 26px;
  background: #000;
  border-radius: 0 0 18px 18px;
  margin: 0 auto 12px;
}
.phone-screen {
  background: #0d1b2e;
  border-radius: 30px;
  padding: 16px;
  min-height: 460px;
  overflow: hidden;
}

/* App UI inside phone */
.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.app-greeting { font-size: 9px; color: rgba(255,255,255,0.45); }
.app-name-big { font-size: 11px; font-weight: 800; color: #fff; }
.app-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6ae53b, #3b82f6);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
}

.app-main-card {
  background: linear-gradient(135deg, rgba(106,229,59,0.15), rgba(59,130,246,0.10));
  border: 1px solid rgba(106,229,59,0.25);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 10px;
}
.app-main-lbl { font-size: 8px; color: rgba(255,255,255,0.45); font-weight: 600; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.app-main-val { font-size: 26px; font-weight: 900; color: #6ae53b; letter-spacing: -1.5px; line-height: 1; margin-bottom: 4px; }
.app-main-sub { font-size: 8px; color: rgba(255,255,255,0.35); }

.app-chips {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 5px;
  margin-top: 10px;
}
.app-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 6px 3px;
  text-align: center;
}
.app-chip-v { font-size: 9px; font-weight: 800; color: #fff; }
.app-chip-l { font-size: 6.5px; color: rgba(255,255,255,0.4); font-weight: 600; margin-top: 1px; }

.app-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}
.app-mini {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 10px;
}
.app-mini-lbl { font-size: 7px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.app-mini-val { font-size: 15px; font-weight: 900; letter-spacing: -0.5px; }
.app-mini-val.green { color: #6ae53b; }
.app-mini-val.gold  { color: #fbbf24; }
.app-bar { height: 3px; background: rgba(255,255,255,0.07); border-radius: 3px; margin-top: 6px; overflow: hidden; }
.app-bar-fill { height: 100%; background: linear-gradient(90deg, #6ae53b, #3b82f6); border-radius: 3px; }

.app-bottom-card {
  background: rgba(59,130,246,0.10);
  border: 1px solid rgba(59,130,246,0.20);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-bottom-lbl { font-size: 7.5px; color: rgba(255,255,255,0.4); }
.app-bottom-val { font-size: 14px; font-weight: 900; color: #60a5fa; letter-spacing: -0.5px; }

/* ════════════════════════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════════════════════════ */
.stats-section {
  padding: 0 0 80px;
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.stat-card {
  background: var(--bg-surface);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.2s;
}
.stat-card:hover { background: var(--bg-elevated); }
.stat-num {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.stats-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: italic;
}

/* ════════════════════════════════════════════════════════════
   SECTION HEADER
════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .badge { margin-bottom: 16px; }
.section-header .h2   { margin-bottom: 14px; }
.section-header .body-lg { max-width: 520px; margin: 0 auto; }

/* ════════════════════════════════════════════════════════════
   BENTO FEATURES GRID
════════════════════════════════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(106,229,59,0.04) 0%, rgba(59,130,246,0.04) 100%);
  opacity: 0;
  transition: opacity 0.25s;
}
.bento-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(59,130,246,0.15);
}
.bento-card:hover::before { opacity: 1; }

/* Wide card (spans 2 cols) */
.bento-card.wide { grid-column: span 2; }

.bento-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.bento-icon.green { background: rgba(106,229,59,0.12); border: 1px solid rgba(106,229,59,0.25); }
.bento-icon.blue  { background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25); }
.bento-icon.indigo{ background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.25); }
.bento-icon.amber { background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.25); }

.bento-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.bento-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* Wide card extra content */
.bento-wide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.bento-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.bento-mini-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
}
.bento-mini-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-light);
  letter-spacing: -0.5px;
}
.bento-mini-lbl {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════════ */
.how-section { background: var(--bg-surface); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), var(--blue), transparent);
  opacity: 0.4;
}
.how-step { text-align: center; }
.how-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-mixed);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(106,229,59,0.08), 0 8px 24px rgba(106,229,59,0.3);
}
.how-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.how-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   PLATFORM / SEO CARDS
════════════════════════════════════════════════════════════ */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.platform-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.25s;
}
.platform-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.platform-emoji { font-size: 40px; margin-bottom: 16px; }

/* ════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════ */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: rgba(59,130,246,0.4);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-primary);
  gap: 16px;
  user-select: none;
  transition: background 0.18s;
}
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(59,130,246,0.10);
  border: 1px solid rgba(59,130,246,0.20);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--blue-light);
  transition: transform 0.28s, background 0.2s;
  font-weight: 400;
}
.faq-item.open .faq-ico {
  transform: rotate(45deg);
  background: rgba(59,130,246,0.18);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.28s;
  padding: 0 22px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 22px 20px;
}

/* ════════════════════════════════════════════════════════════
   CTA
════════════════════════════════════════════════════════════ */
.cta-section { position: relative; z-index: 1; }
.cta-card {
  border-radius: var(--radius-2xl);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
    rgba(106,229,59,0.08) 0%,
    rgba(59,130,246,0.08) 50%,
    rgba(99,102,241,0.06) 100%);
  border: 1px solid rgba(59,130,246,0.2);
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(106,229,59,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card .h2 { margin-bottom: 14px; position: relative; z-index: 1; }
.cta-card .body-lg { max-width: 480px; margin: 0 auto 36px; position: relative; z-index: 1; }
.cta-store-row { position: relative; z-index: 1; justify-content: center; }
.cta-note { margin-top: 18px; font-size: 12px; color: var(--text-muted); position: relative; z-index: 1; }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
  position: relative;
  z-index: 1;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
}
.footer-logo img { width: 30px; height: 30px; object-fit: contain; border-radius: 8px; }
.footer-logo .logo-accent { color: var(--green-light); }

.footer-links {
  display: flex;
  gap: 4px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 7px;
  transition: all 0.18s;
}
.footer-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }

.footer-social { display: flex; gap: 8px; }
.soc-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--text-secondary);
  transition: all 0.2s;
  cursor: pointer;
}
.soc-btn:hover {
  background: rgba(59,130,246,0.12);
  border-color: rgba(59,130,246,0.3);
  color: var(--blue-light);
  transform: translateY(-2px);
}

.footer-copy {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-copy a { color: var(--text-muted); transition: color 0.18s; }
.footer-copy a:hover { color: var(--green-light); }

/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-desc { max-width: 100%; }
  .phone-wrap { order: -1; }
  .phone-frame { width: 240px; }

  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card.wide { grid-column: span 2; }

  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid::before { display: none; }

  .platform-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero-grid { text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .trust-divider { display: none; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
  .bento-wide-inner { grid-template-columns: 1fr; }

  .how-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .cta-card { padding: 52px 24px; border-radius: var(--radius-xl); }
  .footer-row { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .store-row { flex-direction: column; align-items: stretch; }
  .store-btn { justify-content: center; }
}
