/* ==========================================================================
   JG Web Design — styles.css
   Design system for the one-page site. Built to CLAUDE.md + MASTER_STANDARDS.md.
   Palette is intentionally restrained: dark base + blue primary + cyan accent.
   No purple. No glassmorphism. No gradient text on headlines.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --bg-primary: #0A0A1A;
  --bg-card: #111827;
  --bg-dark: #0D1117;
  --border: #1E2A3A;
  --blue: #0066FF;
  --blue-dark: #0052CC;
  --cyan: #00E5CC;
  --cyan-glow: rgba(0, 229, 204, 0.15);
  --blue-glow: rgba(0, 102, 255, 0.15);
  --text-white: #FFFFFF;
  --text-secondary: #A0A0B0;
  --gold: #FFC107;
  --green: #00C853;
  --red: #FF4444;
  --nav-height: 72px;
}

/* --------------------------------------------------------------------------
   2. Reset + base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--cyan); text-decoration: none; transition: color 200ms ease; }
a:hover { color: var(--text-white); }

button { font: inherit; color: inherit; }

/* Anchor targets clear the fixed nav when scrolled to */
[id] { scroll-margin-top: calc(var(--nav-height) + 24px); }

/* --------------------------------------------------------------------------
   3. Accessibility
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Remove the default outline only where focus-visible is supported */
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1100;
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--bg-card); }
.section--border { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
@media (max-width: 768px) { .section { padding: 60px 0; } }

/* --------------------------------------------------------------------------
   5. Typography
   -------------------------------------------------------------------------- */
/* translateZ(0) forces its own compositing layer — without it this weight/size of Space Grotesk rasterizes with a faint ghosted double-edge in Chromium. */
.headline { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.15; transform: translateZ(0); }
.h1 { font-size: clamp(36px, 5vw, 64px); }
.h2 { font-size: clamp(28px, 4vw, 42px); }
.h3 { font-size: clamp(20px, 3vw, 28px); }
.h4 { font-size: clamp(18px, 2vw, 22px); }

.text-cyan { color: var(--cyan); }
.text-blue { color: var(--blue); }
.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }

.label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); }
.body-lg { font-size: 18px; line-height: 1.7; }
.body-md { font-size: 16px; line-height: 1.7; }
.body-sm { font-size: 14px; line-height: 1.6; }

/* AEO/GEO marker — matches schema `speakable` selectors. Visual weight only. */
.speakable { font-size: 17px; line-height: 1.75; }

.pull-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  border-left: 3px solid var(--cyan);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  max-width: 780px;
}
.pull-quote cite { display: block; margin-top: 12px; font-family: 'Inter', sans-serif; font-size: 14px; font-style: normal; color: var(--text-secondary); }

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 600;
  cursor: pointer; transition: all 200ms ease; border: none;
  text-decoration: none; min-height: 48px; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 4px 20px var(--blue-glow); transform: translateY(-1px) scale(1.02); color: #fff; }
.btn-primary:active { transform: scale(0.98); }
.btn-secondary { background: transparent; color: #fff; border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0, 229, 204, 0.05); }
.btn-cyan { background: transparent; color: var(--cyan); border: 1.5px solid var(--cyan); }
.btn-cyan:hover { background: rgba(0, 229, 204, 0.1); color: var(--cyan); }
.btn-lg { padding: 16px 36px; font-size: 18px; }
.btn-full { width: 100%; }
@media (max-width: 480px) { .btn { white-space: normal; text-align: center; } }

/* --------------------------------------------------------------------------
   7. Cards
   -------------------------------------------------------------------------- */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: all 200ms ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px var(--blue-glow); border-color: var(--cyan); }
.card--cyan-top { border-top: 2px solid var(--cyan); }
.card--cyan-left { border-left: 2px solid var(--cyan); border-radius: 0 12px 12px 0; }
.card--featured { border: 1.5px solid var(--cyan); box-shadow: 0 0 32px var(--cyan-glow); }
@media (max-width: 768px) { .card { padding: 24px; } }

