:root {
  --bg: #f5f2ee;
  --fg: #1a1a18;
  --accent: #c06b1a;
  --accent-light: #f5e8d8;
  --ink: #2d2a26;
  --muted: #7a746d;
  --border: #ded8cf;
  --card: #ffffff;
  --green: #2a5c3f;
  --green-bg: #eaf4ee;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.2; color: var(--fg); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
h4 { font-size: 1rem; }
p { color: var(--muted); }

em { font-style: italic; color: var(--accent); }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 242, 238, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
}
.nav-links { display: flex; gap: 1.25rem; align-items: center; }
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--accent); }

/* ── Hero ── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow { margin-bottom: 1.25rem; }
.hero-headline { margin-bottom: 1.25rem; }
.hero-sub { font-size: 1.05rem; max-width: 440px; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.3;
}

/* ── Phone mockup ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-frame {
  background: #1a1a18;
  border-radius: 28px;
  padding: 18px;
  width: 280px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.12);
}
.phone-header {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  padding: 0 4px;
}
.phone-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.phone-dot.red { background: #ff5f57; }
.phone-dot.amber { background: #febc2e; }
.phone-dot.green { background: #28c840; }
.phone-screen {
  background: #f5f2ee;
  border-radius: 18px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.call-bubble {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: 10px 10px 10px 2px;
  padding: 8px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
}
.call-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 500;
}
.waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 16px;
}
.waveform span {
  display: block;
  width: 2px;
  background: var(--green);
  border-radius: 1px;
  animation: wave 1s ease-in-out infinite;
}
.waveform span:nth-child(1) { height: 6px; animation-delay: 0s; }
.waveform span:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.waveform span:nth-child(3) { height: 8px; animation-delay: 0.2s; }
.waveform span:nth-child(4) { height: 14px; animation-delay: 0.3s; }
.waveform span:nth-child(5) { height: 10px; animation-delay: 0.4s; }
.waveform span:nth-child(6) { height: 6px; animation-delay: 0.5s; }
.waveform span:nth-child(7) { height: 10px; animation-delay: 0.6s; }
@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}
.call-details {
  background: white;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.detail-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
}
.label { color: var(--muted); }
.val { font-weight: 600; color: var(--ink); }
.call-confirmed {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-bg);
  border-radius: 6px;
  padding: 6px 10px;
}

/* ── Shared section ── */
section { padding: 5rem 2rem; }
.section-header { max-width: 620px; margin: 0 auto 3.5rem; text-align: center; }
.section-sub { color: var(--muted); font-size: 1rem; margin-top: 0.75rem; }

/* ── How it works ── */
.how { background: var(--fg); }
.how .eyebrow { color: var(--accent); }
.how h2 { color: white; }
.steps {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}
.step { padding: 1.5rem; }
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 1rem;
}
.step h3 { color: white; font-size: 1.1rem; margin-bottom: 0.75rem; }
.step p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 2rem;
}
.step-connector::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

/* ── Outcomes ── */
.outcomes { background: var(--bg); }
.outcomes-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.outcome-text h2 { margin-bottom: 1rem; }
.outcome-desc { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.outcome-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.outcome-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
}
.outcome-card svg { color: var(--accent); margin-bottom: 0.75rem; }
.outcome-card h4 { color: var(--fg); margin-bottom: 0.4rem; font-size: 0.95rem; }
.outcome-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* ── Industries ── */
.industries { background: white; }
.industry-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.industry {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  background: var(--bg);
  transition: border-color 0.2s;
}
.industry:hover { border-color: var(--accent); }
.industry-icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.industry-icon svg { color: var(--accent); }
.industry h4 { color: var(--fg); margin-bottom: 0.5rem; font-size: 0.95rem; }
.industry p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* ── Pricing ── */
.pricing { background: var(--bg); }
.pricing-cards {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.25rem;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-light);
}
.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 20px;
}
.card-header h4 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: var(--fg); margin-bottom: 0.25rem; }
.card-tagline { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }
.price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 1.75rem;
}
.currency { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--fg); }
.amount { font-family: 'DM Serif Display', serif; font-size: 2.5rem; color: var(--fg); }
.period { font-size: 1rem; color: var(--muted); }
.per-mo { font-size: 0.85rem; color: var(--muted); margin-left: 0.25rem; }
.card-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.card-features li {
  font-size: 0.88rem;
  color: var(--ink);
  padding-left: 1.5rem;
  position: relative;
}
.card-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing-note { max-width: 400px; margin: 2rem auto 0; font-size: 0.85rem; color: var(--muted); text-align: center; }

/* ── Closing ── */
.closing { background: var(--fg); text-align: center; }
.closing-inner { max-width: 640px; margin: 0 auto; padding: 3rem 2rem; }
.closing h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.25rem; }
.closing p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; }
.closing-cta {
  margin-top: 2rem;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--accent);
  font-style: italic;
}

/* ── Footer ── */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 2rem; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--fg); display: block; margin-bottom: 0.25rem; }
.footer p { font-size: 0.82rem; color: var(--muted); }
.footer-links { font-size: 0.82rem; color: var(--muted); }

/* ── Calendly widget ── */
.calendly-widget-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}
.calendly-inline-widget {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .step-connector { display: none; }
  .pricing-cards { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}
@media (max-width: 600px) {
  .hero { padding: 3rem 1.25rem 2.5rem; }
  section { padding: 3.5rem 1.25rem; }
  .industry-grid { grid-template-columns: 1fr; }
  .outcome-cards { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .footer-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
}