/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0A1628;
  color: #E8E8E8;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TOKENS === */
:root {
  --navy: #0A1628;
  --navy-mid: #0F2040;
  --navy-light: #162B55;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim: rgba(201,168,76,0.15);
  --white: #FFFFFF;
  --text: #CBD5E1;
  --text-dim: #64748B;
  --border: rgba(201,168,76,0.2);
  --gradient: linear-gradient(135deg, #C9A84C 0%, #E8C96A 50%, #C9A84C 100%);
}

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.0); backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(10,22,40,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon { font-size: 1.5rem; }
.logo-text { font-size: 1.4rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.logo-accent { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--text); font-weight: 500; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gradient); color: var(--navy) !important; font-weight: 700 !important;
  padding: 0.6rem 1.4rem; border-radius: 8px; transition: opacity 0.2s, transform 0.2s !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px) !important; }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--navy-mid); border-top: 1px solid var(--border);
  padding: 0;
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.mobile-menu.open { max-height: 400px; }
.mobile-menu a { padding: 1rem 2rem; color: var(--text); border-bottom: 1px solid var(--border); display: block; }
.mobile-menu a:hover { color: var(--white); background: var(--gold-dim); }
.mobile-cta { background: var(--gradient) !important; color: var(--navy) !important; font-weight: 700 !important; text-align: center !important; }

/* === HERO === */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 8rem 0 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(201,168,76,0.15) 0%, transparent 70%),
              radial-gradient(ellipse 60% 60% at 80% 100%, rgba(22,43,85,0.8) 0%, transparent 60%),
              linear-gradient(180deg, #0A1628 0%, #0F2040 100%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-particles canvas { width: 100%; height: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold-dim); border: 1px solid var(--border);
  padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.85rem;
  color: var(--gold); margin-bottom: 1.5rem;
  animation: fadeDown 0.6s ease;
}
.badge-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.1;
  color: var(--white); letter-spacing: -2px; margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease 0.1s both;
}
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub {
  font-size: 1.15rem; color: var(--text); max-width: 600px; line-height: 1.8;
  margin-bottom: 2.5rem; animation: fadeUp 0.6s ease 0.2s both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; animation: fadeUp 0.6s ease 0.3s both; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gradient); color: var(--navy); font-weight: 700;
  padding: 1rem 2rem; border-radius: 12px; font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }
.btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); font-weight: 600; padding: 1rem 2rem;
  border-radius: 12px; font-size: 1rem; transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }
