:root {
  --bg: #F8F6F0;
  --fg: #1A1A1A;
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #52B788;
  --amber: #E8A838;
  --amber-dark: #C4801A;
  --muted: #6B6B6B;
  --border: #DEDDD8;
  --card-bg: #FFFFFF;
  --radius: 12px;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.nav-logo {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--green);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* Section shared */
.section-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-headline {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 48px;
}

/* Hero */
.hero { padding: 80px 0 72px; }
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--green);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
}
.proof-item { display: flex; flex-direction: column; }
.proof-number {
  font-family: 'Archivo', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.proof-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual { position: relative; }
.video-card-stack { position: relative; height: 380px; }
.video-card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.video-card-1 { width: 230px; top: 0; left: 0; transform: rotate(-3deg); z-index: 1; }
.video-card-2 { width: 220px; top: 70px; left: 60px; transform: rotate(1.5deg); z-index: 2; }
.video-card-3 { width: 210px; top: 150px; left: 30px; transform: rotate(-1deg); z-index: 3; }
.vc-thumb { height: 130px; border-radius: 8px; background: var(--green); margin-bottom: 10px; position: relative; overflow: hidden; }
.vc-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 10px, rgba(255,255,255,0.04) 10px, rgba(255,255,255,0.04) 20px);
}
.vc-meta { display: flex; align-items: center; gap: 6px; }
.vc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-light); }
.vc-line { height: 4px; border-radius: 2px; background: var(--border); width: 80px; }

.lead-badge {
  position: absolute;
  bottom: 10px;
  right: 0;
  background: var(--green);
  color: white;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(27,67,50,0.3);
  z-index: 4;
  max-width: 240px;
}
.lb-icon {
  width: 32px;
  height: 32px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--green);
  flex-shrink: 0;
}
.lb-text { display: flex; flex-direction: column; }
.lb-top { font-size: 11px; font-weight: 600; opacity: 0.85; }
.lb-bottom { font-size: 13px; font-weight: 700; }

/* How */
.how { background: var(--green); padding: 80px 0; }
.how-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.how .section-eyebrow { color: var(--amber); }
.how .section-headline { color: #fff; margin-bottom: 56px; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.step-number {
  font-family: 'Archivo', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--amber);
  opacity: 0.6;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Archivo', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.step-body { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* Playbook */
.playbook { padding: 80px 0; background: var(--bg); }
.playbook-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.playbook-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 64px; }
.play-item { }
.play-item h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}
.play-item p { font-size: 16px; color: var(--muted); }

/* Pricing */
.pricing { padding: 80px 0; background: var(--card-bg); }
.pricing-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--green);
  border-radius: 20px;
  padding: 40px 36px;
}
.pc-header { margin-bottom: 32px; }
.pc-name {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.pc-price { display: flex; align-items: baseline; gap: 4px; }
.pc-amount {
  font-family: 'Archivo', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: #fff;
}
.pc-period { font-size: 18px; color: rgba(255,255,255,0.6); }
.pc-features { list-style: none; margin-bottom: 32px; }
.pc-features li {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.pc-features li::before {
  content: '\2713  ';
  color: var(--green-light);
  font-weight: 700;
}
.pc-note {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  padding: 16px;
  background: rgba(0,0,0,0.15);
  border-radius: 8px;
}

/* Niches */
.niches { padding: 80px 0; background: var(--bg); }
.niches-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.niche-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.niche-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.nc-icon {
  font-size: 20px;
  color: var(--amber);
  margin-bottom: 12px;
}
.niche-card h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}
.niche-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Closing */
.closing { padding: 96px 0; background: var(--green); }
.closing-inner { max-width: 900px; margin: 0 auto; padding: 0 32px; text-align: center; }
.closing-headline {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing-body { font-size: 20px; color: rgba(255,255,255,0.7); }

/* Footer */
.footer { padding: 48px 0; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.footer-logo {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--green);
  margin-bottom: 8px;
}
.footer-tagline { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.footer-copy { font-size: 13px; color: var(--muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .playbook-grid { grid-template-columns: 1fr; }
  .niche-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 32px; }
}
@media (max-width: 480px) {
  .nav-tagline { display: none; }
  .niche-grid { grid-template-columns: 1fr; }
  .hero-proof { gap: 12px; }
}