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

:root {
  --bg: #FAFAF5;
  --bg-alt: #F0EFE8;
  --fg: #1A1A18;
  --fg-muted: #6B6B63;
  --green: #1B4332;
  --green-light: #2D6A4F;
  --emerald: #10B981;
  --gold: #D4A853;
  --white: #FFFFFF;
  --border: #E2E0D8;
  --shadow: 0 4px 24px rgba(27,67,50,0.10);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* NAV */
.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: 16px;
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--green);
}
.nav-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

/* HERO */
.hero {
  padding: 80px 0 60px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--green);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--green);
}
.proof-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* PHONE MOCKUP */
.hero-right {
  display: flex;
  justify-content: flex-end;
}
.phone-mockup {
  width: 280px;
  background: #1A1A18;
  border-radius: 32px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(27,67,50,0.25), 0 0 0 1px rgba(255,255,255,0.08);
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
}
.phone-avatar {
  width: 36px;
  height: 36px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
}
.phone-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.phone-name {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.phone-status {
  font-size: 11px;
  color: var(--emerald);
}
.phone-messages {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 4px;
}
.msg-incoming { display: flex; }
.msg-outgoing { display: flex; justify-content: flex-end; }
.bubble {
  max-width: 200px;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.5;
}
.bubble-in {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border-bottom-left-radius: 4px;
}
.bubble-out {
  background: var(--emerald);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.msg-time {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  margin: 2px 0 4px;
}
.phone-input {
  padding: 12px 4px 4px;
  display: flex;
  align-items: center;
}
.typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
}
.typing-indicator span {
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: bounce 1.2s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-4px); opacity: 1; }
}

/* LIVE PREVIEW */
.livepreview {
  padding: 64px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.livepreview-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.livepreview-label { margin-bottom: 40px; }
.lp-tag {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.livepreview-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.flow-step {
  flex: 1;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.flow-step h3 {
  font-size: 16px;
  color: var(--green);
  margin: 12px 0 8px;
}
.flow-step p { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }
.flow-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-arrow {
  display: flex;
  align-items: center;
  color: var(--border);
  padding: 0 12px;
  padding-top: 24px;
}

/* OUTCOMES */
.outcomes { padding: 80px 0; }
.outcomes-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.outcomes-head { margin-bottom: 48px; }
.section-tag {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(24px, 2.5vw, 34px);
  color: var(--green);
  max-width: 560px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.outcome-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.outcome-num {
  font-family: 'Sora', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}
.outcome-card h3 {
  font-size: 15px;
  color: var(--fg);
  margin-bottom: 8px;
}
.outcome-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

/* HOW IT WORKS */
.howitworks { padding: 72px 0; background: var(--green); }
.hiw-header { text-align: center; margin-bottom: 56px; }
.hiw-header .section-tag { color: var(--emerald); }
.hiw-header .section-title { color: var(--white); max-width: none; }
.hiw-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hiw-step {
  padding: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
}
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 16px;
}
.hiw-step h4 {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 10px;
}
.hiw-step p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.hiw-cta {
  text-align: center;
  margin-top: 48px;
}
.hiw-cta p {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  color: var(--emerald);
  font-weight: 600;
}

/* NICHES */
.niches { padding: 80px 0; background: var(--bg-alt); }
.niches-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.niches .section-tag { margin-bottom: 40px; display: block; }
.niches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.niche-item {
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.niche-item h4 {
  font-size: 16px;
  color: var(--green);
  margin-bottom: 8px;
}
.niche-item p { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }

/* CLOSER */
.closer {
  padding: 96px 0;
  background: var(--green);
  text-align: center;
}
.closer-inner { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.closer-content h2 {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--white);
  margin-bottom: 20px;
}
.closer-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--green);
  display: block;
  margin-bottom: 6px;
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-meta {
  font-size: 13px;
  color: var(--fg-muted);
  display: flex;
  gap: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { justify-content: flex-start; }
  .phone-mockup { width: 260px; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps { grid-template-columns: 1fr; }
  .livepreview-flow { flex-direction: column; gap: 16px; }
  .flow-arrow { transform: rotate(90deg); padding: 0; align-self: center; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 600px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr; }
  .hero-proof { gap: 16px; }
  .proof-num { font-size: 18px; }
}