/* ==========================================================================
   Checkpoint GTM — GEO landing page (/geo)
   Page-specific components. Reuses global tokens; only builds what global.css
   and components.css don't already provide.
   Amber (--accent-warm) is used for accents/strokes only, never body text
   (it fails AA on the light background). Green = authority; amber = the gap.
   ========================================================================== */

.geo-accent { color: var(--accent); }
.geo-arrow { transition: transform var(--transition-fast); }
.btn:hover .geo-arrow { transform: translateX(3px); }

/* tabular figures on every number, meter, and scorecard */
.geo-stats .stat-block__number,
.geo-sov__value,
.geo-report__bar { font-variant-numeric: tabular-nums; }

/* ==========================================================================
   §1 Hero — split: copy + "empty chair" AI answer card
   ========================================================================== */
.geo-hero {
  padding-top: calc(var(--nav-height) + var(--space-4xl));
  padding-bottom: var(--space-4xl);
  position: relative;
  overflow: hidden;
}
/* barely-there contour texture, never competes with text */
.geo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 18%, var(--accent-subtle) 0, transparent 38%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
[data-theme="dark"] .geo-hero::before { opacity: 0.25; }
.geo-hero .container { position: relative; z-index: 1; }

.geo-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-3xl);
  align-items: center;
}
.geo-hero__eyebrow { display: inline-block; margin-bottom: var(--space-md); }
.geo-hero__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
  max-width: 16ch;
}
.geo-hero__sub {
  font-size: 1.1875rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 52ch;
  margin-bottom: var(--space-xl);
}
.geo-hero__ctas { display: flex; gap: var(--space-md); flex-wrap: wrap; align-items: center; }
.geo-hero__micro {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
}
.geo-hero__trust {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  max-width: 46ch;
  line-height: 1.6;
}

/* Empty-chair card */
.geo-chair {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hero-card);
  padding: var(--space-xl);
  max-width: 440px;
  margin-inline: auto;
}
.geo-chair__sample {
  position: absolute;
  top: calc(var(--space-md) * -1);
  right: var(--space-lg);
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
}
/* Darken the amber badge text on the hero proof card so it passes AA
   (amber #E8985E as text fails on the light card; keep the warm tint bg). */
.geo-chair .badge--warm { color: #B5651D; }
.geo-chair__head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: var(--space-md); }
.geo-chair__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.geo-chair__engine {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}
.geo-chair__prompt {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 0.625rem 0.875rem;
  margin-bottom: var(--space-lg);
  line-height: 1.45;
}
.geo-chair__list { display: flex; flex-direction: column; gap: 0.5rem; }
.geo-chair__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.geo-chair__rank {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--bg-secondary);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.geo-chair__item--blank {
  border: 1px dashed var(--accent-warm);
  background: rgba(232, 152, 94, 0.08);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.625rem;
  margin-top: 0.25rem;
}
.geo-chair__rank--blank { background: rgba(232, 152, 94, 0.18); color: #B5651D; }
.geo-chair__blank-label { color: var(--text-muted); font-style: italic; }
.geo-chair__annotation {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--space-md);
  padding-left: 30px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}
.geo-chair__annotation svg { width: 34px; height: 20px; color: var(--accent-warm); flex-shrink: 0; }

@media (max-width: 880px) {
  .geo-hero { padding-top: calc(var(--nav-height) + var(--space-2xl)); }
  .geo-hero__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .geo-hero__title { max-width: none; }
  .geo-chair { margin-inline: 0; }
}

/* ==========================================================================
   §2 Wake-up — definition lead + sourced stat tiles
   ========================================================================== */
