/* Typography */
:root {
  --bg: #FAFAF7;
  --surface: #FFFFFF;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --accent: #C8960C;
  --accent-bg: #FEF9EC;
  --green-dark: #1E3A1E;
  --green-mid: #2D5A2D;
  --border: #E4E4E0;
  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* Navigation */
nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--green-dark);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-right: auto;
  margin-left: 48px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  display: inline-block;
  padding: 9px 20px;
  background: var(--green-dark);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--green-mid); }

/* Hero */
.hero {
  padding: 80px 48px 64px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--green-dark);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.cta-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--green-dark);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.cta-primary:hover { background: var(--green-mid); transform: translateY(-1px); }
.cta-primary--large { font-size: 18px; padding: 16px 36px; }
.cta-sub {
  font-size: 13px;
  color: var(--fg-muted);
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  display: inline-block;
  padding: 6px 14px;
  background: var(--green-dark);
  color: white;
  font-size: 13px;
  font-weight: 500;
  border-radius: 100px;
}

/* Call Widget */
.call-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.call-widget-header {
  background: var(--green-dark);
  color: white;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}
.call-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.call-dot.active { background: #4CAF50; }
.call-widget-body {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border);
}
.call-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.call-info { display: flex; flex-direction: column; gap: 4px; }
.caller-name { font-weight: 600; font-size: 15px; }
.call-status { font-size: 13px; color: var(--green-mid); font-weight: 500; }
.call-widget-transcript {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 280px;
  overflow-y: auto;
}
.transcript-line { display: flex; gap: 10px; align-items: flex-start; }
.transcript-line.ai .speaker { color: var(--green-mid); font-weight: 600; font-size: 12px; min-width: 28px; }
.transcript-line.human .speaker { color: var(--fg-muted); font-weight: 600; font-size: 12px; min-width: 40px; }
.transcript-line span:last-child { font-size: 14px; line-height: 1.5; color: var(--fg); }
.call-widget-footer {
  padding: 12px 20px;
  background: var(--bg);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
}
.call-result { color: var(--green-mid); font-weight: 600; }

/* Proof bar */
.proof-bar {
  background: var(--green-dark);
  color: white;
  padding: 40px 48px;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-stat { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.proof-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
}
.proof-label { font-size: 14px; opacity: 0.75; line-height: 1.4; }
.proof-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.15); margin: 0 48px; flex-shrink: 0; }

/* Section shared */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--green-dark);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
  max-width: 640px;
}

/* Features */
.features { padding: 80px 48px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--accent-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
}
.feature-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }

/* Industries */
.industries { padding: 0 48px 80px; background: var(--bg); }
.industries-inner { max-width: 1200px; margin: 0 auto; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.industry-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-bg);
}
.industry-icon {
  width: 40px; height: 40px;
  background: var(--accent-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.industry-card span { font-size: 15px; font-weight: 600; color: var(--fg); }

/* Process */
.process { padding: 80px 48px; background: var(--green-dark); color: white; }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process .section-eyebrow { color: var(--accent); }
.process .section-heading { color: white; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.process-step { display: flex; flex-direction: column; gap: 16px; }
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -2px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.process-step p { font-size: 15px; opacity: 0.8; line-height: 1.6; }

/* Closing */
.closing { padding: 96px 48px; background: var(--bg); text-align: center; }
.closing-inner { max-width: 900px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.closing > .closing-inner > p { font-size: 18px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 40px; }
.closing-pricing {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: left;
}
.pricing-card--featured {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: white;
}
.pricing-card--featured .pricing-tier,
.pricing-card--featured .pricing-period { color: var(--accent); }
.pricing-card--featured .pricing-desc { color: rgba(255,255,255,0.8); }
.pricing-tier {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-muted);
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--green-dark);
  letter-spacing: -1px;
}
.pricing-period { font-size: 18px; color: var(--fg-muted); font-weight: 400; }
.pricing-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 700;
}
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-card--featured .pricing-features li::before { color: var(--accent); }
.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 4px;
}
.closing-sub {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 16px;
}

/* The Problem */
.the-problem { padding: 80px 48px; background: var(--surface); }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.problem-icon {
  width: 44px; height: 44px;
  background: #FEE2E2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B91C1C;
  flex-shrink: 0;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.problem-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.55; }
.problem-bottom {
  font-size: 16px;
  color: var(--fg-muted);
  margin-top: 32px;
  text-align: center;
}
.problem-bottom em { color: var(--green-dark); font-weight: 600; font-style: normal; }
.section-sub { font-size: 17px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 40px; max-width: 640px; }

/* Comparison */
.comparison { padding: 80px 48px; background: var(--surface); }
.comparison-inner { max-width: 1200px; margin: 0 auto; }
.comparison-table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table thead th {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  background: var(--bg);
  white-space: nowrap;
}
.comparison-table .col-highlight {
  background: var(--green-dark);
  color: white;
  font-weight: 600;
}
.comparison-table thead .col-highlight {
  color: white;
  border-radius: 8px 8px 0 0;
}
.comparison-table .row-label {
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
}
.comparison-table .cell-yes { color: var(--green-mid); font-weight: 600; }
.comparison-table .cell-no { color: #B91C1C; }
.comparison-table .cell-partial { color: var(--accent); }

/* Book Demo */
.book-demo { padding: 96px 48px; background: var(--green-dark); color: white; }
.book-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.book-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.book-text p { font-size: 16px; opacity: 0.85; line-height: 1.6; margin-bottom: 24px; }
.book-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.book-checklist li {
  font-size: 15px;
  padding-left: 24px;
  position: relative;
  opacity: 0.9;
}
.book-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.book-form-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 36px 32px;
  color: var(--fg);
}
.book-form-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 20px;
}
.book-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.book-form input {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.book-form input:focus, .book-form select:focus { border-color: var(--green-mid); }
.book-select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  background: white;
  color: var(--fg);
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.book-select option[disabled] { color: var(--fg-muted); }
.book-submit-btn {
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  margin-top: 4px;
}
.book-form-note {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 12px;
}
.book-success {
  font-size: 18px;
  font-weight: 600;
  color: var(--green-dark);
  text-align: center;
  padding: 32px 0;
}

/* Footer */
footer { padding: 28px 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 12px; }
.footer-logo { font-family: var(--font-display); font-weight: 900; font-size: 18px; color: var(--green-dark); }
.footer-copy { font-size: 14px; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 900px) {
  nav, .hero, .proof-bar, .features, .industries, .process, .closing, .the-problem, .comparison, .book-demo, footer { padding-left: 24px; padding-right: 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .proof-inner { flex-direction: column; gap: 32px; }
  .proof-divider { display: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .problem-grid { grid-template-columns: 1fr; }
  .book-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .proof-number { font-size: 28px; }
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 10px 10px; }
}