:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #16161f;
  --fg: #e8e8ed;
  --fg-muted: #8a8a9a;
  --fg-dim: #5a5a6a;
  --accent: #00ff88;
  --accent-dim: rgba(0, 255, 136, 0.15);
  --accent-glow: rgba(0, 255, 136, 0.08);
  --red: #ff4444;
  --red-dim: rgba(255, 68, 68, 0.15);
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(0, 255, 136, 0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 22px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.5px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
  overflow: hidden;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 32px;
  border: 1px solid var(--border-accent);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.text-accent {
  color: var(--accent);
}

.text-red {
  color: var(--red);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 680px;
  margin: 0 auto 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 32px 40px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* SECTIONS SHARED */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

/* PROBLEM */
.problem {
  padding: 120px 0;
  background: var(--bg);
}

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

.problem-card {
  padding: 36px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.problem-card:hover {
  border-color: var(--red);
}

.problem-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* SOLUTION */
.solution {
  padding: 120px 0;
  background: var(--bg-elevated);
}

.solution-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.solution-item:last-child {
  border-bottom: none;
}

.solution-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  min-width: 80px;
  line-height: 1;
}

.solution-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.solution-content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* VERTICALS */
.verticals {
  padding: 120px 0;
  background: var(--bg);
}

.verticals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.vertical-pill {
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  transition: all 0.3s;
}

.vertical-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.vertical-example {
  padding: 36px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-accent);
  position: relative;
}

.example-label {
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 4px 14px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 100px;
}

.example-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.example-scenario,
.example-result {
  font-size: 16px;
  line-height: 1.6;
}

.example-scenario {
  color: var(--fg-muted);
}

.example-result {
  color: var(--accent);
  font-weight: 500;
}

/* PRICING */
.pricing {
  position: relative;
  padding: 120px 0;
  background: var(--bg);
  overflow: hidden;
}

.pricing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-top: -28px;
  margin-bottom: 56px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 32px 36px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--border-accent);
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.04) 0%, var(--bg-card) 40%);
}

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

.pricing-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

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

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

.pricing-amounts {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-setup {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--fg-dim);
  margin-bottom: 8px;
}

.pricing-setup span {
  font-weight: 400;
  color: var(--fg-dim);
}

.pricing-monthly {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.pricing-dollar {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg-muted);
  align-self: flex-start;
  margin-top: 8px;
}

.pricing-value {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--fg);
}

.pricing-period {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--fg-dim);
  margin-left: 2px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  background: var(--bg-elevated);
  color: var(--fg);
  border: 1px solid var(--border);
}

.pricing-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.pricing-cta--featured {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.pricing-cta--featured:hover {
  background: #00e07a;
  box-shadow: 0 0 32px rgba(0, 255, 136, 0.25);
}

.pricing-cta--outline {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

.pricing-cta--outline:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--fg-dim);
  max-width: 640px;
  margin: 40px auto 0;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.pricing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.pricing-alt-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.pricing-alt-cta span {
  font-size: 15px;
  color: var(--fg-muted);
}
.pricing-alt-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border-accent);
  transition: all 0.2s;
}
.pricing-alt-btn:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

/* FOUNDING CLIENT PROMO */
.founding-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(255,183,0,0.06) 0%, rgba(255,183,0,0.03) 100%);
  border: 1px solid rgba(255,183,0,0.2);
  border-radius: var(--radius);
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.founding-badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 5px 14px;
  background: #ffd166;
  color: #1a1200;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.founding-main {
  flex: 1;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
  min-width: 200px;
}

.founding-main strong {
  color: #ffd166;
}

.founding-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding: 8px 16px;
  background: rgba(255,183,0,0.08);
  border-radius: 8px;
  border: 1px solid rgba(255,183,0,0.15);
}

.counter-number {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #ffd166;
  line-height: 1;
}