.geo-wake__lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 68ch;
  margin-top: var(--space-md);
}
.geo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  border-top: 1px solid var(--border);
  padding-top: var(--space-2xl);
}
.geo-stats .stat-block {
  text-align: left;
  padding: 0 var(--space-lg) 0 0;
  border-left: 2px solid var(--accent);
  padding-left: var(--space-lg);
}
.geo-stats .stat-block__label {
  margin-top: var(--space-sm);
  line-height: 1.5;
  max-width: 32ch;
}
.geo-stat__source {
  display: inline-block;
  margin-top: var(--space-md);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
}
@media (max-width: 760px) {
  .geo-stats { grid-template-columns: 1fr; gap: var(--space-xl); }
}

/* ==========================================================================
   §3 Live proof — three-engine probe + share-of-voice meter
   ========================================================================== */
.geo-probe__sample {
  display: inline-block;
  margin-top: var(--space-md);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}
.geo-engines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.geo-engine {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.geo-engine__head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; }
.geo-engine__badge {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-primary);
}
.geo-engine__mode {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.geo-engine__prompt {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}
.geo-engine__prompt-label {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.geo-engine__named { display: flex; align-items: center; gap: 0.5rem; }
.geo-engine__named-label { font-size: 0.8125rem; color: var(--text-secondary); }
.geo-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}
.geo-pill--no { background: var(--bg-secondary); color: var(--text-muted); }
.geo-pill--no::before { content: '\00B7'; }
.geo-engine__block-label {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.geo-engine__names {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  counter-reset: geo-name;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.geo-engine__names li { display: flex; gap: 0.5rem; }
.geo-engine__names li::before {
  counter-increment: geo-name;
  content: counter(geo-name) ".";
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.geo-engine__chips { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.geo-chip {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.6875rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

/* Share-of-voice meter */
.geo-sov {
  margin-top: var(--space-2xl);
  max-width: 760px;
  margin-inline: auto;
}
.geo-sov__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: var(--space-sm); }
.geo-sov__label { font-size: 0.9375rem; color: var(--text-secondary); }
.geo-sov__value { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--text-primary); }
.geo-sov__bar {
  display: flex;
  gap: 3px;
  height: 22px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--bg-secondary);
}
.geo-sov__seg {
  height: 100%;
  width: 20%;
  background: var(--text-muted);
  opacity: 0.5;
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.geo-sov__seg:nth-child(odd) { opacity: 0.38; }
.geo-sov__seg--you { width: 0; background: var(--accent-warm); opacity: 1; }
.geo-sov__legend { display: flex; gap: var(--space-lg); margin-top: var(--space-sm); font-size: 0.8125rem; color: var(--text-muted); }
.geo-sov__key { display: inline-flex; align-items: center; gap: 0.4rem; }
.geo-sov__swatch { width: 12px; height: 12px; border-radius: 3px; }
.geo-sov__swatch--comp { background: var(--text-muted); opacity: 0.5; }
.geo-sov__swatch--you { background: var(--accent-warm); }

/* Bridge callout */
.geo-bridge {
  margin-top: var(--space-2xl);
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  background: var(--accent-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}
[data-theme="dark"] .geo-bridge { background: rgba(82, 183, 136, 0.12); }
.geo-bridge p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--text-primary);
  max-width: none;
  margin: 0 auto var(--space-lg);
}
@media (max-width: 760px) {
  .geo-engines { grid-template-columns: 1fr; }
}

/* ==========================================================================
   §4 GEO is two games — two-panel diagram
   ========================================================================== */
.geo-games {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 980px;
  margin: var(--space-xl) auto 0;
  align-items: stretch;
}
.geo-game {
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
}
.geo-game__pace {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: var(--space-md);
}
.geo-game__tag { font-family: var(--font-display); font-weight: 200; font-size: 1.5rem; margin-bottom: 0.25rem; }
.geo-game__sub { font-weight: 600; font-size: 1rem; margin-bottom: var(--space-md); }
.geo-game__body { font-size: 0.9375rem; line-height: 1.6; margin-bottom: var(--space-md); }
.geo-game__note { font-size: 0.875rem; font-style: italic; margin-top: auto; }

.geo-game--citation {
  background: var(--accent-subtle);
  border: 1px solid var(--border);
}
[data-theme="dark"] .geo-game--citation { background: rgba(82, 183, 136, 0.1); }
.geo-game--citation .geo-game__pace { color: var(--accent); }
.geo-game--citation .geo-game__tag,
.geo-game--citation .geo-game__sub { color: var(--text-primary); }
.geo-game--citation .geo-game__body { color: var(--text-secondary); }
.geo-game--citation .geo-game__note { color: var(--text-muted); }

.geo-game--recommendation {
  background: #2D6A4F;
  color: #fff;
}
.geo-game--recommendation .geo-game__pace { color: rgba(255,255,255,0.85); }
.geo-game--recommendation .geo-game__tag,
.geo-game--recommendation .geo-game__sub { color: #fff; }
.geo-game--recommendation .geo-game__body { color: rgba(255,255,255,0.9); }
.geo-game--recommendation .geo-game__note { color: rgba(255,255,255,0.9); }

.geo-reframe__close {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--text-primary);
  max-width: 44ch;
  margin: var(--space-2xl) auto 0;
}
@media (max-width: 760px) {
  .geo-games { grid-template-columns: 1fr; }
}

/* ==========================================================================
   §5 Free GEO report — preview mockup + checklist
   ========================================================================== */
.geo-report-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.geo-report-grid__media { display: flex; justify-content: center; }
.geo-report {
  position: relative;
  width: 280px;
  height: 360px;
}
.geo-report__page {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.geo-report__page--back3 { transform: rotate(-7deg) translate(-16px, 10px); opacity: 0.55; }
.geo-report__page--back2 { transform: rotate(-3deg) translate(-8px, 5px); opacity: 0.8; }
.geo-report__page--front {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}
.geo-report__eyebrow { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); font-weight: 600; }
.geo-report__title { font-family: var(--font-display); font-weight: 200; font-size: 2rem; color: var(--text-primary); margin-top: var(--space-sm); line-height: 1.05; }
.geo-report__cover-sub { font-size: 0.8125rem; color: var(--text-secondary); margin-top: var(--space-sm); line-height: 1.4; }
.geo-report__tag { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-top: auto; margin-bottom: 0.5rem; }
.geo-report__bar { display: flex; flex-direction: column; gap: 5px; }
.geo-report__bar span { height: 8px; border-radius: 4px; background: var(--text-muted); opacity: 0.45; }
.geo-report__bar span:first-child { background: var(--accent); opacity: 1; }

.geo-report__lead { font-size: 1.0625rem; line-height: 1.65; color: var(--text-secondary); margin: var(--space-md) 0 var(--space-lg); }
.geo-report__inside { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-md); }
.geo-checklist { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: var(--space-lg); }
.geo-checklist li {
  position: relative;
  padding-left: 1.85rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
.geo-checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-subtle);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D6A4F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.geo-checklist__hero { font-weight: 500; color: var(--text-primary); }
.geo-report__reassure { font-size: 0.875rem; color: var(--text-muted); margin-bottom: var(--space-lg); }
@media (max-width: 820px) {
  .geo-report-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .geo-report-grid__media { order: 2; }
}

/* ==========================================================================
   §6 How it works — step tracker with filling line
   ========================================================================== */
.geo-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.geo-steps__track {
  position: absolute;
  top: 22px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.geo-steps__fill {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--accent);
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.geo-step { position: relative; z-index: 1; text-align: center; padding: 0 var(--space-sm); }
.geo-step__token {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
  border: 4px solid var(--bg-secondary);
  box-sizing: content-box;
}
.geo-step--dest .geo-step__token { box-shadow: 0 0 0 3px var(--accent-warm); }
.geo-step__title { font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem; margin-bottom: var(--space-xs); }
.geo-step__body { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.55; max-width: 30ch; margin-inline: auto; }
@media (max-width: 760px) {
  .geo-steps { grid-template-columns: 1fr; gap: var(--space-xl); }
  .geo-steps__track { display: none; }
  .geo-step__body { max-width: none; }
}

/* ==========================================================================
   §7 Execution services — 2x2 cards + dashboard mock + objection
   ========================================================================== */
.geo-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.geo-svc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}
.geo-svc::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 3px; width: 0;
  background: var(--accent);
  transition: width var(--transition-base);
}
.geo-svc:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--accent-subtle); }
.geo-svc:hover::after { width: 100%; }
.geo-svc__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-md);
}
.geo-svc__icon svg { width: 24px; height: 24px; }
.geo-svc__title { font-family: var(--font-display); font-weight: 600; font-size: 1.1875rem; margin-bottom: 0.35rem; color: var(--text-primary); }
.geo-svc__outcome { font-size: 0.9375rem; color: var(--accent); font-weight: 500; margin-bottom: var(--space-md); }
.geo-svc__list { display: flex; flex-direction: column; gap: 0.4rem; }
.geo-svc__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.geo-svc__list li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

