:root {
  --navy: #0f1729;
  --navy-mid: #1a2744;
  --navy-light: #243352;
  --slate: #8895a7;
  --cream: #f4f1eb;
  --warm: #faf8f5;
  --amber: #e8a838;
  --amber-soft: #f5d590;
  --amber-glow: rgba(232, 168, 56, 0.15);
  --green: #3db87a;
  --green-soft: rgba(61, 184, 122, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--warm);
  color: var(--navy);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-mid) 60%, #1e3050 100%);
  color: var(--cream);
  padding: 100px 24px 80px;
  overflow: hidden;
  text-align: center;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(232, 168, 56, 0.35);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-accent {
  color: var(--amber);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--slate);
  max-width: 580px;
  margin: 0 auto 40px;
}

.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 32px;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: white;
}

.price-period {
  font-size: 1rem;
  color: var(--slate);
}

.price-note {
  font-size: 0.78rem;
  color: var(--slate);
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,168,56,0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

/* ========== STATS ========== */
.stats {
  background: var(--navy);
  padding: 56px 24px 48px;
  text-align: center;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1;
  min-width: 200px;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
}

.stats-source {
  color: rgba(136, 149, 167, 0.5);
  font-size: 0.72rem;
  margin-top: 32px;
  letter-spacing: 0.02em;
}

/* ========== FEATURES ========== */
.features {
  padding: 96px 24px;
}

.features-inner {
  max-width: 960px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.features-header p {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border: 1px solid rgba(15, 23, 41, 0.06);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(15, 23, 41, 0.08);
}

.feature-card--primary {
  background: var(--navy);
  color: var(--cream);
  border-color: transparent;
}

.feature-card--primary p {
  color: var(--slate);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 20px;
  display: inline-block;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--navy-light);
  line-height: 1.65;
}

/* ========== HOW ========== */
.how {
  background: var(--navy);
  padding: 96px 24px;
  color: var(--cream);
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
}

.how h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 64px;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.how-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 16px;
}

.how-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.how-step p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
}

.how-connector {
  width: 48px;
  height: 1px;
  background: rgba(232, 168, 56, 0.3);
  margin-top: 28px;
  flex-shrink: 0;
}

/* ========== CLOSING ========== */
.closing {
  padding: 96px 24px;
  text-align: center;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.25;
}

.closing p {
  font-size: 1rem;
  color: var(--navy-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.closing-emphasis {
  font-weight: 600;
  color: var(--navy);
  font-size: 1.08rem;
  padding: 24px;
  background: var(--amber-glow);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--amber);
  text-align: left;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy);
  padding: 48px 24px;
  text-align: center;
  color: var(--slate);
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.footer-note {
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.footer-legal {
  font-size: 0.75rem;
  opacity: 0.5;
}

/* ========== CTA BUTTONS ========== */
.hero-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 16px 40px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(232, 168, 56, 0.4);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 168, 56, 0.5);
}

.hero-cta-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--slate);
}

.closing-cta-wrap {
  margin-top: 36px;
  text-align: center;
}

.closing-cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(15, 23, 41, 0.2);
}

.closing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15, 23, 41, 0.3);
}

.closing-cta-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--slate);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero { padding: 72px 20px 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; gap: 32px; align-items: center; }
  .how-connector { width: 1px; height: 32px; }
  .stat-divider { display: none; }
  .stats-inner { flex-direction: column; gap: 28px; }
  .hero-price { flex-wrap: wrap; justify-content: center; padding: 14px 24px; }
  .price-note { border-left: none; margin-left: 0; padding-left: 0; margin-top: 4px; width: 100%; }
}