/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #FAF9F6;
  --ink: #1A1918;
  --muted: #6B6763;
  --surface: #F0EDE8;
  --border: #E0DBD4;
  --accent: #06D6A0;
  --accent-dark: #04A87C;
  --nav-height: 60px;
}
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 600; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(6, 214, 160, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent-dark);
}
.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { padding: 0 1.5rem; }
.stat:first-child { padding-left: 0; }
.stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
  max-width: 100px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* === PHONE MOCKUP === */
.hero-right {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone-mockup {
  position: relative;
  width: 280px;
}
.phone-frame {
  background: #1A1918;
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 32px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.06);
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0.75rem;
}
.phone-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-meta { flex: 1; }
.phone-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}
.phone-status {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.625rem;
  color: var(--accent);
  margin-top: 0.15rem;
}
.phone-status::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
.phone-call {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(6, 214, 160, 0.08);
  border: 1px solid rgba(6, 214, 160, 0.2);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.75rem;
}
.call-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(6, 214, 160, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.call-info { flex: 1; }
.call-label { display: block; font-size: 0.625rem; color: rgba(255,255,255,0.5); }
.call-number { display: block; font-size: 0.75rem; font-weight: 600; color: #fff; }
.call-badge {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--ink);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.transcript {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 180px;
  overflow: hidden;
}
.msg { display: flex; }
.msg-text {
  font-size: 0.6875rem;
  line-height: 1.5;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  max-width: 85%;
}
.ai-msg { justify-content: flex-start; }
.ai-msg .msg-text {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  border-bottom-left-radius: 3px;
}
.caller-msg { justify-content: flex-end; }
.caller-msg .msg-text {
  background: rgba(6, 214, 160, 0.15);
  color: #fff;
  border-bottom-right-radius: 3px;
}
.booked .msg-text {
  background: rgba(6, 214, 160, 0.2) !important;
  border: 1px solid rgba(6, 214, 160, 0.3);
}
.phone-actions { margin-top: 0.5rem; }
.action-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}
.booked-tag {
  background: rgba(6, 214, 160, 0.15);
  color: var(--accent);
}
.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(6, 214, 160, 0.15);
  animation: ring-pulse 3s ease-out infinite;
  pointer-events: none;
}
.pulse-ring.delay { animation-delay: 1.5s; }
@keyframes ring-pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* === WORKBOOK === */
.workbook {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.section-headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 3rem;
  max-width: 560px;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.workflow-step {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg);
}
.workflow-step:nth-child(2n) { border-right: none; }
.workflow-step:nth-child(3),
.workflow-step:nth-child(4) { border-bottom: none; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.03em;
  min-width: 3rem;
}
.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.step-content p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

/* === OUTCOMES === */
.outcomes {
  background: var(--ink);
  color: #fff;
  padding: 5rem 2rem;
}
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2.5rem;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.outcome {
  padding: 2.5rem 2rem;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.outcome-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.outcome-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.outcomes-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

/* === HOW === */
.how {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.process-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.process-step h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.process-step p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
}
.process-arrow {
  padding-top: 1rem;
  color: var(--border);
  flex-shrink: 0;
}
.pricing-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* === CLOSING === */
.closing {
  padding: 7rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.closing-headline em {
  font-style: italic;
  color: var(--accent-dark);
}
.closing-body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.footer-desc {
  font-size: 0.8125rem;
  color: var(--muted);
  max-width: 260px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  justify-content: flex-end;
  max-width: 400px;
}
.footer-links span {
  font-size: 0.8125rem;
  color: var(--muted);
}
.footer-bottom {
  font-size: 0.75rem;
  color: var(--muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* === MOBILE === */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-right { order: -1; }
  .phone-mockup { width: 240px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-step { border-right: none; border-bottom: 1px solid var(--border); }
  .workflow-step:nth-child(3) { border-bottom: 1px solid var(--border); }
  .workflow-step:nth-child(4) { border-bottom: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .process-arrow { display: none; }
  .footer-inner { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .closing { padding: 5rem 2rem; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.25rem; }
  .section-headline { font-size: 1.75rem; }
  .closing-headline { font-size: 2rem; }
  .outcome-num { font-size: 2rem; }
  .step-num { font-size: 2rem; }
}
