:root {
  --bg: #0C0C0E;
  --bg-elevated: #141418;
  --bg-card: #1A1A20;
  --fg: #E8E6E1;
  --fg-muted: #9B9A97;
  --accent: #E8870E;
  --accent-soft: rgba(232, 135, 14, 0.12);
  --accent-glow: rgba(232, 135, 14, 0.25);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

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

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -300px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  width: fit-content;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--fg);
}

.hero h1 .highlight {
  color: var(--accent);
}

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

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

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 4px;
}

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

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

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

.problem-label,
.services-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem h2,
.services h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  max-width: 700px;
}

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

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

.problem-icon {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

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

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

/* === SERVICES === */
.services {
  padding: 120px 48px;
}

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

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.2s ease;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.service-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(232, 135, 14, 0.06) 100%);
  border-color: rgba(232, 135, 14, 0.2);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 40px;
}

.service-tag {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.service-featured h3 {
  font-size: 28px;
}

.service-featured p {
  grid-column: 1 / -1;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

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

/* === CLOSING === */
.closing {
  padding: 140px 48px;
  background: var(--bg-elevated);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.closing-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.location-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

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

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

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

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

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

  .problem,
  .services {
    padding: 80px 24px;
  }

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

  .service-featured {
    grid-column: 1;
    display: block;
  }

  .closing {
    padding: 80px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .site-footer {
    padding: 36px 24px;
  }

  /* Mobile overrides for new sections */
  .stats-bar {
    padding: 24px 16px;
  }
  .stats-bar-inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .stats-bar-item {
    padding: 12px 0;
    width: 100%;
    justify-content: center;
  }
  .stats-bar-divider {
    width: 40px;
    height: 1px;
  }

  .how-it-works {
    padding: 80px 24px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .step-connector {
    display: none;
  }
  .how-it-works-cta {
    margin-top: 40px;
  }

  .trust-badges {
    padding: 32px 16px;
  }
  .trust-badges-inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .badge-item {
    padding: 12px 0;
    width: 100%;
    justify-content: center;
  }
  .badge-sep {
    width: 40px;
    height: 1px;
  }

  .comparison {
    padding: 80px 24px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 14px 12px;
    font-size: 13px;
  }

  .faq {
    padding: 80px 24px;
  }
  .faq-question {
    font-size: 16px;
  }

  .testimonials {
    padding: 80px 24px;
  }
  .testimonials h2 {
    margin-bottom: 12px;
  }
  .testimonials-sub {
    margin-bottom: 48px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-card {
    padding: 32px 28px;
  }
}

/* === STATS BAR === */
.stats-bar {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 48px;
}

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

.stats-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
}

.stats-bar-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.stats-bar-text {
  font-size: 15px;
  color: var(--fg-muted);
  white-space: nowrap;
}

.stats-bar-text strong {
  color: var(--fg);
  font-weight: 700;
}

.stats-bar-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 120px 48px;
}

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

.how-it-works-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.how-it-works h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  max-width: 700px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

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

.step-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.step-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
}

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

.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 72px;
  flex-shrink: 0;
  position: relative;
}

.step-connector::after {
  content: '→';
  position: absolute;
  right: -2px;
  top: -12px;
  color: var(--accent);
  font-size: 16px;
  font-family: var(--font-display);
  font-weight: 600;
}

.how-it-works-cta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

/* === TRUST BADGES === */
.trust-badges {
  padding: 40px 48px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 36px;
}

.badge-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
}

.badge-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

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

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

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

.testimonials h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 620px;
}

.testimonials-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 64px;
  max-width: 540px;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.2s ease;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.testimonial-card-featured {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(232, 135, 14, 0.06) 100%);
  border-color: rgba(232, 135, 14, 0.25);
}

.testimonial-card-tag {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.testimonial-result {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--bg-elevated);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.result-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.result-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(232, 135, 14, 0.3);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

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

/* === COMPARISON TABLE === */
.comparison {
  padding: 120px 48px;
}

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

.comparison-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.comparison h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  max-width: 700px;
}

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table thead th {
  background: var(--bg-elevated);
  padding-bottom: 28px;
}

