/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Colors */
:root {
  --navy:     #0F1C2E;
  --navy-mid: #162540;
  --amber:    #F59E0B;
  --amber-dim:#C47D0A;
  --cream:    #FAFAF8;
  --ink:      #1a1a2e;
  --muted:    #6B7280;
  --border:   rgba(255,255,255,0.08);
  --card-bg:  #12263D;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 28, 46, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bitter', serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  background: var(--navy);
  min-height: calc(100vh - 56px);
  display: flex;
  align-items: center;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-left { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(245,158,11,0.15);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(245,158,11,0.25);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Bitter', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Bitter', serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero card */
.hero-right { position: relative; z-index: 1; }
.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.card-header {
  background: rgba(255,255,255,0.04);
  padding: 14px 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.card-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.card-dot.green { background: #10B981; }
.card-dot.amber { background: var(--amber); }
.card-content { padding: 24px; display: flex; flex-direction: column; gap: 18px; }
.card-row { display: flex; flex-direction: column; gap: 4px; }
.card-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}
.card-val {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.card-val.rate { color: #10B981; font-size: 1.25rem; font-weight: 700; }
.appt-chip {
  display: inline-block;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.2);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

/* Problem */
.problem { background: var(--cream); padding: 100px 32px; }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-bottom: 16px;
}
.section-label.light { color: var(--amber); }
.section-headline {
  font-family: 'Bitter', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 60px;
  max-width: 640px;
}
.section-headline.light { color: #fff; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.problem-icon {
  width: 52px;
  height: 52px;
  background: rgba(15,28,46,0.04);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 20px;
}
.problem-card h3 {
  font-family: 'Bitter', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}
.problem-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Solution */
.solution { background: var(--navy); padding: 100px 32px; }
.solution-inner { max-width: 1200px; margin: 0 auto; }
.solution-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin-bottom: 60px;
  line-height: 1.7;
}
.solution-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pillar {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.pillar-num {
  font-family: 'Bitter', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  opacity: 0.5;
  flex-shrink: 0;
}
.pillar-body h4 {
  font-family: 'Bitter', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.pillar-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* How */
.how { background: var(--cream); padding: 100px 32px; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 32px;
  padding-bottom: 40px;
  position: relative;
}
.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--amber), rgba(245,158,11,0.15));
  margin-bottom: 12px;
}
.step:last-child .step-line { display: none; }
.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
  font-family: 'Bitter', serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--amber);
}
.step-circle.last { background: var(--amber); color: var(--navy); }
.step-body { padding-top: 8px; }
.step-body h4 {
  font-family: 'Bitter', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.step-body p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
}

/* Pricing */
.pricing { background: #fff; padding: 100px 32px; }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 36px;
  transition: transform 0.2s ease;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  background: var(--navy);
  border-color: var(--amber);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}
.pricing-tier {
  font-family: 'Bitter', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.5); }
.pricing-amount {
  font-family: 'Bitter', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.pricing-card.featured .pricing-amount { color: #fff; }
.pricing-per {
  font-size: 1.25rem;
  font-weight: 400;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--ink);
  padding-left: 24px;
  position: relative;
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.8); }
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}
.pricing-note {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}
.pricing-card.featured .pricing-note { color: rgba(255,255,255,0.4); }
.setup-fee {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 100px;
  padding: 14px 28px;
  display: inline-block;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

/* Closing */
.closing { background: var(--navy); padding: 120px 32px; text-align: center; }
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: 'Bitter', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-text {
  font-family: 'Bitter', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--amber);
}

/* Footer */
.footer { background: #070F1A; padding: 60px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-brand {
  font-family: 'Bitter', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.footer-links span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: color 0.2s;
}
.footer-links span:hover { color: rgba(255,255,255,0.7); }
.footer-links .sep { cursor: default; }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 60px 20px; min-height: auto; }
  .hero-headline { font-size: 2.25rem; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-left, .hero-right { width: 100%; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution-pillars { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .step { gap: 20px; }
  .step-line { height: 40px; }
  .nav-tag { display: none; }
  .pricing-card.featured::before { top: -14px; }
}