/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d1f3c;
  --bg-alt: #0a1629;
  --bg-card: #112443;
  --fg: #f0ece4;
  --fg-muted: #9ba8bc;
  --accent: #e8a838;
  --accent-dim: rgba(232,168,56,0.15);
  --border: rgba(240,236,228,0.1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-decoration: none; }

/* === HERO === */
.hero {
  position: relative;
  padding: 100px 24px 80px;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(232,168,56,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(17,36,67,0.8) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { max-width: 960px; margin: 0 auto; position: relative; z-index: 1; }
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 700px;
}
.hero-lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0d1f3c;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.cta-btn:hover { opacity: 0.85; color: #0d1f3c; }
.cta-secondary { font-size: 14px; color: var(--fg-muted); text-decoration: none; transition: color 0.15s; }
.cta-secondary:hover { color: var(--fg); }

.hero-stats {
  display: flex;
  gap: 0;
  align-items: flex-start;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.stat { padding: 0 40px 0 0; }
.stat:first-child { padding-left: 0; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 180px;
  line-height: 1.4;
}
.stat-divider { width: 1px; background: var(--border); align-self: stretch; margin: 0 32px; }

/* === PROOF === */
.proof { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 24px; }
.proof-inner { max-width: 960px; margin: 0 auto; }
.proof-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 28px; text-align: center; }
.proof-logos { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; }
.proof-logo { display: flex; flex-direction: column; gap: 4px; }
.logo-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--fg); }
.logo-location { font-size: 12px; color: var(--fg-muted); }

/* === FEATURES === */
.features { padding: 100px 24px; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-header { margin-bottom: 64px; }
.section-label { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
  max-width: 600px;
}
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2px; }
.feature-card {
  background: var(--bg-card);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: background 0.2s;
}
.feature-card:hover { background: rgba(17,36,67,0.7); }
.feature-icon { color: var(--accent); margin-bottom: 24px; }
.feature-title { font-size: 18px; font-weight: 600; color: var(--fg); margin-bottom: 12px; }
.feature-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* === HOW IT WORKS === */
.howitworks { background: var(--bg-alt); padding: 100px 24px; }
.howitworks-inner { max-width: 960px; margin: 0 auto; }
.howitworks .section-headline { margin-bottom: 64px; }
.steps { display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; }
.step { flex: 1; min-width: 200px; }
.step-number { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--accent); opacity: 0.4; line-height: 1; margin-bottom: 20px; }
.step-title { font-size: 18px; font-weight: 600; color: var(--fg); margin-bottom: 12px; }
.step-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }
.step-connector { width: 60px; height: 1px; background: var(--border); align-self: 60px; flex-shrink: 0; margin: 0 24px; }
.callout-box {
  margin-top: 64px;
  background: var(--accent-dim);
  border: 1px solid rgba(232,168,56,0.2);
  padding: 36px 40px;
  border-radius: 2px;
}
.callout-box p { font-family: var(--font-display); font-size: 20px; font-style: italic; color: var(--fg); line-height: 1.5; }
.callout-box cite { display: block; margin-top: 16px; font-size: 13px; color: var(--fg-muted); font-style: normal; }

/* === PRICING === */
.pricing { padding: 100px 24px; }
.pricing-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.pricing .section-headline { margin-bottom: 48px; }
.pricing-grid { display: flex; justify-content: center; margin-bottom: 48px; }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px 52px;
  max-width: 460px;
  text-align: left;
  width: 100%;
}
.pricing-tier { font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.pricing-price { font-family: var(--font-display); font-size: 14px; color: var(--fg); margin-bottom: 8px; }
.price-number { font-size: 52px; font-weight: 700; color: var(--fg); }
.price-period { font-size: 16px; color: var(--fg-muted); }
.pricing-desc { font-size: 15px; color: var(--fg-muted); margin-bottom: 32px; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li { font-size: 15px; color: var(--fg); padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; gap: 12px; }
.pricing-features li::before { content: ''; display: inline-block; width: 16px; height: 16px; background: var(--accent); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center; flex-shrink: 0; margin-top: 2px; }
.pricing-note { font-size: 13px; color: var(--fg-muted); }
.pricing-cta { font-family: var(--font-display); font-size: 20px; font-style: italic; color: var(--fg-muted); }

/* === CLOSING === */
.closing { padding: 120px 24px; background: var(--bg-alt); }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: var(--font-display); font-size: clamp(28px, 4.5vw, 56px); font-weight: 600; color: var(--fg); line-height: 1.15; margin-bottom: 24px; }
.closing-sub { font-size: 18px; color: var(--fg-muted); }

/* === FOOTER === */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 48px 24px; }
.footer-inner { max-width: 960px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-logo { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--fg); }
.footer-tagline { display: block; font-size: 12px; color: var(--fg-muted); margin-top: 4px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 14px; color: var(--fg-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--fg); }
.footer-copy { font-size: 12px; color: var(--fg-muted); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; min-height: auto; }
  .hero-stats { gap: 32px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .features { padding: 60px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .howitworks { padding: 60px 20px; }
  .steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .pricing { padding: 60px 20px; }
  .closing { padding: 80px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .proof-logos { gap: 32px; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .pricing-card { padding: 36px 28px; }
}