.comparison-table thead th:first-child {
  text-align: left;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.col-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--fg-muted);
}

.col-buildpipeline .col-logo {
  color: var(--accent);
}

.col-highlight {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.row-label {
  text-align: left;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  white-space: nowrap;
}

.col-buildpipeline {
  background: rgba(232, 135, 14, 0.05);
}

.cell-yes {
  color: #4CAF50;
  font-weight: 600;
}

.cell-no {
  color: var(--fg-muted);
}

.cell-mixed {
  color: #F59E0B;
}

.cell-good {
  color: var(--accent);
  font-weight: 600;
}

.cell-bad {
  color: #EF4444;
}

.check-icon {
  margin-right: 4px;
}

.x-icon {
  margin-right: 4px;
}

.comparison-disclaimer {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}

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

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.faq h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  gap: 16px;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s;
  flex-shrink: 0;
}

details[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 28px;
}

.faq-answer p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

  /* === HOW IT WORKS === */
  .how-it-works {
    padding: 120px 48px;
  }

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

  .how-it-works-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
  }

  .how-it-works h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 64px;
    max-width: 700px;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
  }

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

  .step-number {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
  }

  .step-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
  }

  .step-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
  }

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

  .step-connector {
    width: 40px;
    height: 1px;
    background: var(--border);
    margin-top: 72px;
    flex-shrink: 0;
    position: relative;
  }

  .step-connector::after {
    content: '→';
    position: absolute;
    right: -2px;
    top: -12px;
    color: var(--accent);
    font-size: 16px;
    font-family: var(--font-display);
    font-weight: 600;
  }

  .how-it-works-cta {
    margin-top: 56px;
    display: flex;
    justify-content: center;
  }

  /* === TRUST BADGES === */
  .trust-badges {
    padding: 40px 48px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

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

  .badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 36px;
  }

  .badge-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .badge-text {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--fg);
    white-space: nowrap;
  }

  .badge-sep {
    width: 1px;
    height: 32px;
    background: var(--border);
    flex-shrink: 0;
  }

  /* === COMPARISON TABLE === */
  .comparison {
    padding: 120px 48px;
  }

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

  .comparison-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
  }

  .comparison h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 56px;
    max-width: 700px;
  }

  .comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--border);
  }

  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 20px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }

  .comparison-table tr:last-child td {
    border-bottom: none;
  }

  .comparison-table thead th {
    background: var(--bg-elevated);
    padding-bottom: 28px;
  }

  .comparison-table thead th:first-child {
    text-align: left;
    color: var(--fg-muted);
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

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

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

  .col-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--fg-muted);
  }

  .col-buildpipeline .col-logo {
    color: var(--accent);
  }

  .col-highlight {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
  }

  .row-label {
    text-align: left;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--fg-muted);
    white-space: nowrap;
  }

  .col-buildpipeline {
    background: rgba(232, 135, 14, 0.05);
  }

  .cell-yes {
    color: #4CAF50;
    font-weight: 600;
  }

  .cell-no {
    color: var(--fg-muted);
  }

  .cell-mixed {
    color: #F59E0B;
  }

  .cell-good {
    color: var(--accent);
    font-weight: 600;
  }

  .cell-bad {
    color: #EF4444;
  }

  .check-icon {
    margin-right: 4px;
  }

  .x-icon {
    margin-right: 4px;
  }

  .comparison-disclaimer {
    font-size: 13px;
    color: var(--fg-muted);
    text-align: center;
    margin-top: 20px;
    font-style: italic;
  }

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

  .faq-inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .faq-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
  }

  .faq h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-item:first-child {
    border-top: 1px solid var(--border);
  }

  .faq-question {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--fg);
    gap: 16px;
    user-select: none;
  }

  .faq-question::-webkit-details-marker {
    display: none;
  }

  .faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 400;
    color: var(--accent);
    transition: transform 0.2s;
    flex-shrink: 0;
  }

  details[open] .faq-question::after {
    transform: rotate(45deg);
  }

  .faq-answer {
    padding: 0 0 28px;
  }

  .faq-answer p {
    font-size: 16px;
    color: var(--fg-muted);
    line-height: 1.7;
  }
}