/* TCO Calculator — Think Plus dark editorial · v2 (breathing room)
   Gotham · #060608 bg · blue→orange gradient as hero motif
   Generous scale, big numbers, large headlines */

:root {
  /* Core TP brand palette */
  --tp-black: #0a0a0a;
  --tp-deep: #060608;
  --tp-dark-card: #0f1820;
  --tp-blue: #0f1820;
  --tp-blue-deep: #081218;
  --tp-blue-mid: #142838;
  --tp-blue-bright: #1d3a52;
  --tp-orange: #F7941D;
  --tp-orange-bright: #ffae3d;
  --tp-orange-soft: rgba(247,148,29,0.08);
  --tp-orange-border: rgba(247,148,29,0.25);
  --tp-cream: #f0e8dc;
  --tp-offwhite: #fafafa;
  --tp-white: #ffffff;
  --tp-muted: #6b6b6b;
  --tp-light-muted: #999999;
  --tp-headline-dark: #d4d4d4;   /* primary text on dark — brighter than v1 */
  --tp-headline-light: #222222;
  --tp-text: #e8e8e8;
  --tp-divider-dark: rgba(255,255,255,0.06);
  --tp-divider-soft: rgba(255,255,255,0.12);
  --tp-surface: rgba(255,255,255,0.025);
  --tp-surface-hover: rgba(255,255,255,0.05);

  /* Signature gradient motif (blue → orange) */
  --tp-gradient-hero: linear-gradient(135deg, #081218 0%, #0f1820 35%, #1d3a52 65%, #c46a13 100%);
  --tp-gradient-soft: linear-gradient(135deg, #0a1620 0%, #142838 50%, #1d3a52 100%);

  /* Functional aliases */
  --bg: var(--tp-deep);
  --ink: var(--tp-text);
  --accent: var(--tp-orange);

  --radius: 4px;
  --radius-lg: 8px;
  --max-width: 1280px;
  --max-width-narrow: 880px;
}

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

html, body {
  font-family: "Gotham", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--tp-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

::selection { background: var(--tp-orange); color: var(--tp-black); }

a { color: var(--tp-orange); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px;
}
.container.narrow { max-width: var(--max-width-narrow); }

@media (max-width: 900px) { .container { padding: 0 32px; } }

.view { display: none; }
.view.active { display: block; }

/* ═══════════════════════════════════════════════════════════════
   FORM VIEW — generous, breathing
   ═══════════════════════════════════════════════════════════════ */

#form-view .hero {
  position: relative;
  padding: 120px 80px 96px;
  background: var(--tp-gradient-hero);
  border-bottom: 1px solid var(--tp-divider-dark);
  overflow: hidden;
}
#form-view .hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(247,148,29,0.18) 0%, transparent 65%);
  pointer-events: none;
}
#form-view .hero > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* Orange accent bar */
.dash-accent {
  width: 80px;
  height: 4px;
  background: var(--tp-orange);
  margin: 16px 0 40px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tp-orange);
  margin-bottom: 28px;
}

#form-view .hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 100;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--tp-white);
  margin-bottom: 32px;
  max-width: 1100px;
}

#form-view .hero .subhead {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  color: var(--tp-headline-dark);
  margin-bottom: 24px;
  max-width: 820px;
  line-height: 1.45;
}

.trust-line {
  font-size: 13px;
  font-weight: 400;
  color: var(--tp-light-muted);
  letter-spacing: 0.02em;
  margin-bottom: 0;
  max-width: 820px;
}
.trust-line em { font-style: normal; }

/* ═══════════════════════════════════════════════════════════════
   FORM SECTION — large, spacious questions
   ═══════════════════════════════════════════════════════════════ */

#form-view .container {
  padding-top: 96px;
  padding-bottom: 160px;
}

.tco-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 980px;
}

fieldset.question {
  border: none;
  border-top: 1px solid var(--tp-divider-dark);
  padding: 80px 0 0;
  margin-top: 80px;
}
fieldset.question:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

fieldset.question legend {
  display: flex;
  align-items: baseline;
  gap: 24px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 100;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--tp-white);
  margin-bottom: 16px;
  padding: 0;
  max-width: 880px;
}

.q-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--tp-orange);
  flex-shrink: 0;
  position: relative;
  top: -8px;
}