.hero-stats { display: flex; align-items: center; gap: 2rem; animation: fadeUp 0.6s ease 0.4s both; }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--gold); }
.stat-label { font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: scrollBounce 1.5s ease infinite; }
@keyframes scrollBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* === SECTIONS === */
.section { padding: 6rem 0; }
.section-dark { background: var(--navy-mid); }
.section-light { background: #F8FAFC; color: #334155; }
.section-light .section-title { color: #0F172A; }
.section-light .section-sub { color: #475569; }
.section-light .section-tag { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.3); }

/* Adapting cards for light sections */
.section-light .step-card,
.section-light .pricing-card,
.section-light .trust-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.section-light .step-card h3,
.section-light .pricing-card h3,
.section-light .trust-card h3 { color: #0F172A; }

.section-light .step-card p,
.section-light .pricing-card .pricing-desc,
.section-light .pricing-features li,
.section-light .trust-card p { color: #475569; }

.section-light .step-num { color: #E2E8F0; }
.section-light .pricing-card.pricing-featured { background: linear-gradient(135deg, #FFFFFF 0%, rgba(201,168,76,0.08) 100%); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block; background: var(--gold-dim); border: 1px solid var(--border);
  color: var(--gold); font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
.section-title { font-size: clamp(2rem, 3vw, 3rem); font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 1rem; }
.section-sub { color: var(--text); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

/* === STEPS === */
.steps-grid { display: flex; align-items: center; gap: 0; }
.step-card {
  background: var(--navy-light); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem 2rem; flex: 1; text-align: center;
  opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease;
}
.step-card.visible { opacity: 1; transform: translateY(0); }
.step-card:nth-child(1) { transition-delay: 0s; }
.step-card:nth-child(3) { transition-delay: 0.15s; }
.step-card:nth-child(5) { transition-delay: 0.3s; }
.step-num { font-size: 3rem; font-weight: 900; color: var(--border); margin-bottom: 1rem; }
.step-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.step-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.step-card p { color: var(--text); line-height: 1.7; font-size: 0.95rem; }
.step-connector { font-size: 2rem; color: var(--gold); padding: 0 1rem; flex-shrink: 0; }

/* === PRICING === */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pricing-card {
  background: var(--navy); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem 2rem; position: relative;
  opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease;
}
.pricing-card.visible { opacity: 1; transform: translateY(0); }
.pricing-featured { border-color: var(--gold); background: linear-gradient(135deg, var(--navy) 0%, rgba(201,168,76,0.08) 100%); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: var(--navy); font-size: 0.75rem; font-weight: 700;
  padding: 0.3rem 1rem; border-radius: 50px; white-space: nowrap;
}
.pricing-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.pricing-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 0.75rem; }
.pricing-desc { color: var(--text); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.pricing-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.pricing-features li { color: var(--text); font-size: 0.9rem; }
.btn-pricing {
  display: block; text-align: center; border: 1px solid var(--border);
  color: var(--gold); font-weight: 700; padding: 0.875rem 1rem;
  border-radius: 10px; font-size: 0.95rem; transition: background 0.2s;
}
.btn-pricing:hover { background: var(--gold-dim); }
.btn-pricing-featured { background: var(--gradient); color: var(--navy) !important; border: none; }
.btn-pricing-featured:hover { opacity: 0.9; background: var(--gradient) !important; }

/* === TRUST === */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.trust-card {
  background: var(--navy-light); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem; text-align: center;
  opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease;
}
.trust-card.visible { opacity: 1; transform: translateY(0); }
.trust-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.trust-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.trust-card p { color: var(--text); font-size: 0.9rem; line-height: 1.7; }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--navy); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
  opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease;
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-featured { border-color: var(--gold); background: linear-gradient(135deg, var(--navy) 0%, rgba(201,168,76,0.06) 100%); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card > p { color: var(--text); line-height: 1.8; font-size: 0.95rem; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient); color: var(--navy); font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.author-role { color: var(--text-dim); font-size: 0.8rem; }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--navy-light); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  opacity: 1; transform: translateY(0); transition: opacity 0.4s ease, transform 0.4s ease;
}
.faq-item.visible { opacity: 1; transform: translateY(0); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center;
  color: var(--white); font-weight: 600; font-size: 1rem; font-family: 'Inter', sans-serif;
  text-align: left;
}
.faq-icon { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  padding: 0 1.5rem; color: var(--text); line-height: 1.8; font-size: 0.95rem;
}
.faq-answer { padding-bottom: 0; transition: max-height 0.3s ease, padding-bottom 0.3s; }

/* === CTA === */
.cta-section { position: relative; padding: 8rem 0; text-align: center; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201,168,76,0.12) 0%, transparent 70%),
              linear-gradient(180deg, #0F2040 0%, #0A1628 100%);
}
.cta-section h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; color: var(--white); letter-spacing: -1px; margin-bottom: 1rem; position: relative; }
.cta-section p { color: var(--text); font-size: 1.1rem; margin-bottom: 2.5rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-large { padding: 1.2rem 2.5rem; font-size: 1.1rem; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--border); color: var(--text); padding: 1.2rem 2rem;
  border-radius: 12px; font-weight: 600; font-size: 1rem; transition: background 0.2s;
}
.btn-ghost:hover { background: var(--gold-dim); color: var(--white); }

/* === FOOTER === */
.footer { background: #060E1A; border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links h4, .footer-contact h4 { color: var(--white); font-weight: 700; font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-links a, .footer-contact a { color: var(--text-dim); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; justify-content: space-between; color: var(--text-dim); font-size: 0.85rem; }

/* === ANIMATIONS === */
@keyframes fadeDown { from{opacity:0; transform:translateY(-20px)} to{opacity:1; transform:translateY(0)} }
@keyframes fadeUp { from{opacity:0; transform:translateY(20px)} to{opacity:1; transform:translateY(0)} }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .pricing-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-direction: column; }
  .step-connector { transform: rotate(90deg); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .mobile-menu { display: flex; }
  .hero-stats { gap: 1rem; flex-wrap: wrap; }
  .pricing-grid, .trust-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; justify-content: center; }
}
