:root {
  --bg: #0d0f12;
  --fg: #f0ece4;
  --accent: #2dd4bf;
  --accent-dim: rgba(45,212,191,0.12);
  --amber: #f59e0b;
  --muted: #8a8680;
  --border: rgba(240,236,228,0.08);
  --card-bg: rgba(240,236,228,0.04);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

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

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 64px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.hero-stat {
  padding: 0 48px 0 0;
}

.hero-stat:first-child { padding-left: 0; }

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 48px;
}

.stat-val {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
  max-width: 140px;
  display: block;
}

/* PROBLEM */
.problem {
  padding: 100px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(240,236,228,0.02) 50%, var(--bg) 100%);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.problem-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 60px;
  color: var(--fg);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.problem-icon {
  color: var(--amber);
  margin-bottom: 20px;
}

.problem-card-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 10px;
}

.problem-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.problem-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.problem-tag--bad {
  background: rgba(245,158,11,0.12);
  color: var(--amber);
}

/* HOW */
.how {
  padding: 100px 48px;
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-label, .pricing-label, .process-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.how-heading, .pricing-heading, .process-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 64px;
  color: var(--fg);
}

.steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.step {
  flex: 1;
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
}

.step-arrow {
  color: var(--accent);
  padding: 0 24px;
  flex-shrink: 0;
}

.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.step-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* PRICING */
.pricing {
  padding: 100px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(45,212,191,0.03) 50%, var(--bg) 100%);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 480px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.pricing-card--featured {
  border-color: var(--accent);
  background: rgba(45,212,191,0.06);
}

.pricing-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.pricing-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 12px;
}

.pricing-period {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
}

.pricing-detail {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-roi {
  font-size: 15px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  max-width: 480px;
  margin: 0 auto;
}

/* PROCESS */
.process {
  padding: 100px 48px;
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.process-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.process-card-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 8px;
}

.process-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-tagline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 60px 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-links {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-sep {
  width: 4px;
  height: 4px;
  background: var(--border);
  border-radius: 50%;
  display: block;
}

/* TRUST ROW (lead capture section) */
.trust-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.trust-row-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.trust-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.trust-stat {
  padding: 0 32px 0 0;
  text-align: center;
}

.trust-stat:first-child { padding-left: 0; }

.trust-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin-right: 32px;
}

.trust-stat-val {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-stat-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
  display: block;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-logo-chip {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { padding: 80px 24px 60px; }
  .problem, .how, .pricing, .process, .closing, .footer { padding: 80px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; gap: 16px; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .hero-stat-row { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0; }
}

/* TRUST BAR */
.trust-bar {
  padding: 28px 48px;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-bar-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.03em;
}

/* TESTIMONIALS */
.testimonials {
  padding: 100px 48px;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.testimonials-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--fg);
}

.testimonials-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 56px;
  max-width: 480px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.25s ease;
}

.testimonial-card:hover {
  border-color: rgba(45, 212, 191, 0.3);
}

.testimonial-card--featured {
  border-color: var(--accent);
  background: rgba(45, 212, 191, 0.06);
}

.quote-mark {
  display: block;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--fg);
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-avatar.hvac {
  background: rgba(45, 212, 191, 0.2);
  color: var(--accent);
}

.testimonial-avatar.salon {
  background: rgba(168, 85, 247, 0.2);
  color: #a855f7;
}

.testimonial-avatar.dentist {
  background: rgba(245, 158, 11, 0.2);
  color: var(--amber);
}

.testimonial-avatar.restaurant {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.testimonial-avatar.realestate {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.testimonial-result {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.result-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(45, 212, 191, 0.12);
  color: var(--accent);
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-bar { padding: 24px; }
}

@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
  .stat-val { font-size: 28px; }
  .testimonials { padding: 60px 24px; }
  .trust-stats { flex-direction: column; gap: 20px; }
  .trust-stat-divider { display: none; }
  .trust-stat { padding: 0; }
  .trust-logos { gap: 6px; }
}