:root {
  --bg: #F7F4EF;
  --fg: #1A1A1A;
  --accent: #C85C3A;
  --accent-dark: #9E4528;
  --muted: #7A7570;
  --card-bg: #FFFFFF;
  --border: #E2DDD5;
  --font-display: 'Playfair Display', 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(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 400;
}

/* HERO */
.hero {
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
}

/* CALL CARD */
.call-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(26,26,26,0.06);
}
.call-card-label {
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.call-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.call-transcript {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.call-line {
  font-size: 0.8125rem;
  line-height: 1.5;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}
.call-ai {
  background: #F0EBE5;
  color: var(--fg);
  align-self: flex-start;
  max-width: 85%;
  font-style: italic;
}
.call-caller {
  background: var(--accent);
  color: #fff;
  align-self: flex-end;
  max-width: 85%;
}
.call-summary {
  padding: 1rem 1.25rem;
}
.summary-title {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.summary-row {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8125rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}
.summary-row:last-child { border-bottom: none; }
.summary-row span:first-child {
  color: var(--muted);
  min-width: 60px;
  font-weight: 500;
}
.summary-row span:last-child { font-weight: 600; }

/* PROOF */
.proof {
  background: var(--fg);
  color: #fff;
  padding: 3rem 2rem;
}
.proof-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.proof-stat { text-align: center; padding: 0 2rem; }
.proof-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.proof-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  max-width: 160px;
  margin: 0 auto;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

/* HOW */
.how {
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.how-header {
  margin-bottom: 3rem;
}
.how-header h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.how-header p {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 500px;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  padding-top: 0.15rem;
}
.step-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.step-content p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* PRICE */
.price {
  background: #EDE8DF;
  padding: 5rem 2rem;
}
.price-inner { max-width: 1140px; margin: 0 auto; }
.price-header { margin-bottom: 2.5rem; }
.price-header h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.price-header p {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 480px;
}
.price-card {
  background: var(--card-bg);
  border: 2px solid var(--fg);
  border-radius: 1rem;
  padding: 2.5rem;
  display: inline-block;
}
.price-tag {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.price-per {
  font-size: 1.5rem;
  font-weight: 700;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.price-features li {
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.price-features li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.price-footnote {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
}

/* CLOSING */
.closing {
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.closing p {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
}
.footer-desc {
  font-size: 0.8125rem;
  color: var(--muted);
}
.footer-links {
  font-size: 0.8125rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-sep { color: var(--border); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 2.5rem 1.5rem 2rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { order: -1; }
  .hero-sub { max-width: 100%; }
  .proof-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .proof-divider {
    width: 40px;
    height: 1px;
    margin: 0 auto;
  }
  .proof-stat { padding: 0; }
  .how { padding: 3.5rem 1.5rem; }
  .price { padding: 3.5rem 1.5rem; }
  .closing { padding: 3.5rem 1.5rem; }
  .step { grid-template-columns: 50px 1fr; }
  .price-card { display: block; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-tagline { display: none; }
  .call-card { font-size: 0.875rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.25rem; }
  .proof-number { font-size: 2.5rem; }
  .price-tag { font-size: 2.75rem; }
}