/* === RESET & VARIABLES === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg-primary: #0A0F1E;
  --bg-card: #141B2D;
  --bg-glass: rgba(20, 27, 45, 0.7);
  --accent-gold: #C8A84B;
  --accent-light: #E8C86B;
  --accent-glow: rgba(200, 168, 75, 0.3);
  --accent-orange: #E87C35;
  --accent-blue: #3B82F6;
  --success: #10B981;
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #475569;
  --border-gold: rgba(200, 168, 75, 0.2);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 4px; }

/* === UTILITIES === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.gold-text { color: var(--accent-gold); }
.shimmer {
  background: linear-gradient(110deg, var(--accent-gold) 0%, #fff 20%, var(--accent-gold) 40%, var(--accent-gold) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { 0%,100%{background-position:200% 0} 50%{background-position:-200% 0} }

/* === GLASS CARD === */
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(200,168,75,0.1);
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 12px;
  font-weight: 600; font-size: 15px;
  transition: all 0.3s ease; letter-spacing: 0.3px;
}
.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), #D4B85C);
  color: #0A0F1E;
}
.btn-gold:hover { box-shadow: 0 0 30px var(--accent-glow); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--accent-gold);
  color: var(--accent-gold);
}
.btn-outline:hover { background: rgba(200,168,75,0.1); transform: translateY(-2px); }
.btn-orange { background: linear-gradient(135deg, var(--accent-orange), #F09050); color: #fff; }
.btn-orange:hover { box-shadow: 0 0 30px rgba(232,124,53,0.4); transform: translateY(-2px); }
.btn-blue { background: linear-gradient(135deg, var(--accent-blue), #60A5FA); color: #fff; }
.btn-blue:hover { box-shadow: 0 0 30px rgba(59,130,246,0.4); transform: translateY(-2px); }

/* === PAGE SYSTEM === */
.page { display: none; }
.page.active { display: block; }

/* === NAV === */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}
#navbar.scrolled {
  background: rgba(10,15,30,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
  z-index: 1001;
}
.logo-icon { color: var(--accent-gold); font-size: 18px; }
.nav-links {
  display: flex; gap: 32px;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  transition: color 0.3s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-gold); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--accent-gold); transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: 10px 24px; font-size: 13px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; z-index: 1001; }
.burger span { width: 24px; height: 2px; background: var(--text-primary); transition: all 0.3s; border-radius: 2px; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero-gradient {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  color: var(--accent-gold);
  padding: 8px 20px; border-radius: 100px;
  border: 1px solid var(--border-gold);
  background: rgba(200,168,75,0.08);
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.15; font-weight: 700;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px; color: var(--text-secondary);
  max-width: 520px; margin-bottom: 36px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Phone Mockup */
.phone-mockup {
  display: flex; justify-content: center; align-items: center;
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%,100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-20px) rotate(-1deg); }
}
.phone-frame {
  width: 280px; height: 570px;
  border-radius: 36px;
  border: 3px solid rgba(200,168,75,0.4);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(200,168,75,0.15);
  background: #000;
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 28px;
  background: #000; border-radius: 0 0 18px 18px;
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}

/* === STATS === */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 48px 0;
  position: relative;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.stat-number {
  font-family: var(--font-mono); font-size: 48px; font-weight: 700;
  color: var(--accent-gold);
}
.stat-plus { font-family: var(--font-mono); font-size: 32px; color: var(--accent-gold); }
.stat-star { font-size: 28px; color: var(--accent-gold); margin-left: 4px; }
.stat-label { font-size: 14px; color: var(--text-secondary); line-height: 1.4; }

/* === SHOWCASE === */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  text-align: center; margin-bottom: 12px;
}
.section-sub {
  text-align: center; color: var(--text-secondary);
  font-size: 17px; margin-bottom: 60px;
}
.showcase-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.app-card {
  padding: 32px; position: relative; overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.app-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 30px rgba(200,168,75,0.1);
}
.card-badge {
  position: absolute; top: 20px; right: 20px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; letter-spacing: 0.8px;
}
.badge-gold { background: rgba(200,168,75,0.2); color: var(--accent-gold); }
.badge-orange { background: rgba(232,124,53,0.2); color: var(--accent-orange); }
.badge-blue { background: rgba(59,130,246,0.2); color: var(--accent-blue); }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700; margin-bottom: 4px;
}
.card-edition { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.card-features { margin-bottom: 28px; }
.card-features li {
  font-size: 14px; padding: 6px 0; color: var(--text-secondary);
  display: flex; align-items: center; gap: 10px;
}
.check { font-weight: 700; font-size: 15px; }
.card-actions { display: flex; gap: 12px; }
.card-actions .btn { width: 100%; justify-content: center; }

/* === WHY === */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.why-card {
  padding: 40px 32px; text-align: center;
  transition: transform 0.3s;
}
.why-card:hover { transform: translateY(-6px); }
.why-icon { font-size: 42px; margin-bottom: 20px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 22px; margin-bottom: 12px; font-weight: 600;
}
.why-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

/* === TESTIMONIALS === */
.testimonials { background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(20,27,45,0.4) 50%, var(--bg-primary) 100%); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.test-card { padding: 32px; transition: transform 0.3s; }
.test-card:hover { transform: translateY(-4px); }
.test-stars { color: var(--accent-gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 3px; }
.test-quote {
  font-size: 15px; line-height: 1.8; color: var(--text-secondary);
  margin-bottom: 24px; font-style: italic;
}
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(200,168,75,0.2); color: var(--accent-gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.test-author strong { font-size: 14px; }
.text-muted { color: var(--text-muted); font-size: 12px; }

/* === PLATFORMS === */
.platform-badges { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 28px; transition: all 0.3s;
  color: var(--text-primary);
}
.store-badge:hover { transform: translateY(-3px); box-shadow: 0 0 20px var(--accent-glow); }
.store-badge small { font-size: 11px; color: var(--text-secondary); display: block; }
.store-badge strong { font-size: 16px; display: block; }

/* === HOW IT WORKS === */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 40px; left: 12%; right: 12%;
  height: 2px; background: linear-gradient(90deg, transparent, var(--border-gold), var(--accent-gold), var(--border-gold), transparent);
  z-index: 0;
}
.step-card {
  text-align: center; position: relative; z-index: 1;
  padding: 20px;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), #D4B85C);
  color: #0A0F1E; font-family: var(--font-mono); font-weight: 700; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 20px var(--accent-glow);
}
.step-card h4 { font-family: var(--font-display); font-size: 18px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* === DEMO QUESTION === */
.demo-box {
  max-width: 680px; margin: 0 auto; padding: 40px;
}
.demo-question {
  font-family: var(--font-display); font-size: 22px; line-height: 1.5;
  margin-bottom: 28px; text-align: center;
}
.demo-options { display: flex; flex-direction: column; gap: 12px; }
.demo-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: 12px;
  background: rgba(200,168,75,0.05);
  border: 1.5px solid rgba(200,168,75,0.15);
  cursor: pointer; transition: all 0.3s;
  font-size: 15px;
}
.demo-opt:hover { border-color: var(--accent-gold); background: rgba(200,168,75,0.1); }
.demo-opt.correct {
  border-color: var(--success) !important;
  background: rgba(16,185,129,0.1) !important;
}
.demo-opt.wrong {
  border-color: #EF4444 !important;
  background: rgba(239,68,68,0.1) !important;
}
.demo-opt.disabled { pointer-events: none; opacity: 0.6; }
.demo-opt.correct.disabled { opacity: 1; }
.demo-letter {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(200,168,75,0.15); color: var(--accent-gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.demo-result {
  display: none; margin-top: 24px; padding: 20px;
  border-radius: 12px; font-size: 14px; line-height: 1.7;
}
.demo-result.show { display: block; }
.demo-result.success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); }
.demo-result.fail { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); }
.demo-result strong { color: var(--text-primary); }
.demo-cta {
  text-align: center; margin-top: 28px;
}