/* --------------------------------------------------------------------------
   8. Grid
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2-1 { grid-template-columns: 2fr 1fr; }
.grid-1-2 { grid-template-columns: 1fr 2fr; }
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   9. Navigation — one-page anchor nav
   -------------------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px; height: var(--nav-height);
  display: flex; align-items: center;
  transition: background 300ms ease, box-shadow 300ms ease;
}
/* Solid, not frosted — MASTER_STANDARDS forbids backdrop-filter blur. */
.nav.scrolled { background: var(--bg-primary); box-shadow: 0 1px 0 rgba(0, 229, 204, 0.15); }
/* max-width 1400, not 1200 (unlike .container) — logo + phone + 4 links + CTA button need room to breathe on wide viewports where .nav__links is shown. */
.nav__inner { max-width: 1400px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
/* flex-shrink:0 — without it, flexbox shrinks the logo (a replaced element, exempt from the usual min-content protection) down to a sliver whenever the nav links run tight on space. */
.nav__left { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.nav__logo-link { flex-shrink: 0; }
.nav__logo { height: 40px; width: auto; flex-shrink: 0; }
.nav__phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: color 200ms ease;
}
.nav__phone i { color: var(--cyan); font-size: 12px; }
.nav__phone:hover { color: #fff; }
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__link {
  position: relative; padding: 8px 12px;
  font-size: 15px; font-weight: 500; color: #fff; text-decoration: none;
  background: none; border: none; transition: color 200ms ease;
  white-space: nowrap; cursor: pointer;
}
.nav__link::after {
  content: ''; position: absolute; bottom: 4px; left: 12px; right: 12px; height: 2px;
  background: var(--cyan); transform: scaleX(0); transform-origin: left;
  transition: transform 200ms ease;
}
.nav__link:hover { color: var(--cyan); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: all 300ms ease; }

.nav__mobile {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--bg-primary); padding: 32px 24px; overflow-y: auto; z-index: 999;
}
.nav__mobile.open { display: block; }
.nav__mobile-link {
  display: block; width: 100%; text-align: left;
  padding: 16px 0; font-size: 18px; font-weight: 600; color: #fff;
  text-decoration: none; background: none; border: none;
  border-bottom: 1px solid var(--border);
  font-family: 'Space Grotesk', sans-serif; cursor: pointer;
}
/* 1200px: logo + phone number + the condensed 4-link nav + CTA button measure ~1052px at minimum (verified), so 1200px leaves a safe margin without overflowing .nav__inner. */
@media (max-width: 1200px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* --------------------------------------------------------------------------
   10. Hero
   -------------------------------------------------------------------------- */
.hero { padding: 160px 0 100px; position: relative; overflow: hidden; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; text-align: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px;
  padding: 8px 16px; font-size: 13px; color: var(--text-secondary); margin-bottom: 24px;
}
.hero__badge span { color: var(--cyan); font-weight: 600; }
.hero__trust {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 8px 24px; margin-top: 32px;
  font-size: 13px; color: var(--text-white); font-weight: 500; letter-spacing: 0.5px;
}
.hero__trust-item { display: flex; align-items: center; gap: 6px; }
.hero__trust-item i { color: var(--cyan); font-size: 12px; }
.hero__ctas { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
@media (max-width: 768px) { .hero { padding: 120px 0 72px; } }

/* --------------------------------------------------------------------------
   11. Entity block (GEO/AEO)
   -------------------------------------------------------------------------- */
.entity-block {
  background: var(--bg-card);
  border-left: 2px solid var(--cyan);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 32px auto;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  text-align: left;
}

/* --------------------------------------------------------------------------
   12. Section header
   -------------------------------------------------------------------------- */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-header .label { margin-bottom: 12px; display: block; }
.section-header h2 { margin-bottom: 16px; }
.section-header p:not(.label) { color: var(--text-secondary); font-size: 18px; }
@media (max-width: 768px) { .section-header { margin-bottom: 40px; } }

/* --------------------------------------------------------------------------
   13. Leak items (where opportunities are leaking)
   -------------------------------------------------------------------------- */
.leak-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.leak-item:last-child { border-bottom: none; }
.leak-item__icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(255, 68, 68, 0.1); border: 1px solid rgba(255, 68, 68, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 16px; flex-shrink: 0;
}
.leak-item__title { font-weight: 600; font-size: 16px; margin-bottom: 4px; }
.leak-item__desc { font-size: 14px; color: var(--text-secondary); }

/* --------------------------------------------------------------------------
   14. AI Employee cards
   -------------------------------------------------------------------------- */
.employee-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 28px; position: relative; transition: all 200ms ease;
  display: flex; flex-direction: column;
}
.employee-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px var(--blue-glow); border-color: var(--cyan); }
.employee-card__header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.employee-card__number {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.employee-card__label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-secondary); }
.employee-card__avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: #fff;
  margin: 0 auto 16px;
}
.employee-card__name { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; text-align: center; }
.employee-card__title { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--cyan); text-align: center; margin-top: 4px; }
.employee-card__divider { height: 1px; background: var(--border); margin: 16px 0; }
.employee-card__outcome { font-size: 15px; font-weight: 600; color: #fff; font-style: italic; text-align: center; line-height: 1.5; }

/* --------------------------------------------------------------------------
   15. Journey / process flow (Assess → Identify → Recommend → Implement → Manage)
   -------------------------------------------------------------------------- */
.journey-flow { display: flex; flex-direction: column; gap: 0; }
.journey-step { display: flex; align-items: flex-start; gap: 20px; position: relative; }
.journey-step__left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; align-self: stretch; }
.journey-step__number {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; z-index: 1; flex-shrink: 0;
}
.journey-step__line { width: 2px; flex: 1; background: var(--border); min-height: 40px; margin: 4px 0; }
.journey-step:last-child .journey-step__line { display: none; }
.journey-step__content { padding: 10px 0 30px; }
.journey-step__title { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.journey-step__desc { font-size: 14px; color: var(--text-secondary); }

/* --------------------------------------------------------------------------
   16. Checklist
   -------------------------------------------------------------------------- */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: #fff; }
.checklist li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--cyan);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --------------------------------------------------------------------------
   17. Review cards
   -------------------------------------------------------------------------- */