.helper {
  font-size: 15px;
  color: var(--tp-light-muted);
  margin: 0 0 40px;
  max-width: 720px;
  line-height: 1.55;
}

.muted {
  color: var(--tp-light-muted);
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

/* Generous radio/checkbox grids */
.radio-grid, .checkbox-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}
.radio-grid.four, .radio-grid.three {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 720px) {
  .radio-grid, .checkbox-grid,
  .radio-grid.four, .radio-grid.three {
    grid-template-columns: 1fr;
  }
}

.radio-grid label, .checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: var(--tp-surface);
  border: 1px solid var(--tp-divider-dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .15s, background-color .15s, transform .05s;
  color: var(--tp-text);
  min-height: 76px;
}
.radio-grid label:hover, .checkbox-grid label:hover {
  background: var(--tp-surface-hover);
  border-color: rgba(247,148,29,0.4);
}
.radio-grid label:has(input:checked),
.checkbox-grid label:has(input:checked) {
  border-color: var(--tp-orange);
  background: var(--tp-orange-soft);
  box-shadow: 0 0 0 1px var(--tp-orange-border);
}

.radio-grid input, .checkbox-grid input {
  accent-color: var(--tp-orange);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.radio-grid span, .checkbox-grid span {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
}

.text-input {
  width: 100%;
  padding: 24px 28px;
  background: var(--tp-surface);
  border: 1px solid var(--tp-divider-dark);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 17px;
  color: var(--tp-text);
}
.text-input::placeholder { color: var(--tp-muted); }
.text-input:focus {
  outline: none;
  border-color: var(--tp-orange);
  background: var(--tp-surface-hover);
}

/* Submit button — large, prominent */
#tco-form button[type="submit"] {
  margin-top: 80px;
  padding: 28px 56px;
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.btn-primary, .btn-secondary {
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 22px 40px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color .15s, color .15s, transform .05s, border-color .15s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  text-align: center;
}
.btn-primary {
  background: var(--tp-orange);
  color: var(--tp-black);
}
.btn-primary:hover { background: var(--tp-orange-bright); text-decoration: none; }
.btn-primary:active { transform: translateY(1px); }

.btn-large { padding: 26px 48px; font-size: 15px; }

.btn-secondary {
  background: transparent;
  color: var(--tp-headline-dark);
  border-color: var(--tp-divider-soft);
}
.btn-secondary:hover { background: var(--tp-surface-hover); color: var(--tp-white); text-decoration: none; }

/* ═══════════════════════════════════════════════════════════════
   RESULTS VIEW — BANDS (lots of breathing room)
   ═══════════════════════════════════════════════════════════════ */

.band {
  padding: 160px 0;
  position: relative;
}
.band-light {
  background: var(--tp-gradient-soft);
  border-top: 1px solid var(--tp-divider-dark);
  border-bottom: 1px solid var(--tp-divider-dark);
}
.band-dark {
  background: var(--tp-blue-deep);
}

/* Hero band — signature gradient */
.results-hero-band {
  position: relative;
  padding: 140px 0 120px;
  background: var(--tp-gradient-hero);
  border-bottom: 1px solid var(--tp-divider-dark);
  overflow: hidden;
}
.results-hero-band::before {
  content: '';
  position: absolute;
  top: -240px;
  right: -240px;
  width: 880px;
  height: 880px;
  background: radial-gradient(circle, rgba(247,148,29,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.results-hero-band .container { position: relative; z-index: 1; }

/* Pill badge */
.pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tp-orange);
  background: rgba(247,148,29,0.1);
  padding: 10px 18px;
  border-radius: 2px;
  border: 1px solid var(--tp-orange-border);
  margin-bottom: 40px;
}

.results-h1 {
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 100;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--tp-white);
  margin-bottom: 48px;
  max-width: 1180px;
}
.results-h1 .hl, .section-h .hl {
  color: var(--tp-orange);
  font-weight: 400;
}

.results-lede {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 300;
  color: var(--tp-headline-dark);
  margin-bottom: 24px;
  max-width: 820px;
  line-height: 1.5;
}
.results-lede strong { color: var(--tp-white); font-weight: 700; }

.results-basis {
  font-size: 14px;
  font-weight: 400;
  color: var(--tp-light-muted);
  letter-spacing: 0.03em;
  margin-bottom: 56px;
}
.results-basis strong { color: var(--tp-headline-dark); font-weight: 700; }

.results-cta { margin-top: 8px; }

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════════ */
.section-h {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 100;
  letter-spacing: -0.028em;
  line-height: 1.08;
  color: var(--tp-white);
  margin-bottom: 24px;
  max-width: 1100px;
}
.section-h.centered, .section-lede.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-h.light { color: var(--tp-white); }
.section-lede {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--tp-light-muted);
  margin: 0 auto 72px;
  max-width: 820px;
  font-weight: 300;
  line-height: 1.55;
}