.geo-dash {
  margin-top: var(--space-2xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}
.geo-dash__heading { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 600; }
.geo-dash__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); margin-top: var(--space-md); }
.geo-dash__metric { display: flex; flex-direction: column; gap: 0.4rem; }
.geo-dash__label { font-size: 0.8125rem; color: var(--text-secondary); }
.geo-dash__spark { width: 100%; height: 28px; color: var(--accent); }
.geo-dash__delta { font-size: 0.8125rem; color: var(--accent); font-weight: 600; }
.geo-dash__foot { display: block; margin-top: var(--space-md); font-size: 0.75rem; color: var(--text-muted); }
@media (max-width: 760px) {
  .geo-svc-grid { grid-template-columns: 1fr; }
  .geo-dash__row { grid-template-columns: repeat(2, 1fr); }
}

.geo-services__diff {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1875rem;
  line-height: 1.5;
  color: var(--text-primary);
  max-width: 46ch;
  margin: var(--space-2xl) auto var(--space-lg);
}
.geo-objection {
  max-width: 720px;
  margin: var(--space-xl) auto 0;
  border-left: 3px solid var(--accent);
  background: var(--bg-secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg) var(--space-xl);
}
.geo-objection__q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}
.geo-objection__a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   §8 Credibility — pull quote, proof points, evidence grades
   ========================================================================== */