.review-card {
  background: var(--bg-card); border: 1px solid var(--border); border-top: 2px solid var(--cyan);
  border-radius: 8px; padding: 24px;
}
.review-card__stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; }
.review-card__quote { font-size: 15px; font-style: italic; line-height: 1.7; color: #fff; margin-bottom: 16px; }
.review-card__quote::before { content: '"'; color: var(--cyan); font-size: 24px; font-style: normal; line-height: 0; vertical-align: -8px; margin-right: 4px; }
.review-card__author { font-weight: 600; font-size: 14px; }
.review-card__detail { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }
.review-card__google { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--text-secondary); margin-top: 12px; }

/* --------------------------------------------------------------------------
   18. Pricing cards
   -------------------------------------------------------------------------- */
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 32px; display: flex; flex-direction: column; height: 100%;
  transition: all 200ms ease;
}
.pricing-card:hover { border-color: var(--cyan); }
.pricing-card--featured { border: 1.5px solid var(--cyan); box-shadow: 0 0 32px var(--cyan-glow); position: relative; }
.pricing-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--cyan); color: var(--bg-primary);
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 4px; white-space: nowrap;
}
.pricing-card__name { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.pricing-card__for { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.pricing-card__price { font-family: 'Space Grotesk', sans-serif; font-size: clamp(32px, 4vw, 44px); font-weight: 700; line-height: 1; }
.pricing-card__period { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 500; color: var(--text-secondary); }
.pricing-card__terms { font-size: 14px; color: var(--text-secondary); margin-top: 8px; }
.pricing-card__divider { height: 1px; background: var(--border); margin: 24px 0; }
.pricing-card__features { flex: 1; margin-bottom: 24px; }
.pricing-card__note { font-size: 13px; color: var(--text-secondary); margin-top: 12px; text-align: center; }

/* --------------------------------------------------------------------------
   19. Industry cards
   -------------------------------------------------------------------------- */
.industry-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
  padding: 16px 18px; display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 500; transition: all 200ms ease;
}
.industry-card:hover { border-color: var(--cyan); transform: translateY(-2px); }
.industry-card i { color: var(--cyan); font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   20. Stats
   -------------------------------------------------------------------------- */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .stats-row { grid-template-columns: 1fr; } }
.stat-block {
  background: var(--bg-card); border: 1px solid var(--border); border-left: 2px solid var(--cyan);
  border-radius: 0 8px 8px 0; padding: 24px;
}
.stat-block__number { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; color: var(--cyan); line-height: 1; }
.stat-block__label { font-size: 15px; color: #fff; margin-top: 10px; line-height: 1.5; }
.stat-block__source { font-size: 12px; color: var(--text-secondary); margin-top: 12px; }
.stat-block__source a { color: var(--text-secondary); text-decoration: underline; }
.stat-block__source a:hover { color: var(--cyan); }

/* --------------------------------------------------------------------------
   21. Forms
   -------------------------------------------------------------------------- */
.form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 768px) { .form__row { grid-template-columns: 1fr; } }
.form__group { display: flex; flex-direction: column; gap: 8px; }
.form__group label { font-size: 14px; font-weight: 500; color: #fff; }
.form__input, .form__select, .form__textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-white);
  transition: border-color 200ms ease, box-shadow 200ms ease;
  min-height: 48px;
}
.form__input::placeholder, .form__textarea::placeholder { color: var(--text-secondary); }
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
}
.form__textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.form__select { appearance: none; cursor: pointer; padding-right: 40px;
  background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%), linear-gradient(135deg, var(--cyan) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.form__select option { background: var(--bg-dark); color: var(--text-white); }
.form__error { font-size: 13px; color: var(--red); }
.form__success { font-size: 15px; color: var(--green); }

.calc-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  margin-top: 8px;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cyan);
  cursor: pointer;
  transition: transform 150ms ease;
  box-shadow: 0 0 0 4px var(--cyan-glow);
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cyan);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 0 4px var(--cyan-glow);
}
#calc-result { transition: opacity 150ms ease; }