.eyebrow.centered {
  text-align: center;
  display: block;
}
.eyebrow.light { color: var(--tp-orange); }

/* ═══════════════════════════════════════════════════════════════
   3-COL % ANCHORS — XL numbers
   ═══════════════════════════════════════════════════════════════ */
.anchor-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  margin-top: 96px;
}
@media (max-width: 900px) {
  .anchor-cols { grid-template-columns: 1fr; gap: 72px; }
}
.anchor-col {
  text-align: left;
  padding: 0;
  border-top: 1px solid var(--tp-divider-soft);
  padding-top: 48px;
}
.anchor-num {
  font-size: clamp(96px, 14vw, 168px);
  font-weight: 100;
  background: linear-gradient(135deg, #ffae3d 0%, #F7941D 60%, #c46a13 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--tp-orange);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 32px;
}
.anchor-cat {
  font-size: 22px;
  font-weight: 400;
  color: var(--tp-white);
  margin: 0 0 16px;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.anchor-sub {
  font-size: 16px;
  color: var(--tp-light-muted);
  margin: 0 0 32px;
  line-height: 1.55;
}
.anchor-cite {
  font-size: 12px;
  font-weight: 400;
  color: var(--tp-muted);
  letter-spacing: 0.04em;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--tp-divider-dark);
  text-transform: uppercase;
}
.anchor-cite em { font-style: normal; }

/* ═══════════════════════════════════════════════════════════════
   CHARTS — bigger, blue+orange gradient theme
   ═══════════════════════════════════════════════════════════════ */
#line-chart, #breakdown-chart {
  background: linear-gradient(135deg, #0a1620 0%, #142838 100%);
  border: 1px solid var(--tp-divider-soft);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 56px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════════════════════════════════════
   ROI GRID (band-dark) — big numbers
   ═══════════════════════════════════════════════════════════════ */
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 96px;
}
@media (max-width: 900px) { .roi-grid { grid-template-columns: 1fr; } }
.roi-card {
  background: var(--tp-surface);
  border: 1px solid var(--tp-divider-soft);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
}
.roi-num {
  font-size: clamp(96px, 12vw, 144px);
  font-weight: 100;
  background: linear-gradient(135deg, #ffae3d 0%, #F7941D 60%, #c46a13 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--tp-orange);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 32px;
}
.roi-cap {
  font-size: 20px;
  font-weight: 400;
  color: var(--tp-white);
  margin: 0 0 24px;
  letter-spacing: -0.015em;
  line-height: 1.35;
}
.roi-sub {
  font-size: 16px;
  color: var(--tp-light-muted);
  margin: 0;
  line-height: 1.65;
}
.roi-sub strong { color: var(--tp-headline-dark); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════
   WHY GRID — 4 cards · minimal (no icons)
   ═══════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 96px;
}
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--tp-surface);
  border: 1px solid var(--tp-divider-soft);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  transition: border-color .2s, background-color .2s;
  position: relative;
}
.why-card:hover {
  border-color: var(--tp-orange-border);
  background: var(--tp-surface-hover);
}
.why-card .why-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--tp-orange);
  margin-bottom: 28px;
  display: block;
}
.why-card h3 {
  font-size: 26px;
  font-weight: 100;
  color: var(--tp-white);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.why-card p {
  font-size: 15px;
  color: var(--tp-light-muted);
  margin: 0;
  line-height: 1.65;
}
.why-card strong { color: var(--tp-headline-dark); font-weight: 700; }
/* Legacy icon class — hidden if still in HTML */
.why-icon { display: none; }

/* ═══════════════════════════════════════════════════════════════
   VALUE CARDS (Greek)
   ═══════════════════════════════════════════════════════════════ */
.value-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 96px;
}
@media (max-width: 800px) { .value-cards { grid-template-columns: 1fr; } }
.value-card {
  background: var(--tp-surface);
  border: 1px solid var(--tp-divider-soft);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  border-left: 3px solid var(--tp-orange);
}
.badge-greek {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tp-orange);
  background: var(--tp-orange-soft);
  padding: 6px 12px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.value-card h3 {
  font-size: 26px;
  font-weight: 100;
  color: var(--tp-white);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.value-card p {
  font-size: 16px;
  color: var(--tp-light-muted);
  margin: 0;
  line-height: 1.7;
}
.value-card strong { color: var(--tp-headline-dark); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════
   STAT CARDS — blue gradient, NOT dark
   ═══════════════════════════════════════════════════════════════ */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 96px 0 32px;
}
@media (max-width: 800px) { .stat-cards { grid-template-columns: 1fr; } }
.stat-card {
  background: linear-gradient(135deg, #142838 0%, #1d3a52 50%, #244766 100%);
  border: 1px solid var(--tp-divider-soft);
  border-radius: var(--radius-lg);
  padding: 72px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(247,148,29,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.stat-card .stat {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 100;
  line-height: 0.95;
  background: linear-gradient(135deg, #ffae3d 0%, #F7941D 60%, #c46a13 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--tp-orange);
  margin-bottom: 28px;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  overflow-wrap: normal;
}
.stat-card p {
  margin: 0;
  font-size: 15px;
  color: var(--tp-headline-dark);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.stat-card em {
  color: var(--tp-light-muted);
  font-size: 12px;
  display: block;
  margin-top: 12px;
  font-style: normal;
  letter-spacing: 0.04em;
}

.footnote {
  font-size: 13px;
  color: var(--tp-light-muted);
  margin: 32px auto 0;
  max-width: 820px;
  text-align: center;
  line-height: 1.65;
  letter-spacing: 0.02em;
}
.footnote em { font-style: normal; }

/* ═══════════════════════════════════════════════════════════════
   CASE CARDS
   ═══════════════════════════════════════════════════════════════ */
.case-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 96px;
}
@media (max-width: 960px) { .case-cards { grid-template-columns: 1fr; } }
.case-card {
  background: var(--tp-surface);
  border: 1px solid var(--tp-divider-soft);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .25s ease;
  overflow: hidden;
}
.case-card:hover { border-color: var(--tp-orange-border); }

/* Image-first variant (Think Plus case studies) */
.case-card.has-image {
  padding: 0;
}
.case-image {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--tp-blue-mid);
  border-bottom: 1px solid var(--tp-divider-dark);
}
.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .3s ease;
  filter: saturate(0.95);
}
.case-card.has-image:hover .case-image img {
  transform: scale(1.04);
  filter: saturate(1.05);
}
.case-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6,6,8,0.5) 100%);
  pointer-events: none;
}
.case-body-wrap {
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.case-card .brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--tp-divider-dark);
}
.case-card .brand {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--tp-white);
  margin: 0;
  flex: 1;
}
.case-card .badge-source {
  font-size: 9px;
  padding: 4px 10px;
  border-radius: 2px;
  background: var(--tp-surface-hover);
  color: var(--tp-light-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--tp-divider-dark);
}
.case-card .case-stat {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 100;
  background: linear-gradient(135deg, #ffae3d 0%, #F7941D 60%, #c46a13 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--tp-orange);
  margin: 0 0 24px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.case-card p.case-body {
  font-size: 14px;
  color: var(--tp-light-muted);
  margin: 0 0 28px;
  flex: 1;
  line-height: 1.65;
}
.case-card .source {
  font-size: 11px;
  color: var(--tp-muted);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--tp-divider-dark);
}
.case-card .source a {
  color: var(--tp-orange);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

/* ═══════════════════════════════════════════════════════════════
   PULL QUOTE
   ═══════════════════════════════════════════════════════════════ */
.pull-quote {
  margin: 0;
  padding: 0;
  position: relative;
}
.pull-quote::before {
  content: '"';
  display: block;
  font-size: 120px;
  font-weight: 100;
  color: var(--tp-orange);
  line-height: 0.8;
  margin-bottom: 32px;
  opacity: 0.8;
}
.pull-quote p {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 100;
  letter-spacing: -0.025em;
  margin: 0 0 40px;
  line-height: 1.25;
  color: var(--tp-white);
}
.pull-quote cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-light-muted);
}
.pull-quote cite em { font-style: normal; color: var(--tp-headline-dark); }