.geo-cred__pull {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.4;
  text-align: center;
  color: var(--text-primary);
  max-width: 24ch;
  margin: 0 auto var(--space-2xl);
  border: none;
  padding: 0;
}
.geo-cred__pull::before { content: '\201C'; color: var(--accent); }
.geo-cred__pull::after { content: '\201D'; color: var(--accent); }
.geo-cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.geo-cred__point h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; margin-bottom: var(--space-sm); color: var(--text-primary); }
.geo-cred__point p { font-size: 0.9375rem; line-height: 1.6; color: var(--text-secondary); }
.geo-grades {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-2xl);
}
.geo-grades__heading { font-size: 0.8125rem; color: var(--text-muted); margin-right: 0.25rem; }
.geo-grade {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}
.geo-grade--1 { background: var(--accent-subtle); color: var(--accent); }
.geo-grade--2 { background: rgba(64, 145, 108, 0.14); color: var(--accent); }
.geo-grade--3 { background: rgba(232, 152, 94, 0.14); color: #B5651D; }
.geo-grade--4 { background: var(--bg-secondary); color: var(--text-muted); }
@media (max-width: 760px) {
  .geo-cred-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
}

/* ==========================================================================
   §9 FAQ — answer-first details accordion
   ========================================================================== */
.geo-faq__list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--space-sm); }
.geo-faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.geo-faq__item[open] { border-color: var(--accent); }
.geo-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-primary);
}
.geo-faq__item summary::-webkit-details-marker { display: none; }
.geo-faq__plus { font-size: 1.4rem; color: var(--accent); line-height: 1; transition: transform var(--transition-fast); flex-shrink: 0; }
.geo-faq__item[open] .geo-faq__plus { transform: rotate(45deg); }
.geo-faq__answer { padding: 0 var(--space-lg) var(--space-lg); color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.65; }