/* === SUBPAGE COMMON === */
.subpage-hero {
  min-height: 60vh; display: flex; align-items: center;
  padding-top: 100px; padding-bottom: 40px;
  position: relative; overflow: hidden;
}
.subpage-hero .container { position: relative; z-index: 1; }
.subpage-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.15; font-weight: 700; margin-bottom: 20px;
}
.subpage-hero p { font-size: 18px; color: var(--text-secondary); max-width: 600px; margin-bottom: 32px; line-height: 1.7; }
.subpage-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-accent-line {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
}

/* Video Demo */
.video-section { text-align: center; }
.video-wrapper {
  max-width: 800px; margin: 0 auto;
  border-radius: 20px; overflow: hidden;
  border: 2px solid var(--border-gold);
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
}
.play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(200,168,75,0.9);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
  box-shadow: 0 0 40px rgba(200,168,75,0.4);
}
.play-btn:hover { transform: scale(1.1); box-shadow: 0 0 60px rgba(200,168,75,0.6); }
.play-btn svg { fill: #0A0F1E; margin-left: 4px; }

/* Features Grid */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feat-card {
  padding: 28px; transition: transform 0.3s;
}
.feat-card:hover { transform: translateY(-4px); }
.feat-icon { font-size: 36px; margin-bottom: 16px; }
.feat-card h4 { font-family: var(--font-display); font-size: 18px; margin-bottom: 8px; }
.feat-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Screenshot Gallery */
.gallery-scroll {
  display: flex; gap: 20px; overflow-x: auto;
  padding: 20px 0; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 3px; }
.gallery-item {
  flex: 0 0 220px; scroll-snap-align: center;
  border-radius: 20px; overflow: hidden;
  border: 2px solid var(--border-gold);
  background: var(--bg-card);
  height: 420px; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 14px;
}

/* Accordion */
.accordion { max-width: 800px; margin: 0 auto; }
.acc-item { border-bottom: 1px solid var(--border-gold); }
.acc-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer; font-weight: 500; font-size: 16px;
  color: var(--text-primary); transition: color 0.3s;
}
.acc-header:hover { color: var(--accent-gold); }
.acc-arrow { transition: transform 0.3s; color: var(--accent-gold); font-size: 14px; }
.acc-item.open .acc-arrow { transform: rotate(180deg); }
.acc-body {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  color: var(--text-secondary); font-size: 14px; line-height: 1.7;
}
.acc-item.open .acc-body { max-height: 200px; }
.acc-body-inner { padding: 0 0 18px; }

