:root {
  --bg: #F7F4EF;
  --bg-alt: #EEE9E0;
  --fg: #1C1C1A;
  --fg-muted: #6B6B63;
  --accent: #E8A838;
  --accent-dark: #C8861A;
  --green: #2D6A4F;
  --green-light: #3D8A5F;
  --green-bg: #E8F2EC;

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --max-w: 1100px;
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 28, 26, 0.08);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* Hero */
.hero {
  padding: 140px 32px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
}

/* Call Widget */
.call-widget {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(28,28,26,0.1);
  box-shadow: 0 20px 60px rgba(28,28,26,0.1), 0 4px 12px rgba(28,28,26,0.06);
  overflow: hidden;
  font-size: 13px;
}
.call-widget-header {
  background: var(--green);
  color: #fff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 13px;
}
.call-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.call-dot--active {
  background: #5EEAD4;
  box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.3); }
  50% { box-shadow: 0 0 0 5px rgba(94, 234, 212, 0.1); }
}
.call-widget-body { padding: 16px 20px; }
.call-line {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 11px;
  color: var(--fg-muted);
}
.call-transcript { display: flex; flex-direction: column; gap: 10px; }
.transcript-ai, .transcript-caller {
  padding: 10px 14px;
  border-radius: 10px;
  line-height: 1.5;
  font-size: 13px;
}
.transcript-ai {
  background: #F0F7F2;
  color: var(--fg);
  border-bottom-left-radius: 4px;
}
.transcript-caller {
  background: #FFF9F0;
  color: var(--fg);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  max-width: 85%;
}
.call-widget-footer {
  border-top: 1px solid rgba(28,28,26,0.06);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.call-status { font-size: 12px; font-weight: 600; }
.call-status--booked { color: var(--green); }
.call-duration { font-size: 11px; color: var(--fg-muted); }

/* Proof Bar */
.proof {
  background: var(--fg);
  color: #fff;
  padding: 56px 32px;
}
.proof-inner {
  max-width: var(--max-w);
  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 24px; }
.proof-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.proof-label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}
.proof-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.12);
}

/* Offers */
.offers { padding: 96px 32px; }
.offers-header { max-width: var(--max-w); margin: 0 auto 64px; }
.offers-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 12px;
}
.offers-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-top: 8px;
}
.offers-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-card {
  background: #fff;
  border: 1px solid rgba(28,28,26,0.08);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,28,26,0.1);
}
.offer-card--featured {
  border: 2px solid var(--accent);
  background: #FFFBF4;
}
.offer-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}
.offer-icon {
  margin-bottom: 20px;
  display: flex;
}
.offer-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.offer-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.offer-pricing {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(28,28,26,0.08);
}
.offer-price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--fg);
}
.offer-period {
  font-size: 13px;
  color: var(--fg-muted);
  margin-left: 4px;
}
.offer-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.offer-features li {
  font-size: 14px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.offer-features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' fill='%23E8F2EC' stroke='%232D6A4F' stroke-width='1'/%3E%3Cpath d='M5 8.5L7 10.5L11 6.5' stroke='%232D6A4F' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  flex-shrink: 0;
}

/* Process */
.process {
  background: var(--bg-alt);
  padding: 96px 32px;
  border-top: 1px solid rgba(28,28,26,0.06);
  border-bottom: 1px solid rgba(28,28,26,0.06);
}
.process-header { max-width: var(--max-w); margin: 0 auto 56px; }
.process-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--fg);
}
.process-steps {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}
.step-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  padding-right: 32px;
}
.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  margin-top: 40px;
  flex-shrink: 0;
}

/* Closing */
.closing {
  padding: 120px 32px;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}
.closing-note {
  font-size: 15px;
  color: var(--fg-muted);
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background: var(--fg);
  color: rgba(255,255,255,0.6);
  padding: 56px 32px 40px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 40px;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
.footer-links span::before { content: '•'; margin-right: 12px; }
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copy a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-copy a:hover { color: rgba(255,255,255,0.8); }

/* Responsive */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .offers-grid { grid-template-columns: 1fr; }
  .proof-inner { grid-template-columns: 1fr; gap: 32px; }
  .proof-divider { width: 60px; height: 1px; }
  .proof-stat { text-align: left; }
  .process-steps { flex-direction: column; }
  .step-connector { width: 40px; height: 2px; margin: 16px 0; }
}

@media (max-width: 600px) {
  .hero { padding: 120px 20px 60px; }
  .nav-inner { padding: 14px 20px; }
  .proof, .offers, .process, .closing, .footer { padding-left: 20px; padding-right: 20px; }
  .offer-card { padding: 28px 24px; }
}