/* ═══════════════════════════════════════════════════════════════
   CTA BLOCK — big breathing, signature gradient on primary
   ═══════════════════════════════════════════════════════════════ */
.cta-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 96px;
}
@media (max-width: 900px) { .cta-block { grid-template-columns: 1fr; } }
.cta-card {
  background: var(--tp-surface);
  border: 1px solid var(--tp-divider-soft);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  color: var(--tp-text);
}
/* Primary CTA: signature blue→orange gradient */
.cta-card.primary {
  background: var(--tp-gradient-hero);
  color: var(--tp-white);
  border: none;
  position: relative;
  overflow: hidden;
}
.cta-card.primary::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(247,148,29,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.cta-card.primary > * { position: relative; z-index: 1; }
.cta-card.primary h3 { color: var(--tp-white); }
.cta-card.primary p { color: var(--tp-headline-dark); }
.cta-card.primary .btn-primary {
  background: var(--tp-orange);
  color: var(--tp-black);
}
.cta-card.primary .btn-primary:hover { background: var(--tp-orange-bright); }
.cta-card h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 100;
  margin: 0 0 28px;
  letter-spacing: -0.025em;
  color: var(--tp-white);
  line-height: 1.15;
}
.cta-card p {
  font-size: 17px;
  margin: 0 0 48px;
  line-height: 1.6;
  color: var(--tp-light-muted);
}

