/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: #0f0e2e;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0f0e2e; }
::-webkit-scrollbar-thumb { background: rgba(99,102,241,0.4); border-radius: 3px; }
::selection { background: rgba(99,102,241,0.4); color: #fff; }

/* ─── Utility ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-gradient {
  background: linear-gradient(135deg, #818cf8, #c084fc, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-dots {
  background-image: radial-gradient(circle, rgba(99,102,241,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
}
.section { padding: 112px 0; position: relative; overflow: hidden; }

/* Scroll animation classes */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(15,14,46,0.92);
  backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,0.08);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.navbar-logo img { height: 44px; width: auto; display: block; }
.navbar-links { display: flex; align-items: center; gap: 4px; }
.navbar-links a {
  padding: 8px 16px; border-radius: 10px; font-size: 14px; color: #94a3b8;
  transition: color 0.2s, background 0.2s;
}
.navbar-links a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.navbar-cta {
  display: flex; align-items: center; gap: 12px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 12px; font-size: 14px; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  box-shadow: 0 0 20px rgba(99,102,241,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: scale(1.02); box-shadow: 0 0 30px rgba(99,102,241,0.45); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 12px; font-size: 14px; font-weight: 600; color: #cbd5e1;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s, background 0.2s;
}
.btn-secondary:hover { color: #fff; background: rgba(255,255,255,0.08); }
.burger { display: none; padding: 8px; border-radius: 10px; color: #94a3b8; transition: color 0.2s; }
.burger:hover { color: #fff; }
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 12px; right: 12px; z-index: 40;
  background: rgba(15,14,46,0.97); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 16px; backdrop-filter: blur(20px);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 16px; border-radius: 12px; font-size: 14px;
  font-weight: 500; color: #cbd5e1; transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.mobile-menu .btn-primary { width: 100%; justify-content: center; margin-top: 8px; }

@media (max-width: 768px) {
  .navbar-links, .navbar-cta .btn-primary { display: none; }
  .burger { display: block; }
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center; padding-top: 64px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% -20%, rgba(99,102,241,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(168,85,247,0.15) 0%, transparent 50%),
    #0f0e2e;
}
.hero-bg-dots { position: absolute; inset: 0; opacity: 0.4; }
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(40px);
  animation: pulse-orb 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 400px; height: 400px; top: 25%; left: 20%;
  background: radial-gradient(circle, rgba(99,102,241,0.4), transparent 70%);
}
.hero-orb-2 {
  width: 320px; height: 320px; bottom: 20%; right: 20%;
  background: radial-gradient(circle, rgba(168,85,247,0.35), transparent 70%);
  animation-delay: 2s; animation-duration: 10s;
}
@keyframes pulse-orb {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.28; transform: scale(1.15); }
}
.hero-inner {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; padding: 96px 24px; max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px; font-size: 14px; font-weight: 500; margin-bottom: 24px;
  background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.3); color: #a5b4fc;
}
.hero-badge svg { width: 14px; height: 14px; color: #818cf8; }
.hero-title {
  font-size: clamp(48px, 6vw, 72px); font-weight: 900; line-height: 1.05;
  letter-spacing: -0.02em; color: #fff; margin-bottom: 24px;
}
.hero-desc {
  font-size: 18px; line-height: 1.7; color: #94a3b8; margin-bottom: 32px; max-width: 500px;
}
.hero-desc strong { color: #fff; font-weight: 600; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px;
  font-size: 13px; color: #cbd5e1;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
}
.pill-green { color: #6ee7b7; }
.pill-blue { color: #93c5fd; }
.pill-purple { color: #c4b5fd; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-ctas .btn-primary { padding: 16px 32px; font-size: 16px; border-radius: 16px; }
.hero-ctas .btn-secondary { padding: 16px 32px; font-size: 16px; border-radius: 16px; }

/* Hero visual */
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-glow {
  position: absolute; inset: 0; border-radius: 24px;
  background: radial-gradient(circle at 50% 50%, rgba(99,102,241,0.2), transparent 70%);
}
.mockup-main {
  position: relative; z-index: 10; width: 100%; max-width: 340px;
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(160deg, rgba(30,27,75,0.9), rgba(15,14,46,0.95));
  border: 1px solid rgba(99,102,241,0.3);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: float-main 6s ease-in-out infinite;
}
.mockup-secondary {
  position: absolute; bottom: -24px; left: -40px; z-index: 20; width: 220px;
  border-radius: 14px; overflow: hidden;
  background: linear-gradient(160deg, rgba(30,27,75,0.95), rgba(15,14,46,0.98));
  border: 1px solid rgba(168,85,247,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  animation: float-alt 7s ease-in-out infinite 1s;
}
.mockup-badge {
  position: absolute; top: -16px; right: -24px; z-index: 20;
  padding: 12px 16px; border-radius: 16px;
  background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3);
  backdrop-filter: blur(12px);
  animation: float-badge 5s ease-in-out infinite 0.5s;
}
.mockup-badge-2 {
  position: absolute; top: 45%; right: -40px; z-index: 20;
  padding: 10px 14px; border-radius: 12px;
  background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.25);
  backdrop-filter: blur(12px);
  animation: float-badge 4s ease-in-out infinite 2s;
}
@keyframes float-main {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes float-alt {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(10px) rotate(1deg); }
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.mockup-bar {
  padding: 10px 16px; display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(0,0,0,0.2);
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dot { width: 11px; height: 11px; border-radius: 50%; }
.mockup-url {
  flex: 1; padding: 4px 10px; border-radius: 6px; font-size: 11px; color: #475569;
  background: rgba(255,255,255,0.05);
}
.mockup-body { padding: 20px; }
.mockup-line-lg {
  height: 10px; border-radius: 999px; margin-bottom: 10px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
}
.mockup-line { height: 6px; border-radius: 999px; background: rgba(255,255,255,0.1); margin-bottom: 8px; }
.mockup-btns { display: flex; gap: 8px; margin: 12px 0; }
.mockup-btn-1 {
  height: 32px; padding: 0 14px; border-radius: 8px; font-size: 11px; font-weight: 600;
  color: #fff; display: flex; align-items: center;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
}
.mockup-btn-2 {
  height: 32px; padding: 0 14px; border-radius: 8px; font-size: 11px; color: #94a3b8;
  display: flex; align-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
}
.mockup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 8px; }
.mockup-card-sm {
  height: 40px; border-radius: 10px;
  background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.15);
  font-size: 10px; color: #64748b; display: flex; align-items: center; justify-content: center;
}
.badge-stat { font-weight: 700; font-size: 14px; color: #34d399; }
.badge-label { font-size: 11px; color: #94a3b8; margin-top: 2px; }
.badge-2-title { font-weight: 600; font-size: 12px; color: #fff; }
.badge-2-sub { font-size: 11px; color: #64748b; margin-top: 2px; }
.hero-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 160px; pointer-events: none;
  background: linear-gradient(to top, #0f0e2e, transparent);
}
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
}

/* ─── Section Pills/Tags ─────────────────────────────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px; font-size: 14px; font-weight: 500; margin-bottom: 20px;
}
.section-tag-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.section-title {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 20px;
}
.section-desc { font-size: 18px; color: #64748b; max-width: 520px; margin: 0 auto; line-height: 1.6; }
.section-header { text-align: center; margin-bottom: 64px; }

/* ─── Problem ────────────────────────────────────────────────── */
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.problem-card {
  padding: 24px; border-radius: 20px;
  transition: transform 0.3s;
}
.problem-card:hover { transform: translateY(-4px); }
.problem-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.problem-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.problem-card p { font-size: 14px; color: #94a3b8; line-height: 1.6; }
@media (max-width: 1024px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .problem-grid { grid-template-columns: 1fr; } }

/* ─── Solution ───────────────────────────────────────────────── */
.solution-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.solution-line {
  display: none; position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.4) 20%, rgba(168,85,247,0.4) 50%, rgba(99,102,241,0.4) 80%, transparent);
}
@media (min-width: 1024px) { .solution-line { display: block; } }
.solution-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-icon-wrap { position: relative; margin-bottom: 24px; }
.step-icon {
  width: 80px; height: 80px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center; color: #fff; position: relative; z-index: 1;
}
.step-icon-glow {
  position: absolute; inset: -4px; border-radius: 24px; opacity: 0.2;
  filter: blur(12px); z-index: 0;
}
.step-number {
  position: absolute; top: -8px; right: -8px; z-index: 2;
  width: 24px; height: 24px; border-radius: 50%; font-size: 10px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; color: #94a3b8;
  background: #0f0e2e;
}
.solution-step h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.solution-step p { font-size: 14px; color: #94a3b8; line-height: 1.6; }
@media (max-width: 1024px) { .solution-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .solution-grid { grid-template-columns: 1fr; } }

/* ─── Gallery ────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-card {
  border-radius: 20px; overflow: hidden; cursor: pointer;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.09);
  transition: transform 0.3s, border-color 0.3s;
}
.gallery-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.gallery-preview { padding: 16px; }
.gallery-info { padding: 20px; }
.gallery-title-row { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 8px; }
.gallery-title-row h3 { font-size: 15px; font-weight: 700; color: #fff; }
.gallery-title-row svg { width: 15px; height: 15px; color: #475569; transition: color 0.2s; flex-shrink: 0; }
.gallery-card:hover .gallery-title-row svg { color: #818cf8; }
.gallery-tagline { font-size: 13px; color: #94a3b8; margin-bottom: 16px; }
.gallery-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.gallery-tag { font-size: 11px; padding: 4px 10px; border-radius: 999px; }
.gallery-btn {
  width: 100%; padding: 10px; border-radius: 12px; font-size: 13px; font-weight: 600;
  transition: opacity 0.2s;
}
.gallery-btn:hover { opacity: 0.85; }
/* Mockup mini */
.mini-browser { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.3); }
.mini-bar { padding: 8px 12px; display: flex; align-items: center; gap: 6px; background: rgba(0,0,0,0.4); border-bottom: 1px solid rgba(255,255,255,0.06); }
.mini-dots { display: flex; gap: 3px; }
.mini-dot { width: 8px; height: 8px; border-radius: 50%; }
.mini-url { flex: 1; padding: 2px 8px; border-radius: 4px; font-size: 9px; color: #475569; background: rgba(255,255,255,0.04); }
.mini-body { padding: 12px; }
.mini-line-lg { height: 8px; border-radius: 999px; margin-bottom: 8px; }
.mini-line { height: 5px; border-radius: 999px; background: rgba(255,255,255,0.1); margin-bottom: 6px; }
.mini-btns { display: flex; gap: 6px; margin: 8px 0; }
.mini-btn { height: 24px; padding: 0 10px; border-radius: 6px; font-size: 9px; font-weight: 600; color: #fff; display: flex; align-items: center; }
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 4px; }
.mini-card { height: 32px; border-radius: 8px; }
/* Modal */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  width: 100%; max-width: 440px; border-radius: 28px; overflow: hidden;
  background: rgba(15,14,46,0.97); border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  animation: modal-in 0.22s ease;
}
@keyframes modal-in { from { opacity: 0; transform: scale(0.92) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-preview { padding: 24px; position: relative; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(0,0,0,0.8); }
.modal-body { padding: 24px; }
.modal-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.modal-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.modal-header h3 { font-size: 20px; font-weight: 700; color: #fff; }
.modal-header p { font-size: 13px; color: #64748b; margin-top: 2px; }
.modal-desc { font-size: 14px; color: #94a3b8; line-height: 1.6; margin-bottom: 20px; }
.modal-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.modal-tag { font-size: 13px; padding: 6px 14px; border-radius: 999px; }
.modal-cta {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 14px; border-radius: 16px; font-size: 15px; font-weight: 700; color: #fff;
  transition: opacity 0.2s;
}
.modal-cta:hover { opacity: 0.88; }
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ─── Advantages ─────────────────────────────────────────────── */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.adv-card {
  padding: 24px; border-radius: 20px; position: relative; overflow: hidden;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s;
}
.adv-card:hover { transform: translateY(-4px); }
.adv-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.adv-icon {
  width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.adv-stat { text-align: right; }
.adv-stat-num { font-size: 26px; font-weight: 900; line-height: 1; }
.adv-stat-lbl { font-size: 11px; color: #64748b; margin-top: 2px; }
.adv-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.adv-card p { font-size: 14px; color: #94a3b8; line-height: 1.6; }
@media (max-width: 1024px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .adv-grid { grid-template-columns: 1fr; } }

/* ─── Funding ────────────────────────────────────────────────── */
.funding-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }
.funding-card {
  padding: 24px; border-radius: 20px; position: relative; overflow: hidden;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s;
}
.funding-card:hover { transform: translateY(-4px); }
.funding-num {
  position: absolute; top: 12px; right: 16px;
  font-size: 60px; font-weight: 900; line-height: 1; pointer-events: none; select: none;
}
.funding-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.funding-card h3 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; padding-right: 48px; }
.funding-card p { font-size: 13px; color: #94a3b8; line-height: 1.6; }
.funding-disclaimer {
  display: flex; gap: 16px; align-items: flex-start; padding: 24px; border-radius: 20px; margin-bottom: 40px;
  background: rgba(234,179,8,0.05); border: 1px solid rgba(234,179,8,0.18);
}
.funding-disclaimer svg { width: 18px; height: 18px; color: #eab308; flex-shrink: 0; margin-top: 2px; }
.funding-disclaimer h4 { font-size: 14px; font-weight: 600; color: #facc15; margin-bottom: 4px; }
.funding-disclaimer p { font-size: 13px; color: #94a3b8; line-height: 1.6; }
.funding-disclaimer strong { color: #fff; }
.funding-cta { text-align: center; }
.funding-cta .btn-primary { padding: 16px 32px; font-size: 15px; border-radius: 16px; }
.funding-cta p { font-size: 13px; color: #475569; margin-top: 12px; }
@media (max-width: 1024px) { .funding-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .funding-grid { grid-template-columns: 1fr; } }

/* ─── Form ───────────────────────────────────────────────────── */
.form-section {
  padding: 112px 0; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(99,102,241,0.07) 0%, transparent 70%), #0f0e2e;
}
.form-wrap { max-width: 580px; margin: 0 auto; padding: 0 24px; }
.form-card {
  border-radius: 28px;
  background: rgba(13,12,40,0.9); border: 1px solid rgba(99,102,241,0.2);
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  overflow: visible;
}
.form-steps-header { padding: 24px; border-bottom: 1px solid rgba(255,255,255,0.06); border-radius: 28px 28px 0 0; overflow: hidden; }
.form-steps-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.step-dot-inner {
  width: 36px; height: 36px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  transition: all 0.3s;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: #475569;
}
.step-dot-inner.active { background: rgba(99,102,241,0.2); border: 2px solid #6366f1; color: #818cf8; }
.step-dot-inner.done { background: #10b981; border-color: #10b981; color: #fff; }
.step-dot span { font-size: 10px; color: #475569; }
.form-progress-bar { height: 4px; border-radius: 999px; background: rgba(255,255,255,0.05); overflow: hidden; position: relative; }
.form-progress-fill {
  position: absolute; inset-y: 0; left: 0; border-radius: 999px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  transition: width 0.4s ease;
}
.form-step-label { text-align: right; font-size: 11px; color: #475569; margin-top: 4px; }

.form-body { padding: 24px; min-height: 320px; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.form-step p.form-sub { font-size: 14px; color: #94a3b8; margin-bottom: 20px; margin-top: -12px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 14px; font-weight: 500; color: #cbd5e1; margin-bottom: 8px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  background: #1a1740; border: 1px solid rgba(255,255,255,0.1); color: #e2e8f0;
  font-size: 14px; outline: none; transition: border-color 0.2s;
}
.form-field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
  padding-right: 40px; cursor: pointer;
}
.form-field select option { background: #1a1740; color: #e2e8f0; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: rgba(99,102,241,0.5); box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }
.form-field textarea { resize: none; }
.form-field .err { font-size: 12px; color: #f87171; margin-top: 6px; display: none; }
.form-field .err.show { display: block; }
.radio-opt {
  display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: 14px;
  cursor: pointer; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.025);
  margin-bottom: 10px; transition: all 0.2s;
}
.radio-opt.selected { background: rgba(99,102,241,0.12); border-color: rgba(99,102,241,0.45); }
.radio-opt input { display: none; }
.radio-opt-text { flex: 1; }
.radio-opt-label { font-size: 14px; font-weight: 500; color: #94a3b8; }
.radio-opt.selected .radio-opt-label { color: #fff; }
.radio-opt-sub { font-size: 12px; color: #475569; margin-top: 2px; }
.radio-circle {
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s;
}
.radio-opt.selected .radio-circle { border-color: #6366f1; background: #6366f1; }
.radio-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; display: none; }
.radio-opt.selected .radio-dot { display: block; }
.url-reveal { display: none; }
.url-reveal.show { display: block; margin-top: 8px; }

.form-nav {
  padding: 12px 24px 20px; display: flex; gap: 12px;
  position: sticky; bottom: 0; z-index: 10;
  background: rgba(13,12,40,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(99,102,241,0.15);
  border-radius: 0 0 28px 28px;
  margin-top: 8px;
}
.btn-back {
  display: flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 12px;
  font-size: 14px; font-weight: 500; color: #64748b;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.btn-back:hover { color: #fff; }
.btn-next {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: 12px; font-size: 14px; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  box-shadow: 0 4px 20px rgba(99,102,241,0.3); transition: opacity 0.2s;
}
.btn-next:hover { opacity: 0.9; }
.btn-submit {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: 12px; font-size: 14px; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 20px rgba(16,185,129,0.3); transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.9; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-trust { padding: 0 24px 20px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 16px; }
.form-trust span { font-size: 12px; color: #475569; display: flex; align-items: center; gap: 4px; }
.form-trust svg { width: 11px; height: 11px; color: #059669; }

/* Success state */
.form-success { display: none; padding: 48px 24px; text-align: center; }
.form-success.show { display: block; }
.success-icon {
  width: 96px; height: 96px; border-radius: 28px; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25);
}
.form-success h2 { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.form-success p { font-size: 15px; color: #94a3b8; line-height: 1.6; margin-bottom: 24px; }
.form-success .disclaimer {
  padding: 20px; border-radius: 16px; text-align: left;
  background: rgba(234,179,8,0.05); border: 1px solid rgba(234,179,8,0.15);
}
.form-success .disclaimer p { font-size: 13px; color: #94a3b8; margin: 0; }
.form-success .disclaimer strong { color: #facc15; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-radius: 16px; overflow: hidden; margin-bottom: 12px;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s, border-color 0.2s;
}
.faq-item.open {
  background: rgba(99,102,241,0.06); border-color: rgba(99,102,241,0.25);
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px; text-align: left; gap: 16px; cursor: pointer;
}
.faq-q span {
  font-size: 15px; font-weight: 600; color: #cbd5e1; transition: color 0.2s;
}
.faq-item.open .faq-q span { color: #fff; }
.faq-icon {
  width: 32px; height: 32px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); color: #64748b; transition: all 0.2s;
}
.faq-item.open .faq-icon { background: rgba(99,102,241,0.2); color: #818cf8; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 20px 20px; font-size: 14px; color: #94a3b8; line-height: 1.7;
  border-top: 1px solid rgba(99,102,241,0.12); padding-top: 16px;
}

/* ─── Final CTA ──────────────────────────────────────────────── */
.final-cta {
  padding: 112px 0; text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(99,102,241,0.12) 0%, transparent 70%), #0f0e2e;
}
.final-cta-live {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 500; margin-bottom: 40px;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.25); color: #6ee7b7;
}
.live-dot { position: relative; display: flex; width: 8px; height: 8px; }
.live-ping {
  position: absolute; inset: 0; border-radius: 50%; background: #34d399; opacity: 0.75;
  animation: ping 1.2s ease infinite;
}
.live-core { position: relative; width: 8px; height: 8px; border-radius: 50%; background: #34d399; }
@keyframes ping { 0% { transform: scale(1); opacity: 0.75; } 100% { transform: scale(2.2); opacity: 0; } }
.final-cta h2 { font-size: clamp(36px, 5vw, 60px); font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 24px; }
.final-cta p { font-size: 18px; color: #64748b; max-width: 600px; margin: 0 auto 40px; line-height: 1.6; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.final-cta-btns .btn-primary { padding: 18px 40px; font-size: 18px; border-radius: 18px; }
.final-cta-btns .btn-secondary { padding: 18px 40px; font-size: 17px; border-radius: 18px; }
.final-trust { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.final-trust span { font-size: 14px; color: #475569; display: flex; align-items: center; gap: 6px; }
.final-trust svg { width: 13px; height: 13px; color: #10b981; }

/* ─── Footer ─────────────────────────────────────────────────── */
footer {
  background: #080720; border-top: 1px solid rgba(255,255,255,0.06); padding: 56px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo img { height: 44px; margin-bottom: 16px; }
.footer-logo p { font-size: 14px; color: #475569; line-height: 1.6; }
.footer-col h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: #475569; transition: color 0.2s; }
.footer-col ul li a:hover { color: #cbd5e1; }
.footer-col .email { color: #818cf8; font-size: 14px; }
.footer-col .email:hover { color: #a5b4fc; }
.footer-bottom {
  padding: 32px 0; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p { font-size: 13px; color: #334155; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: #334155; transition: color 0.2s; }
.footer-legal a:hover { color: #64748b; }
.footer-disclaimer {
  margin: 0 24px 32px; padding: 16px 20px; border-radius: 14px; text-align: center;
  background: rgba(234,179,8,0.04); border: 1px solid rgba(234,179,8,0.12);
}
.footer-disclaimer p { font-size: 12px; color: rgba(180,130,0,0.7); line-height: 1.6; }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-trust { display: none; }
  .form-body { min-height: unset; padding: 20px; }
}
