:root {
  --navy: #0f1c2e;
  --navy-mid: #1a2d47;
  --navy-light: #243b5a;
  --white: #ffffff;
  --off-white: #f5f3ef;
  --gold: #c9a84c;
  --gold-dim: #a88a3a;
  --muted: #8a9bb0;
  --border: rgba(201, 168, 76, 0.18);
  --radius: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* NAVBAR */
.navbar {
  padding: 18px 40px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.nav-tagline {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--gold-dim); }

/* HERO */
.hero {
  padding: 80px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(38px, 4vw, 62px);
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-dim); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
  border: 1px solid var(--border);
  transition: border-color 0.15s;
}
.btn-ghost:hover { border-color: var(--gold); }
.hero-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-image-wrap img {
  width: 100%;
  display: block;
}

/* SECTION SHARED */
.section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section--dark {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--dark .section { max-width: 100%; }
.section--wide {
  max-width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-headline {
  font-size: clamp(28px, 3vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 52px;
}
.section-center { text-align: center; }
.section-center .section-sub { margin-left: auto; margin-right: auto; }

/* STATS BAR */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-item {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 32px 28px;
  text-align: center;
}
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: var(--gold);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.step-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.step-title {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.step-arrow {
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 22px;
  z-index: 1;
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.feature-content h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  border-color: var(--gold);
  background: var(--navy-mid);
}
.pricing-badge {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.pricing-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.pricing-price sup {
  font-size: 20px;
  vertical-align: super;
  margin-right: 2px;
}
.pricing-period {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.pricing-setup {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 24px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius);
  display: inline-block;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.pricing-cta {
  margin-top: 24px;
  text-align: center;
}

/* SOCIAL PROOF */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-logo-placeholder {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 28px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
.trust-stat {
  text-align: center;
}
.trust-stat .stat-number {
  font-size: 32px;
}
.trust-stat .stat-label {
  font-size: 13px;
}

/* FAQ */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-q {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-q::after { content: '+'; color: var(--gold); font-size: 22px; }
.faq-a {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q::after { content: '−'; }

/* CTA SECTION */
.cta-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-section h2 {
  font-size: clamp(28px, 3vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}
.form-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.15s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
}
.footer-copy { color: var(--muted); font-size: 14px; }

/* MOBILE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-section { grid-template-columns: 1fr; gap: 48px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { justify-content: center; }
}
@media (max-width: 768px) {
  .navbar { padding: 14px 24px; flex-direction: column; gap: 14px; }
  .hero { padding: 60px 24px 48px; }
  .section, .section--wide { padding: 60px 24px; }
  .section--dark { padding: 60px 24px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer { padding: 40px 24px; }
  .form-card { padding: 28px 24px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}
@media (max-width: 480px) {
  .stat-number { font-size: 28px; }
  .pricing-price { font-size: 32px; }
  .hero-headline { font-size: 34px; }
  .section-headline { font-size: 26px; }
}