/* --------------------------------------------------------------------------
   22. FAQ accordion
   -------------------------------------------------------------------------- */
.faq { display: flex; flex-direction: column; gap: 8px; max-width: 800px; margin: 0 auto; }
.faq__item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.faq__question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left;
  padding: 20px 24px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: #fff;
  gap: 16px; user-select: none; background: none; border: none;
  transition: background 200ms ease;
}
.faq__question:hover { background: var(--bg-dark); }
.faq__question.active { background: var(--bg-dark); color: var(--cyan); }
.faq__icon { color: var(--cyan); transition: transform 300ms ease; flex-shrink: 0; }
.faq__question.active .faq__icon { transform: rotate(180deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 350ms ease; }
.faq__answer.open { max-height: 500px; }
.faq__answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--text-secondary); line-height: 1.7; opacity: 0; transition: opacity 250ms ease 100ms; }
.faq__answer.open .faq__answer-inner { opacity: 1; }

/* --------------------------------------------------------------------------
   23. Comparison table
   -------------------------------------------------------------------------- */
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 14px 20px; text-align: center; font-size: 14px; border-bottom: 1px solid var(--border); }
.comparison-table th { font-family: 'Space Grotesk', sans-serif; font-weight: 700; background: var(--bg-card); color: #fff; font-size: 15px; }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; }
.comparison-table th.featured { color: var(--cyan); background: rgba(0, 229, 204, 0.05); }
.comparison-table td.featured { background: rgba(0, 229, 204, 0.03); color: var(--cyan); font-weight: 600; }
.comparison-table tr:last-child td { border-bottom: none; }
.table-wrapper { overflow-x: auto; border-radius: 12px; border: 1px solid var(--border); }

/* --------------------------------------------------------------------------
   24. Mobile sticky CTA
   -------------------------------------------------------------------------- */
.mobile-cta { display: none; position: fixed; bottom: 20px; right: 20px; z-index: 999; }
.mobile-cta a, .mobile-cta button {
  display: flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: 14px 20px; border-radius: 50px;
  font-weight: 600; font-size: 15px;
  box-shadow: 0 4px 20px var(--blue-glow);
  white-space: nowrap; border: none; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
}
@media (max-width: 1440px) { .mobile-cta { display: block; } }

/* --------------------------------------------------------------------------
   25. Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }
.footer__logo { height: 36px; width: auto; margin-bottom: 12px; }
.footer__tagline { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a, .footer__links span, .footer__links button {
  font-size: 14px; color: var(--text-secondary); text-decoration: none;
  transition: color 200ms ease; cursor: pointer;
  background: none; border: none; padding: 0; text-align: left; font-family: inherit;
}
.footer__links a:hover, .footer__links span:hover, .footer__links button:hover { color: #fff; }
.footer__contact p { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer__contact i { color: var(--cyan); width: 16px; }
.footer__map { max-width: 100%; aspect-ratio: 4 / 3; margin-top: 12px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.footer__map iframe { display: block; width: 100%; height: 100%; border: 0; }
.footer__bottom { border-top: 1px solid var(--border); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__copyright, .footer__service-area { font-size: 13px; color: var(--text-secondary); }
.footer__social { display: flex; gap: 16px; }
.footer__social a { color: var(--text-secondary); font-size: 18px; transition: all 200ms ease; }
.footer__social a:hover { color: var(--cyan); transform: translateY(-3px); }

.footer__legal { border-top: 1px solid var(--border); padding-top: 32px; margin-top: 8px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px 32px; }
.footer__legal-links { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 24px; }
.footer__legal-links a { font-size: 13px; color: var(--text-secondary); text-decoration: none; transition: color 200ms ease; }
.footer__legal-links a:hover { color: #fff; }
.footer__badge { width: 120px; height: auto; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   26. Scroll animations
   -------------------------------------------------------------------------- */
[data-animate] { opacity: 0; transform: translateY(20px); transition: opacity 500ms ease, transform 500ms ease; }
[data-animate].animated { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-animate] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   27. Utilities
   -------------------------------------------------------------------------- */
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}.mt-48{margin-top:48px}
.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}.mb-32{margin-bottom:32px}.mb-48{margin-bottom:48px}
.flex{display:flex}.flex-center{display:flex;align-items:center;justify-content:center}
.flex-between{display:flex;align-items:center;justify-content:space-between}
.items-center{align-items:center}.gap-8{gap:8px}.gap-16{gap:16px}.gap-24{gap:24px}
.w-full{width:100%}.hidden{display:none}