/* CTA Section */
.cta-section {
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(200,168,75,0.05), transparent);
}
.cta-price {
  font-family: var(--font-mono); font-size: 28px; font-weight: 700;
  color: var(--accent-gold); margin: 16px 0 8px;
}
.cta-note { color: var(--text-secondary); font-size: 15px; margin-bottom: 32px; }

/* === New universal CTA block (data-cta-block) === */
.cta-block { max-width: 720px; margin: 24px auto 0; }
.cta-price-row {
  display: flex; align-items: baseline; justify-content: center; gap: 14px;
  flex-wrap: wrap; margin: 18px 0 6px;
}
.cta-price-old {
  font-family: var(--font-mono); font-size: 22px; color: var(--text-secondary);
  text-decoration: line-through; opacity: 0.65;
}
.cta-price-new {
  font-family: var(--font-mono); font-size: 36px; font-weight: 800;
  letter-spacing: -0.5px;
}
.cta-promo-badge {
  display: inline-block; background: linear-gradient(90deg, #ef4444, #f59e0b);
  color: #fff; padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; vertical-align: middle;
}
.cta-promo-until { color: var(--text-secondary); font-size: 13px; margin-bottom: 8px; }
.cta-pay-grid {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 460px; margin: 22px auto 0;
}
.cta-pay-primary {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--cta-color, #C8A84B), color-mix(in srgb, var(--cta-color, #C8A84B) 70%, #000));
  color: #1a0e00; padding: 16px 22px; border-radius: 14px;
  font-weight: 800; font-size: 16px; text-decoration: none;
  border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 10px 28px -8px color-mix(in srgb, var(--cta-color, #C8A84B) 50%, transparent);
  transition: transform .15s, filter .2s;
}
.cta-pay-primary:hover { transform: translateY(-1px); filter: brightness(1.07); }
.cta-pay-secondary-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.cta-pay-secondary {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cta-color, #C8A84B);
  color: var(--cta-color, #C8A84B);
  padding: 11px 10px; border-radius: 12px;
  font-weight: 700; font-size: 13px; text-decoration: none;
  cursor: pointer; font-family: inherit;
  transition: all .15s;
}
.cta-pay-secondary:hover {
  background: color-mix(in srgb, var(--cta-color, #C8A84B) 10%, transparent);
  transform: translateY(-1px);
}
.cta-coming-soon {
  background: rgba(200,168,75,0.06);
  border: 1px dashed rgba(200,168,75,0.4);
  border-radius: 14px;
  padding: 18px 20px;
  color: var(--text-secondary);
  font-size: 14px; line-height: 1.55;
  margin-top: 12px;
}
.cta-coming-soon strong { color: var(--text); }
.cta-divider {
  display: flex; align-items: center; gap: 14px;
  color: var(--text-secondary); font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin: 24px auto 14px; max-width: 460px;
}
.cta-divider::before, .cta-divider::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(255,255,255,0.12);
}
.cta-store-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  max-width: 460px; margin: 0 auto;
}
.cta-store-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 12px;
  font-weight: 700; font-size: 14px;
  text-decoration: none; cursor: pointer; font-family: inherit;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  transition: all .15s;
}
.cta-store-btn.enabled {
  border-color: var(--cta-color, #C8A84B);
  color: var(--cta-color, #C8A84B);
}
.cta-store-btn.enabled:hover {
  background: color-mix(in srgb, var(--cta-color, #C8A84B) 10%, transparent);
  transform: translateY(-1px);
}
.cta-store-btn.disabled {
  opacity: 0.45; cursor: not-allowed;
}
.cta-store-tip {
  text-align: center; font-size: 12px; color: var(--text-secondary);
  margin-top: 10px; letter-spacing: 0.3px;
}
@media (max-width: 480px) {
  .cta-pay-secondary-row { grid-template-columns: 1fr; }
  .cta-price-new { font-size: 30px; }
}

/* === INVESTORS === */
.options-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.option-card {
  padding: 36px; text-align: center; position: relative;
  transition: transform 0.3s;
}
.option-card:hover { transform: translateY(-6px); }
.option-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 2px;
  color: var(--accent-gold); margin-bottom: 16px; text-transform: uppercase;
}
.option-card h3 {
  font-family: var(--font-display); font-size: 24px; margin-bottom: 16px;
}
.option-card p { color: var(--text-secondary); font-size: 14px; margin-bottom: 24px; line-height: 1.7; }
.option-card .btn { width: 100%; justify-content: center; }

/* Tech Stack */
.tech-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 700px; margin: 0 auto; }
.tech-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: 12px;
  background: rgba(200,168,75,0.05);
  border: 1px solid rgba(200,168,75,0.1);
}
.tech-label { font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); }
.tech-value { font-size: 14px; font-weight: 600; }

/* Proof */
.proof-list {
  max-width: 600px; margin: 0 auto;
}
.proof-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(200,168,75,0.08);
  font-size: 15px;
}
.proof-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(16,185,129,0.15); color: var(--success);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}

/* Contact Form */
.contact-form {
  max-width: 640px; margin: 0 auto;
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px;
  background: rgba(20,27,45,0.8);
  border: 1px solid rgba(200,168,75,0.15);
  border-radius: 12px; color: var(--text-primary);
  font-family: var(--font-body); font-size: 15px;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.checkbox-group { display: flex; gap: 16px; flex-wrap: wrap; }
.checkbox-label {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; font-size: 14px; color: var(--text-secondary);
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--accent-gold);
}
.form-success {
  display: none; text-align: center; padding: 24px;
  color: var(--accent-gold); font-size: 16px; font-weight: 500;
}

/* === FOOTER === */
#footer {
  border-top: 1px solid var(--border-gold);
  padding: 60px 0 30px;
  background: rgba(10,15,30,0.8);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { font-size: 20px; margin-bottom: 14px; display: inline-flex; }
.footer-brand p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-col h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--accent-gold); margin-bottom: 16px;
}
.footer-col a {
  display: block; color: var(--text-secondary); font-size: 14px;
  padding: 4px 0; transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent-gold); }
.footer-bottom {
  border-top: 1px solid rgba(200,168,75,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-muted); font-size: 13px;
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(200,168,75,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: all 0.3s; font-size: 14px;
}
.footer-socials a:hover { color: var(--accent-gold); border-color: var(--accent-gold); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-phone { order: -1; }
  .phone-frame { width: 220px; height: 450px; }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .options-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,15,30,0.98); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 28px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 20px; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .showcase-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 36px; }
  .test-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .section-pad { padding: 60px 0; }
  .hero { padding-top: 60px; }
  .subpage-hero { padding-top: 80px; min-height: 50vh; }
  .contact-form { padding: 24px; }
}
