/* ─── Base ─────────────────────────────────────────────────── */
:root {
  --bg: #F7F4EF;
  --bg-alt: #EFEBE4;
  --fg: #1A1918;
  --fg-muted: #6B6762;
  --accent: #D4920A;
  --accent-dark: #A87208;
  --accent-light: #FBF3DC;
  --border: #E0DAD1;
  --phone-bg: #1C1A18;
  --phone-inner: #252320;
  --ai-badge: #D4920A;
  --caller-badge: #6B6762;
}

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

html { scroll-behavior: smooth; }

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

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 600; line-height: 1.15; }

.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--fg); }
.section-sub { font-size: 1.05rem; color: var(--fg-muted); margin-top: 0.75rem; }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

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

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

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--fg);
  margin-bottom: 1.25rem;
  font-optical-sizing: auto;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 44ch;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat { display: flex; flex-direction: column; }
.stat-value { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--fg-muted); margin-top: 0.2rem; line-height: 1.3; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ─── Phone Mockup ─────────────────────────────────────────── */
.hero-visual { display: flex; justify-content: center; }

.phone-frame {
  background: var(--phone-bg);
  border-radius: 24px;
  padding: 2px;
  width: 320px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.12);
}

.phone-header {
  background: var(--phone-inner);
  border-radius: 22px 22px 0 0;
  padding: 0.9rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-label { font-size: 0.65rem; color: #9A9690; letter-spacing: 0.04em; }
.phone-status { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; color: #4ADE80; display: flex; align-items: center; gap: 0.35rem; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; animation: pulse 1.5s infinite; }

.phone-body { background: var(--phone-inner); border-radius: 0 0 22px 22px; padding: 1rem 1rem 0.75rem; }

.call-timeline { display: flex; flex-direction: column; gap: 0.6rem; }

.call-in { display: flex; gap: 0.6rem; align-items: flex-start; }
.call-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(212,146,10,0.15); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.call-content { flex: 1; }
.call-caller { font-size: 0.72rem; font-weight: 600; color: #E8E5DF; }
.call-number { font-size: 0.65rem; color: #7A7672; margin-top: 1px; }
.call-time { font-size: 0.6rem; color: #5A5651; text-align: right; margin-top: -14px; }

.ai-activity { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 0.5rem; }

.activity-line { display: flex; align-items: baseline; gap: 0.4rem; font-size: 0.68rem; color: #9A9690; line-height: 1.4; }
.activity-badge { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.04em; padding: 1px 5px; border-radius: 3px; flex-shrink: 0; margin-top: 1px; }
.ai-badge { background: rgba(212,146,10,0.2); color: var(--accent); }
.caller-badge { background: rgba(107,103,98,0.3); color: #9A9690; }

.activity-done { font-size: 0.68rem; color: #4ADE80; display: flex; align-items: center; gap: 0.4rem; margin-top: 0.4rem; padding-top: 0.4rem; border-top: 1px solid #2E2C29; }

.phone-footer { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid #2E2C29; }
.mini-tag { font-size: 0.6rem; background: rgba(212,146,10,0.12); color: var(--accent); padding: 2px 7px; border-radius: 99px; }

/* ─── Proof Bar ────────────────────────────────────────────── */
.proof-bar {
  background: var(--fg);
  padding: 1rem 2rem;
}

.proof-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.proof-label { font-size: 0.72rem; color: #9A9690; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }

.proof-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.proof-tag { font-size: 0.78rem; color: #E8E5DF; background: rgba(255,255,255,0.07); padding: 0.3rem 0.8rem; border-radius: 99px; border: 1px solid rgba(255,255,255,0.1); }

/* ─── Features ─────────────────────────────────────────────── */
.features {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.features-header { text-align: center; margin-bottom: 3.5rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.feature-primary {
  background: var(--fg);
  border-color: var(--fg);
}

.feature-primary .feature-title,
.feature-primary .feature-desc { color: #E8E5DF; }
.feature-primary .feature-icon { color: var(--accent); }

.feature-icon { color: var(--accent); margin-bottom: 1rem; }
.feature-title { font-size: 1.1rem; font-weight: 600; color: var(--fg); margin-bottom: 0.5rem; }
.feature-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* ─── How It Works ─────────────────────────────────────────── */
.how-it-works {
  background: var(--bg-alt);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hiw-header { text-align: center; margin-bottom: 3.5rem; }

.steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.step { flex: 1; }
.step-number { font-family: 'Fraunces', serif; font-size: 2.5rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 0.75rem; }
.step-title { font-size: 1rem; font-weight: 600; color: var(--fg); margin-bottom: 0.4rem; }
.step-desc { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.6; }

.step-arrow { color: var(--border); flex-shrink: 0; }

/* ─── Outcomes ─────────────────────────────────────────────── */
.outcomes { padding: 5rem 2rem; }

.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.outcomes-title { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1.25rem; }
.outcomes-body { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 2rem; }

.outcomes-quote { background: var(--bg-alt); border-left: 3px solid var(--accent); padding: 1.25rem 1.5rem; border-radius: 0 12px 12px 0; }
.outcomes-quote blockquote { font-family: 'Fraunces', serif; font-size: 1.05rem; font-style: italic; color: var(--fg); margin-bottom: 0.5rem; }
.outcomes-quote cite { font-size: 0.8rem; color: var(--fg-muted); }

.outcome-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.outcome-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.outcome-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.outcome-text { display: flex; flex-direction: column; }
.outcome-metric { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700; color: var(--fg); line-height: 1.1; }
.outcome-label { font-size: 0.75rem; color: var(--fg-muted); margin-top: 0.2rem; line-height: 1.3; }

/* ─── Closing ───────────────────────────────────────────────── */
.closing {
  background: var(--fg);
  padding: 5rem 2rem;
  text-align: center;
}

.closing-inner { max-width: 680px; margin: 0 auto; }

.closing-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }

.closing-headline { font-size: clamp(2rem, 4vw, 3rem); color: #F7F4EF; margin-bottom: 1.25rem; }
.closing-sub { font-size: 1rem; color: #9A9690; line-height: 1.7; }

.closing-actions { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; margin-top: 2.5rem; }
.closing-cta { background: var(--accent); color: white; text-decoration: none; padding: 0.85rem 2.25rem; border-radius: 12px; font-size: 1rem; font-weight: 600; transition: background 0.2s; display: inline-block; }
.closing-cta:hover { background: var(--accent-dark); }
.closing-cta-sub { font-size: 0.78rem; color: #6B6762; }

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-name { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; color: var(--fg); }
.footer-tagline { font-size: 0.8rem; color: var(--fg-muted); }
.footer-meta { font-size: 0.75rem; color: var(--fg-muted); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .phone-frame { width: 280px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .step-arrow { transform: rotate(90deg); }
  .outcomes-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .outcome-cards { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .proof-tags { gap: 0.35rem; }
}