:root {
  --bg: #FAFAF8;
  --bg-alt: #F2F0EC;
  --fg: #0F1C2E;
  --fg-muted: #5A6478;
  --accent: #F5A623;
  --accent-dark: #D4891A;
  --surface: #FFFFFF;
  --border: #E5E2DB;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

/* ── HERO ── */
.hero {
  position: relative;
  padding: 96px 24px 80px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(245, 166, 35, 0.04) 40px,
      rgba(245, 166, 35, 0.04) 41px
    );
  pointer-events: none;
}

.hero-inner {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
}

.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 28px;
}

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

.hero-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 56px;
}

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

.hero-stat {
  flex: 1;
  min-width: 160px;
  padding: 0 32px 0 0;
}

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

.hero-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}

.hero-stat-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 32px;
}

/* ── PROOF / WHAT YOU GET ── */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}

.proof-inner { max-width: 1060px; margin: 0 auto; }

.proof-header { max-width: 560px; margin-bottom: 56px; }

.proof-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245, 166, 35, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.proof-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 16px;
}

.proof-subtitle {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.proof-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}

.proof-card:hover { border-color: var(--accent); }

.proof-card-icon { margin-bottom: 16px; }

.proof-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.proof-card-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* ── PRICING ── */
.pricing {
  padding: 80px 24px;
  background: var(--bg);
}

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

.pricing-header { max-width: 480px; margin-bottom: 56px; }

.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 4px 32px rgba(245, 166, 35, 0.15);
}

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

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--fg);
}

.pricing-period {
  font-size: 16px;
  color: var(--fg-muted);
}

.pricing-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-features { list-style: none; margin-bottom: 24px; }

.pricing-feature {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-feature--included::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: rgba(76, 175, 80, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l4 4 6-7' stroke='%234CAF50' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-feature--excluded {
  color: var(--fg-muted);
  text-decoration: line-through;
  opacity: 0.5;
}

.pricing-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  text-align: center;
  padding-top: 8px;
}

/* ── PROCESS ── */
.process {
  background: var(--fg);
  color: var(--bg);
  padding: 80px 24px;
}

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

.process-header { margin-bottom: 64px; }

.process-header .proof-tag {
  background: rgba(245, 166, 35, 0.2);
  color: var(--accent);
}

.process-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  color: var(--bg);
  line-height: 1.2;
  margin-top: 16px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}

.process-step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 20px;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 12px;
}

.process-step-body {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(250, 250, 248, 0.65);
}

.process-quote {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 40px;
}

.process-quote-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 24px);
  font-style: italic;
  font-weight: 400;
  color: rgba(250, 250, 248, 0.8);
  line-height: 1.5;
  max-width: 640px;
}

/* ── CLOSING ── */
.closing {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 96px 24px;
  text-align: center;
}

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}

.closing-promise {
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.closing-promise-text {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.8;
}

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

.footer-inner { max-width: 840px; margin: 0 auto; }

.footer-brand { margin-bottom: 20px; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-links {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer-divider { color: var(--border); }

.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 64px 20px 56px; }
  .hero-lede { margin-bottom: 40px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 48px; }
  .closing { padding: 64px 20px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 38px; }
  .pricing-card { padding: 24px 20px; }
}