/* ═══════════════════════════════════════════════════════════════
   METHODOLOGY + LEGAL
   ═══════════════════════════════════════════════════════════════ */
.methodology {
  margin: 0 0 56px;
  padding: 40px 48px;
  background: var(--tp-surface);
  border: 1px solid var(--tp-divider-dark);
  border-radius: var(--radius-lg);
}
.methodology summary {
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tp-orange);
  padding: 4px 0;
  list-style: none;
}
.methodology summary::after {
  content: ' +';
  color: var(--tp-orange);
}
.methodology[open] summary::after { content: ' −'; }
.methodology[open] summary { margin-bottom: 24px; }
.methodology p {
  font-size: 14px;
  color: var(--tp-light-muted);
  margin: 12px 0;
  line-height: 1.65;
}
.methodology strong { color: var(--tp-headline-dark); font-weight: 700; }

.legal-disclaimer {
  font-size: 12px;
  color: var(--tp-muted);
  margin: 0 0 56px;
  line-height: 1.7;
  max-width: 820px;
  letter-spacing: 0.02em;
}
.legal-disclaimer a { color: var(--tp-orange); }
.legal-disclaimer sup { font-weight: 700; color: var(--tp-orange); }

#back-btn { margin-top: 8px; }

/* ═══════════════════════════════════════════════════════════════
   MOBILE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  .container { padding: 0 24px; }
  .band { padding: 96px 0; }
  #form-view .hero { padding: 80px 24px 64px; }
  #form-view .container { padding-top: 64px; padding-bottom: 96px; }
  .results-hero-band { padding: 96px 0 80px; }
  fieldset.question { padding: 48px 0 0; margin-top: 48px; }
  fieldset.question legend { gap: 12px; }
  .q-num { top: -4px; }
  .radio-grid label, .checkbox-grid label { padding: 20px 24px; min-height: 64px; }
  .radio-grid span, .checkbox-grid span { font-size: 15px; }
  .pull-quote::before { font-size: 80px; }
  .cta-card { padding: 48px 32px; }
  .roi-card { padding: 56px 32px; }
  .stat-card { padding: 56px 32px; }
  .value-card, .case-card, .why-card { padding: 40px 32px; }
  .case-card.has-image { padding: 0; }
  .case-card.has-image .case-body-wrap { padding: 32px 28px 28px; }
  .case-image { aspect-ratio: 16 / 9; }
  #line-chart, #breakdown-chart { padding: 24px; }
  .btn-large { width: 100%; justify-content: center; }
}
