:root {
  --bg: #F8F5F0;
  --fg: #1A1A18;
  --green: #1A3C2A;
  --green-light: #2A5C3A;
  --orange: #E85D04;
  --orange-light: #F0924B;
  --cream: #F8F5F0;
  --warm-grey: #D4C9BB;
  --text-muted: #7A6F62;
  --border: #E0D9CF;
  --radius: 14px;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

body {
  background: var(--cream);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 80px 80px 0;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, transparent 40%, var(--cream) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-right: 60px;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,93,4,0.08);
  border: 1px solid rgba(232,93,4,0.2);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--green);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green);
  background: rgba(26,60,42,0.07);
  border: 1px solid rgba(26,60,42,0.15);
  padding: 10px 20px;
  border-radius: 999px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

/* ─── HERO VISUAL ─────────────────────────────────────────── */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-left: 40px;
}

.phone-mockup {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 260/540;
  background: var(--green);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(26,60,42,0.3), 0 8px 24px rgba(0,0,0,0.15);
  position: relative;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #0D1F15;
  border-radius: 999px;
}

.phone-screen {
  background: #0D1F15;
  border-radius: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 36px 14px 14px;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
}

.phone-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
}

.phone-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  flex: 1;
}

.phone-online {
  font-size: 0.62rem;
  color: #4ADE80;
  font-weight: 500;
}

.chat-stream {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-msg { display: flex; flex-direction: column; gap: 3px; }
.chat-in { align-items: flex-start; }
.chat-out { align-items: flex-end; }

.bubble {
  max-width: 85%;
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 0.7rem;
  line-height: 1.4;
}

.bubble.in {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border-bottom-left-radius: 4px;
}

.bubble.out {
  background: var(--orange);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.time {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.3);
  padding: 0 4px;
}

.chat-confirm {
  margin-top: 4px;
  display: flex;
  justify-content: flex-end;
}

.confirm-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 12px;
  padding: 8px 12px;
}

.confirm-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #4ADE80;
  flex-shrink: 0;
}

.confirm-text {
  font-size: 0.65rem;
  color: #4ADE80;
  line-height: 1.3;
}

.confirm-text span { opacity: 0.7; }

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  opacity: 0.5;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.4);
  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); }
  50% { transform: translateY(-6px); }
}

.inbox-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 340px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg);
}

.pill-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #fff;
  flex-shrink: 0;
}

.pill-green .pill-icon { background: var(--green); }
.pill-orange .pill-icon { background: var(--orange); }

/* ─── STATS RIBBON ─────────────────────────────────────────── */
.stats-ribbon {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  background: var(--fg);
  color: #fff;
  padding: 44px 80px;
  gap: 0;
}

.stat { padding: 0 32px; }

.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
  max-width: 140px;
}

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

/* ─── STAMP ─────────────────────────────────────────────────── */
.stamp {
  background: var(--green);
  padding: 100px 80px;
}

.stamp-inner {
  max-width: 900px;
}

.stamp-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
}

.stamp-headline em { font-style: italic; color: var(--orange-light); }

.stamp-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 44px;
}

.stamp-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.2s;
}

.service-chip:hover {
  background: rgba(255,255,255,0.15);
}

/* ─── HOW ──────────────────────────────────────────────────── */
.how {
  padding: 100px 80px;
  background: var(--cream);
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.how-header {
  margin-bottom: 80px;
}

.how-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--fg);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 60px;
}

.step {
  padding: 0 60px 0 0;
}

.step + .step {
  border-left: 1px solid var(--border);
  padding-left: 60px;
  padding-right: 0;
}

.step-num {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.step-rule {
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 24px;
  border-radius: 99px;
}

.step-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.2;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.how-cta {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.cta-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.cta-body {
  font-size: 1.05rem;
  color: var(--fg);
  max-width: 480px;
  line-height: 1.6;
}

/* ─── OUTCOMES ─────────────────────────────────────────────── */
.outcomes {
  background: #F0EBE3;
  padding: 100px 80px;
}

.outcomes-header { margin-bottom: 60px; }

.outcomes-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--fg);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}

.outcome {
  background: #fff;
  padding: 48px 44px;
}

.outcome-accent {
  background: var(--green);
}

.outcome-metric {
  font-family: var(--font-head);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.outcome-accent .outcome-metric { color: var(--orange-light); }

.outcome-label {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.outcome-accent .outcome-label { color: #fff; }

.outcome-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.outcome-accent .outcome-note { color: rgba(255,255,255,0.55); }

.outcomes-testimonial {
  background: var(--fg);
  border-radius: var(--radius);
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
}

.outcomes-testimonial::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(232,93,4,0.08);
  pointer-events: none;
}

.quote-mark {
  font-family: var(--font-head);
  font-size: 8rem;
  color: var(--orange);
  line-height: 0.6;
  margin-bottom: 24px;
  display: block;
}

.testimonial-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 700px;
}

.testimonial-credit {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ─── CLOSING ──────────────────────────────────────────────── */
.closing {
  background: linear-gradient(135deg, var(--orange) 0%, #B84300 100%);
  padding: 100px 80px;
  color: #fff;
}

.closing-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 52px;
}

.closing-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.c-stat {}

.c-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.c-highlight .c-num { color: #fff; }

.c-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.c-equals {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}

.closing-final {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.closing-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 580px;
}

.closing-tagline--accent {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 60px 40px 40px; }
  .hero-content { padding-right: 0; }
  .hero-visual { padding-left: 0; margin-top: 40px; }
  .phone-mockup { max-width: 280px; }
  .stats-ribbon { grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px; }
  .stat-divider { display: none; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step + .step { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-right: 0; }
  .outcomes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero, .stamp, .how, .outcomes, .closing { padding-left: 28px; padding-right: 28px; }
  .stats-ribbon { grid-template-columns: 1fr 1fr; padding: 32px 28px; }
  .hero-headline { font-size: 2.8rem; }
  .outcomes-testimonial { padding: 32px 28px; }
  .closing-stats { gap: 16px; }
  .c-num { font-size: 2.4rem; }
}