/* ==========================================================================
   §10 Final CTA — forest-green panel + booking embed
   ========================================================================== */
.geo-final {
  background: #2D6A4F;
  color: #fff;
}
.geo-final__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-3xl);
  align-items: start;
}
.geo-final h2 { color: #fff; max-width: 16ch; }
.geo-final__sub { color: rgba(255,255,255,0.88); font-size: 1.0625rem; margin-top: var(--space-md); }
.geo-final__risk { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-top: var(--space-lg); }
.geo-final__chair {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: var(--space-xl);
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
}
.geo-final__chair-rank { color: #95D5B2; font-weight: 700; }
.geo-final__chair-name { color: #fff; font-size: 0.9375rem; }
.geo-final__booking {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: var(--text-primary);
}
.geo-final__booking-title { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--text-primary); }
.geo-final__booking-sub { font-size: 0.875rem; color: var(--text-secondary); margin: var(--space-sm) 0 var(--space-lg); }
.geo-final__micro { font-size: 0.8125rem; color: var(--text-muted); text-align: center; margin-top: var(--space-md); }
.geo-final__booking .meetings-iframe-container { width: 100%; min-height: 720px; }
.geo-final__booking .meetings-iframe-container iframe {
  width: 100% !important; min-width: 100% !important; min-height: 720px; height: auto; border: 0; display: block;
}
@media (max-width: 880px) {
  .geo-final__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .geo-final h2 { max-width: none; }
}
@media (max-width: 640px) {
  .geo-final__booking .meetings-iframe-container,
  .geo-final__booking .meetings-iframe-container iframe { min-height: 1040px; }
}

/* ==========================================================================
   AI mode — flatten custom grids so the machine-readable view stays clean
   ========================================================================== */
[data-theme="ai"] .geo-hero__grid,
[data-theme="ai"] .geo-stats,
[data-theme="ai"] .geo-engines,
[data-theme="ai"] .geo-games,
[data-theme="ai"] .geo-report-grid,
[data-theme="ai"] .geo-steps,
[data-theme="ai"] .geo-svc-grid,
[data-theme="ai"] .geo-cred-grid,
[data-theme="ai"] .geo-dash__row,
[data-theme="ai"] .geo-final__grid { grid-template-columns: 1fr !important; }
[data-theme="ai"] .geo-chair,
[data-theme="ai"] .geo-report,
[data-theme="ai"] .geo-dash__spark,
[data-theme="ai"] .geo-final__chair { display: none !important; }
[data-theme="ai"] .geo-final { background: var(--bg-primary) !important; color: var(--text-primary) !important; }
[data-theme="ai"] .geo-final h2,
[data-theme="ai"] .geo-final__sub,
[data-theme="ai"] .geo-final__risk { color: var(--text-primary) !important; }
[data-theme="ai"] .geo-game--recommendation { background: var(--bg-secondary) !important; color: var(--text-primary) !important; }
[data-theme="ai"] .geo-game--recommendation .geo-game__tag,
[data-theme="ai"] .geo-game--recommendation .geo-game__sub,
[data-theme="ai"] .geo-game--recommendation .geo-game__body,
[data-theme="ai"] .geo-game--recommendation .geo-game__note { color: var(--text-primary) !important; }

/* Reduced motion — show every JS-animated element in its final state */
@media (prefers-reduced-motion: reduce) {
  .geo-sov__seg { transition: none; }
  .geo-steps__fill { transition: none; }
}