.counter-label {
  font-size: 11px;
  color: rgba(255,183,0,0.6);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Promo callout above cards */
.promo-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: rgba(255,183,0,0.15);
  color: #ffd166;
  border-radius: 100px;
  border: 1px solid rgba(255,183,0,0.25);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.promo-detail {
  font-size: 13px;
  color: var(--fg-dim);
}

/* Promo card variants */
.pricing-card--promo {
  border-color: rgba(255,183,0,0.15);
}

.pricing-card--promo:hover {
  border-color: rgba(255,183,0,0.4);
}

.pricing-promo-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: #ffd166;
  color: #1a1200;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  z-index: 3;
}

.pricing-promo-badge--featured {
  top: -30px;
}

/* Price styling for promo */
.price-original {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--fg-dim);
  text-decoration: line-through;
  margin-right: 8px;
}

.price-arrow {
  color: var(--fg-dim);
  margin-right: 8px;
  font-size: 12px;
}

.price-promo {
  font-family: var(--font-display);
  font-size: 14px;
  color: #ffd166;
  font-weight: 600;
}

.price-promo-lg {
  color: #ffd166;
}

.price-original-inline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--fg-dim);
  text-decoration: line-through;
  margin-left: 8px;
  margin-right: 2px;
}

.pricing-discount-note {
  font-size: 12px;
  color: #ffd166;
  opacity: 0.7;
  margin-top: 6px;
  font-family: var(--font-display);
}

/* Promo CTA */
.pricing-cta--promo {
  background: linear-gradient(135deg, #ffd166, #ffb800);
  color: #1a1200;
  border-color: #ffd166;
}

.pricing-cta--promo:hover {
  background: linear-gradient(135deg, #ffe066, #ffd166);
  box-shadow: 0 0 24px rgba(255,183,0,0.3);
  transform: translateY(-2px);
}

.pricing-note-card {
  font-size: 11px;
  color: var(--fg-dim);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* CLOSING */
.closing {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background: var(--bg-elevated);
  overflow: hidden;
}

.closing h2 {
  max-width: 900px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.closing-glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

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

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

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

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

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

/* HERO CTA BUTTONS */
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hero-cta-primary:hover {
  background: #00e07a;
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
  transform: translateY(-2px);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: transparent;
  color: var(--fg-muted);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

.hero-cta-secondary:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}

.hero-cta-tertiary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: none;
  color: var(--accent);
  border: none;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.hero-cta-tertiary:hover { color: #00e07a; }

/* SOCIAL PROOF */
.social-proof {
  padding: 120px 0;
  background: var(--bg-elevated);
}

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

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

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

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
  font-style: italic;
  flex: 1;
}

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

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.author-title {
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.4;
}

.testimonial-metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.metric-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.metric-label {
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.4;
}

.proof-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 36px 48px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 40px;
}

.proof-number {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
}

.proof-desc {
  font-size: 12px;
  color: var(--fg-dim);
  text-align: center;
  max-width: 120px;
  line-height: 1.4;
}

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

/* FAQ */
.faq {
  padding: 120px 0;
  background: var(--bg);
}

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

.faq-item {
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: var(--border-accent);
}

.faq-q {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 14px;
  line-height: 1.35;
}

.faq-a {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.75;
}

.faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.faq-cta:hover {
  background: #00e07a;
  box-shadow: 0 0 32px rgba(0, 255, 136, 0.25);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .stat-divider {
    width: 48px;
    height: 1px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .solution-item {
    flex-direction: column;
    gap: 16px;
  }

  .solution-number {
    font-size: 32px;
    min-width: auto;
  }

  .verticals-grid {
    gap: 8px;
  }

  .vertical-pill {
    padding: 10px 18px;
    font-size: 13px;
  }

  section h2 {
    margin-bottom: 32px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    order: -1;
  }

  .problem,
  .solution,
  .verticals,
  .closing,
  .pricing {
    padding: 80px 0;
  }

  .section-inner {
    padding: 0 20px;
  }

  .closing h2 {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero-sub {
    font-size: 16px;
  }

  .stat-number {
    font-size: 28px;
  }

  .problem-card {
    padding: 24px;
  }

  .vertical-example {
    padding: 28px 20px;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .proof-stats-bar {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
  }

  .proof-divider {
    width: 48px;
    height: 1px;
  }

  .proof-stat {
    padding: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .social-proof,
  .faq {
    padding: 80px 0;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}