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

:root {
  --bg: #F7F3EE;
  --bg-alt: #EDE8E0;
  --fg: #1A1A18;
  --fg-muted: #6B6860;
  --accent: #1B3D2F;
  --accent-light: #2A5C47;
  --gold: #C9942A;
  --gold-light: #E8B84B;
  --navy: #0F1E18;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid rgba(27,61,47,0.1);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  font-size: 18px;
  color: var(--gold);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 81px);
  background: var(--accent);
  color: var(--white);
}

.hero-left {
  padding: 72px 64px 72px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 440px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-proof {
  display: flex;
  gap: 48px;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.proof-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  max-width: 140px;
  font-weight: 300;
}

.hero-right {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

/* ===== CALL WIDGET ===== */
.call-widget {
  width: 100%;
  max-width: 380px;
  background: #0A140E;
  border-radius: 16px;
  border: 1px solid rgba(201,148,42,0.2);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.call-header {
  background: rgba(27,61,47,0.4);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.call-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.call-dot.live {
  background: #22C55E;
  box-shadow: 0 0 8px #22C55E;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.call-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.call-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.call-msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.call-msg--incoming {
  align-items: flex-start;
}

.call-msg--ai {
  align-items: flex-end;
}

.call-time {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}

.call-msg p {
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 280px;
}

.call-msg--incoming p {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border-bottom-left-radius: 4px;
}

.call-msg--ai p {
  background: var(--accent-light);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.call-booked {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 4px;
}

.booked-icon {
  color: #22C55E;
  font-size: 14px;
  font-weight: 700;
}

.call-booked span:last-child {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ===== SHARED SECTION STYLES ===== */
.problem, .how, .niches, .manifesto {
  padding: 96px 48px;
}

.problem-inner, .how-inner, .niches-inner, .manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 24px;
}

.section-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 640px;
  margin-bottom: 56px;
  font-weight: 300;
}

/* ===== PROBLEM ===== */
.problem {
  background: var(--bg);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--accent);
}

.problem-card {
  padding: 40px 36px;
  background: var(--white);
}

.problem-icon {
  display: block;
  font-size: 28px;
  color: #E84040;
  margin-bottom: 16px;
  font-weight: 700;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent);
}

.problem-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== HOW ===== */
.how {
  background: var(--accent);
  color: var(--white);
}

.how .section-label { color: var(--gold-light); }
.how .section-headline { color: var(--white); }
.how .section-body { color: rgba(255,255,255,0.6); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
}

.how-step {
  padding: 44px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.how-step:nth-child(2n) { border-right: none; }
.how-step:nth-child(3), .how-step:nth-child(4) { border-bottom: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
  width: 40px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.step-content p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

/* ===== NICHES ===== */
.niches {
  background: var(--bg);
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.niche-card {
  padding: 36px 32px;
  background: var(--white);
  border-top: 3px solid var(--accent);
}

.niche-icon {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 16px;
}

.niche-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}

.niche-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--accent);
  color: var(--white);
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--gold-light);
  border-left: 3px solid var(--gold);
  padding-left: 32px;
  margin-bottom: 40px;
}

.manifesto-body {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin-bottom: 40px;
  font-weight: 300;
}

.manifesto-vision {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 40px;
}

.manifesto-vision p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 640px;
  font-weight: 300;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 64px 48px;
  color: var(--white);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-tagline { display: none; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 48px 24px 40px; }
  .hero-right { padding: 40px 24px; min-height: 420px; }
  .hero-proof { flex-direction: column; gap: 24px; }
  .proof-label { max-width: 200px; }

  .problem, .how, .niches, .manifesto { padding: 64px 24px; }

  .problem-grid, .how-steps { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .how-step:last-child { border-bottom: none; }
  .how-step:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .how-step:nth-child(4) { border-bottom: none; }

  .niches-grid { grid-template-columns: 1fr; }
  .niche-card { padding: 28px 24px; }

  .footer { padding: 48px 24px; }

  .manifesto-quote { padding-left: 20px; font-size: 26px; }
}