/* Fonts */
:root {
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --green: #1B4332;
  --green-light: #2D6A4F;
  --amber: #D97706;
  --bg: #FDFCFA;
  --bg-alt: #F0EDE8;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --border: #E5E0D8;
}

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

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

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--green);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Hero */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--green);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
}
.hero-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 380px;
}
.hero-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-icon-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.hero-icon-text strong { color: var(--text); }

/* Call Widget */
.call-widget {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(27,67,50,0.08), 0 1px 4px rgba(27,67,50,0.05);
  font-size: 0.85rem;
}
.call-widget-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.call-widget-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
}
.call-widget-dot.active { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
.call-widget-label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.call-widget-caller { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--green); margin-bottom: 4px; }
.call-widget-status { color: var(--text-muted); font-size: 0.78rem; margin-bottom: 16px; }
.call-widget-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 20px;
  height: 24px;
}
.call-widget-wave span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--green);
  opacity: 0.4;
  animation: wave 1.2s ease-in-out infinite;
}
.call-widget-wave span:nth-child(1) { height: 8px; animation-delay: 0s; }
.call-widget-wave span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.call-widget-wave span:nth-child(3) { height: 24px; animation-delay: 0.2s; }
.call-widget-wave span:nth-child(4) { height: 16px; animation-delay: 0.3s; }
.call-widget-wave span:nth-child(5) { height: 8px; animation-delay: 0.4s; }
.call-widget-wave span:nth-child(6) { height: 16px; animation-delay: 0.5s; }
.call-widget-wave span:nth-child(7) { height: 24px; animation-delay: 0.6s; }
.call-widget-wave span:nth-child(8) { height: 16px; animation-delay: 0.7s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}
.call-widget-actions { display: flex; flex-direction: column; gap: 8px; }
.call-action {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 8px 12px;
  background: var(--bg);
  border-radius: 8px;
}
.call-action.booked { color: var(--green); background: rgba(27,67,50,0.06); font-weight: 500; }
.call-action svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Section eyebrow */
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 12px;
}

/* How it works */
.how {
  background: var(--bg-alt);
  padding: 80px 40px;
}
.how-header {
  max-width: 1100px;
  margin: 0 auto 56px;
}
.how-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--green);
  max-width: 500px;
}
.how-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.how-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(27,67,50,0.12);
  margin-bottom: 16px;
  line-height: 1;
}
.how-step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
}
.how-step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Who is it for */
.whois { padding: 80px 40px; }
.whois-inner { max-width: 1100px; margin: 0 auto; }
.whois-text { margin-bottom: 48px; }
.whois-headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--green);
  max-width: 600px;
  line-height: 1.3;
}
.whois-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.whois-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.whois-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
}
.whois-icon svg { width: 100%; height: 100%; }
.whois-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 8px;
}
.whois-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* Numbers */
.numbers {
  background: var(--green);
  padding: 60px 40px;
}
.numbers-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.number-item { text-align: center; }
.number-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.number-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* Pricing */
.pricing { padding: 80px 40px; }
.pricing-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 40px;
}
.pricing-card {
  display: inline-block;
  background: white;
  border: 2px solid var(--green);
  border-radius: 16px;
  padding: 40px 48px;
  text-align: left;
  max-width: 400px;
}
.pricing-name {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 24px;
}
.pricing-per { font-size: 1.2rem; font-weight: 400; }
.pricing-features {
  list-style: none;
  margin-bottom: 24px;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: rgba(27,67,50,0.1);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l4 4 6-6' stroke='%231B4332' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Closing */
.closing { padding: 80px 40px; background: var(--green); }
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  color: white;
  max-width: 700px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  line-height: 1.7;
}

/* Footer */
.footer { padding: 32px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--green); margin-bottom: 4px; }
.footer-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; }
.footer-legal { font-size: 0.75rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
  .hero-visual { order: -1; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .whois-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .how, .whois, .pricing, .closing, .how-header { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 600px) {
  .whois-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .pricing-card { padding: 28px 24px; }
  .pricing-price { font-size: 2.5rem; }
}