/* ── TOKENS ────────────────────────────────── */
:root {
  --navy:      #0A1F44;
  --blue:      #0057B7;
  --blue-light:#4A9FE0;
  --blue-pale: #EBF4FF;
  --blue-xp:   #F0F7FF;
  --green:     #2E7D4F;
  --green-pale:#F0FAF4;
  --amber:     #D4A017;
  --orange:    #C87D2B;
  --red:       #C0392B;
  --white:     #FFFFFF;
  --gray-lt:   #E8ECF0;
  --gray-mid:  #7A8898;
  --gray-dk:   #3A4452;
  --dark:      #0D1B2A;
  --fd: 'Figtree', sans-serif;
  --fb: 'Inter', sans-serif;
  --shadow:    0 2px 12px rgba(10,31,68,0.08), 0 1px 3px rgba(10,31,68,0.05);
  --shadow-md: 0 4px 20px rgba(10,31,68,0.12), 0 2px 6px rgba(10,31,68,0.06);
  --rlg:   14px;
  --trans: 0.18s ease;
}

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--fb); background: #F4F6FA; color: var(--gray-dk); line-height: 1.5; }

/* ── HEADER ────────────────────────────────── */
.site-header {
  background: var(--navy);
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.logo-wrap { display: flex; align-items: center; text-decoration: none; }
.logo-img  { height: 28px; width: auto; }
.header-cta {
  font-family: var(--fd); font-size: 12px; font-weight: 700;
  color: var(--white); background: var(--blue);
  border-radius: 6px; padding: 7px 16px;
  text-decoration: none; letter-spacing: 0.03em;
  transition: background var(--trans);
}
.header-cta:hover { background: #0069D9; }

/* ── HERO ──────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 52px 48px 44px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(147,194,248,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(147,194,248,0.1);
  pointer-events: none;
}
.r1 { width: 500px; height: 500px; top: -160px; right: -100px; }
.r2 { width: 300px; height: 300px; top: -30px;  right: 90px;  border-color: rgba(147,194,248,0.07); }
.r3 { width: 160px; height: 160px; top: 50px;   right: 230px; border-color: rgba(0,87,183,0.25); }
.hero-inner { max-width: 640px; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fd); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 14px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--blue); flex-shrink: 0;
}
.hero h1 {
  font-family: var(--fd);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800; color: var(--white);
  line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 12px;
}
.hero h1 span { color: var(--blue-light); }
.hero-desc {
  font-size: 15px; color: rgba(255,255,255,0.62);
  max-width: 480px; line-height: 1.7; font-weight: 300;
}

/* ── MAIN LAYOUT ────────────────────────────── */
.main-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 32px 80px;
}
.tool-layout {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 28px;
  align-items: start;
}

/* ── QUESTION CARDS ─────────────────────────── */
.q-card {
  background: var(--white);
  border-radius: var(--rlg);
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  margin-bottom: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, max-height 0.4s ease, margin-bottom 0.3s ease;
}
.q-card.unlocked {
  opacity: 1;
  max-height: 500px;
  margin-bottom: 10px;
  pointer-events: auto;
}
.q-card.minimised {
  max-height: 56px;
}
.q-card.minimised .q-card-body {
  display: none;
}
.q-card.minimised .q-card-header {
  cursor: pointer;
  border-bottom: none;
}
.q-card.minimised .q-card-header:hover {
  background: linear-gradient(135deg, #daf0e0 0%, var(--green-pale) 100%);
}
.q-card.answered .q-card-header {
  background: linear-gradient(135deg, var(--green-pale) 0%, #daf0e0 100%);
  border-bottom-color: rgba(46,125,79,0.12);
}
.q-card.answered .q-card-num {
  background: var(--green);
  box-shadow: 0 2px 8px rgba(46,125,79,0.3);
}
.q-card.answered .q-card-num::after { content: '\2713'; font-size: 12px; }
.q-card.answered .q-card-step-num  { display: none; }

.q-card-answer-preview {
  display: none;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  margin-left: auto;
  padding-left: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}
.q-card.minimised .q-card-answer-preview { display: block; }

.q-card-edit-hint {
  display: none;
  font-size: 10px;
  color: var(--gray-mid);
  font-family: var(--fb);
  margin-left: 6px;
  flex-shrink: 0;
}
.q-card.minimised .q-card-edit-hint { display: block; }

.q-card-header {
  background: linear-gradient(135deg, var(--blue-pale) 0%, #ddeaf8 100%);
  border-bottom: 1px solid rgba(0,87,183,0.1);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background var(--trans);
}
.q-card-num {
  width: 26px; height: 26px;
  background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 12px; font-weight: 700;
  color: var(--white); flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,87,183,0.3);
  transition: background var(--trans), box-shadow var(--trans);
}
.q-card-title {
  font-family: var(--fd); font-size: 14px; font-weight: 700;
  color: var(--navy); line-height: 1.3;
}
.q-card.minimised .q-card-title { font-size: 12px; color: var(--gray-dk); font-weight: 600; }
.q-card-optional {
  font-size: 11px; color: var(--gray-mid); font-weight: 400;
  font-style: italic; margin-left: 4px; font-family: var(--fb);
}
.q-card-body { padding: 16px 18px 18px; }
.q-hint { font-size: 12px; color: var(--gray-mid); margin-bottom: 10px; line-height: 1.4; }

/* Chip groups */
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 7px 14px; border-radius: 20px;
  border: 1.5px solid var(--gray-lt);
  background: var(--white);
  font-family: var(--fb); font-size: 13px; color: var(--gray-dk);
  cursor: pointer;
  transition: all var(--trans);
  user-select: none; line-height: 1.3;
}
.chip:hover    { border-color: var(--blue); color: var(--blue); background: var(--blue-xp); }
.chip.selected { border-color: var(--blue); background: var(--blue); color: var(--white); }

/* Yes/No chips */
.yn-group {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
}
.yn-chip {
  padding: 6px 18px; border-radius: 20px;
  border: 1.5px solid var(--gray-lt);
  background: var(--white);
  font-family: var(--fb); font-size: 13px; color: var(--gray-dk);
  cursor: pointer; transition: all var(--trans);
  user-select: none;
}
.yn-chip:hover      { border-color: var(--blue); color: var(--blue); background: var(--blue-xp); }
.yn-chip.sel-yes    { border-color: var(--green);   background: var(--green);   color: var(--white); }
.yn-chip.sel-no     { border-color: var(--gray-dk); background: var(--gray-dk); color: var(--white); }
.yn-chip.sel-unsure { border-color: var(--amber);   background: var(--amber);   color: var(--white); }

/* Stepper */
.stepper { display: flex; align-items: center; gap: 16px; }
.stepper-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--blue);
  background: var(--white); color: var(--blue);
  font-size: 20px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--trans);
}
.stepper-btn:hover { background: var(--blue); color: var(--white); }
.stepper-val {
  font-family: var(--fd); font-size: 28px; font-weight: 800;
  color: var(--navy); min-width: 40px; text-align: center;
}

/* Slider */
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 3px;
  background: var(--gray-lt); outline: none; cursor: pointer;
  margin: 8px 0;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue); border: 3px solid var(--white);
  box-shadow: 0 0 0 1.5px var(--blue), 0 2px 6px rgba(0,87,183,0.3);
  cursor: pointer; transition: transform 0.12s, box-shadow 0.12s;
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 0 1.5px var(--blue), 0 4px 12px rgba(0,87,183,0.4);
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue); border: 3px solid var(--white);
  box-shadow: 0 0 0 1.5px var(--blue); cursor: pointer;
}

/* Questions CTA */
.questions-cta {
  background: var(--navy);
  border-radius: var(--rlg);
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 8px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  position: relative; overflow: hidden;
}
.questions-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(147,194,248,0.1) 1px, transparent 1px);
  background-size: 22px 22px; pointer-events: none;
}
.questions-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.questions-cta-text { position: relative; z-index: 1; }
.questions-cta-text h3 {
  font-family: var(--fd); font-size: 16px; font-weight: 700;
  color: var(--white); margin-bottom: 3px;
}
.questions-cta-text p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.questions-cta-btns { display: flex; gap: 8px; flex-shrink: 0; position: relative; z-index: 1; }

/* ── RESULTS COLUMN ─────────────────────────── */
.results-col {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Empty state */
.results-empty {
  background: var(--white);
  border-radius: var(--rlg);
  box-shadow: var(--shadow);
  padding: 40px 28px;
  text-align: center;
  transition: opacity 0.3s ease;
}
.results-empty.hidden { display: none; }
.results-empty-icon { font-size: 32px; margin-bottom: 12px; opacity: 0.4; }
.results-empty h3 { font-family: var(--fd); font-size: 16px; font-weight: 700; color: var(--gray-mid); margin-bottom: 6px; }
.results-empty p  { font-size: 13px; color: var(--gray-mid); line-height: 1.6; }

/* Score card */
.score-card {
  background: var(--white);
  border-radius: var(--rlg);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  display: flex; align-items: center; gap: 20px;
  position: relative; overflow: hidden;
  transition: background var(--trans), opacity 0.3s ease, transform 0.3s ease;
  opacity: 0; transform: translateY(6px);
}
.score-card.visible { opacity: 1; transform: translateY(0); }
.arc-wrap { position: relative; flex-shrink: 0; width: 90px; height: 90px; }
.arc-svg  { width: 90px; height: 90px; transform: rotate(-90deg); }
.arc-track { fill: none; stroke: var(--gray-lt); stroke-width: 7; }
.arc-fill  {
  fill: none; stroke: var(--blue); stroke-width: 7; stroke-linecap: round;
  transition: stroke-dashoffset 0.5s ease, stroke 0.4s ease;
}
.arc-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.arc-num   { font-family: var(--fd); font-size: 26px; font-weight: 800; color: var(--navy); line-height: 1; }
.arc-denom { font-size: 11px; color: var(--gray-mid); font-weight: 500; }
.score-meta { flex: 1; min-width: 0; }
.score-band {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 6px;
}
.score-status { font-family: var(--fd); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.score-body   { font-size: 12px; color: var(--gray-mid); line-height: 1.5; }

/* Dimension bars */
.dim-card {
  background: var(--white);
  border-radius: var(--rlg);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}
.dim-card.visible { opacity: 1; transform: translateY(0); }
.dim-header { margin-bottom: 14px; }
.dim-header h3 {
  font-family: var(--fd); font-size: 13px; font-weight: 700;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em;
}
.dim-list  { display: flex; flex-direction: column; gap: 10px; }
.dim-item  { display: flex; align-items: center; gap: 10px; }
.dim-label { font-size: 12px; color: var(--gray-mid); width: 110px; flex-shrink: 0; font-weight: 500; }
.dim-bar-wrap { flex: 1; height: 6px; background: var(--gray-lt); border-radius: 3px; overflow: hidden; }
.dim-bar  { height: 100%; border-radius: 3px; transition: width 0.5s ease, background 0.4s ease; }
.dim-score-val { font-size: 11px; font-weight: 700; width: 28px; text-align: right; flex-shrink: 0; }

/* Findings */
.findings-card {
  background: var(--white);
  border-radius: var(--rlg);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
}
.findings-card.visible { opacity: 1; transform: translateY(0); }
.findings-header { margin-bottom: 12px; }
.findings-header h3 {
  font-family: var(--fd); font-size: 13px; font-weight: 700;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em;
}
.finding-item {
  display: flex; gap: 10px; margin-bottom: 10px; padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-lt);
}
.finding-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.finding-icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0; margin-top: 1px;
}
.finding-icon.risk { background: #FDECEA; color: #9B2517; }
.finding-icon.warn { background: #FEF6E0; color: #926800; }
.finding-icon.ok   { background: var(--green-pale); color: var(--green); }
.finding-text .finding-title {
  font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 2px;
  display: flex; align-items: center; gap: 6px;
}
.finding-badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; padding: 1px 6px; border-radius: 3px;
}
.finding-badge.risk { background: #FDECEA; color: #9B2517; }
.finding-badge.warn { background: #FEF6E0; color: #926800; }
.finding-badge.ok   { background: var(--green-pale); color: var(--green); }
.finding-body { font-size: 11px; color: var(--gray-mid); line-height: 1.5; }

/* Solution card */
.solution-card {
  background: var(--navy);
  border-radius: var(--rlg);
  padding: 20px 22px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
}
.solution-card.visible { opacity: 1; transform: translateY(0); }
.solution-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue-light); margin-bottom: 6px;
}
.solution-name {
  font-family: var(--fd); font-size: 17px; font-weight: 800;
  color: var(--white); margin-bottom: 8px; line-height: 1.2;
}
.solution-rationale { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* Actions card */
.actions-card {
  background: var(--white);
  border-radius: var(--rlg);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.actions-card.visible { opacity: 1; transform: translateY(0); }
.actions-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.actions-header h3 {
  font-family: var(--fd); font-size: 13px; font-weight: 700;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em;
}
.ai-badge {
  font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px;
  background: linear-gradient(135deg, #6E3FF3, #3B82F6);
  color: white; letter-spacing: 0.04em;
}
.ai-badge.loading { animation: pulse 1.2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1 } 50%{ opacity:0.5 } }
.action-item  { display: flex; gap: 12px; margin-bottom: 12px; }
.action-item:last-child { margin-bottom: 0; }
.action-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue-pale); color: var(--blue);
  font-family: var(--fd); font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.action-text { font-size: 12px; color: var(--gray-dk); line-height: 1.5; }
.action-text strong { color: var(--navy); display: block; margin-bottom: 2px; }

/* Download / results CTA */
.download-cta {
  background: linear-gradient(135deg, var(--blue) 0%, #003F8A 100%);
  border-radius: var(--rlg);
  padding: 20px 22px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.download-cta.visible { opacity: 1; transform: translateY(0); }
.download-cta-text h3 {
  font-family: var(--fd); font-size: 15px; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.download-cta-text p { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 14px; line-height: 1.5; }
.cta-btns { display: flex; gap: 8px; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  background: var(--white); color: var(--blue);
  border: none; border-radius: 8px; padding: 10px 18px;
  font-family: var(--fd); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all var(--trans);
}
.btn-primary:hover { background: var(--blue-pale); }
.btn-secondary {
  background: transparent; color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: 8px; padding: 10px 18px;
  font-family: var(--fd); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all var(--trans);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-white {
  background: rgba(255,255,255,0.12); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 9px 16px;
  font-family: var(--fd); font-size: 12px; font-weight: 700;
  cursor: pointer; transition: all var(--trans);
}
.btn-white:hover { background: rgba(255,255,255,0.22); }

/* Submit button loading state */
.btn-submitting {
  opacity: 0.7; cursor: not-allowed; pointer-events: none;
}

/* ── MODAL ──────────────────────────────────── */
.modal-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(10,31,68,0.7);
  z-index: 1000; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-backdrop.active { display: flex; }
.modal-box {
  background: var(--white); border-radius: 18px;
  padding: 32px 28px; max-width: 440px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-title    { font-family: var(--fd); font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.modal-subtitle { font-size: 13px; color: var(--gray-mid); margin-bottom: 20px; line-height: 1.5; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 12px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.form-field input,
.form-field select {
  width: 100%; padding: 10px 12px; border-radius: 8px;
  border: 1.5px solid var(--gray-lt); font-family: var(--fb); font-size: 14px;
  color: var(--gray-dk); outline: none; transition: border-color var(--trans);
}
.form-field input:focus,
.form-field select:focus { border-color: var(--blue); }
.form-error {
  font-size: 12px; color: var(--red); margin-top: 10px; display: none;
}
.form-error.visible { display: block; }
.modal-success { display: none; text-align: center; padding: 12px 0; }
.modal-success.visible { display: block; }
.modal-success-icon { font-size: 40px; margin-bottom: 12px; }
.modal-success h3 { font-family: var(--fd); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.modal-success p  { font-size: 13px; color: var(--gray-mid); line-height: 1.6; margin-bottom: 16px; }
.modal-success-url-wrap {
  background: var(--blue-pale);
  border: 1.5px solid rgba(0,87,183,0.15);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  transition: background var(--trans), border-color var(--trans);
}
.modal-success-url-wrap:hover {
  background: #ddeaf8;
  border-color: rgba(0,87,183,0.3);
}
.modal-success-url-wrap.copied {
  background: var(--green-pale);
  border-color: rgba(46,125,79,0.25);
}
#modal-success-url {
  font-size: 11px; color: var(--blue); font-family: var(--fb);
  line-height: 1.4; word-break: break-all; flex: 1;
}
.modal-success-url-wrap.copied #modal-success-url { color: var(--green); }
.modal-url-copy-hint {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--blue); flex-shrink: 0;
  transition: color var(--trans);
}
.modal-success-url-wrap.copied .modal-url-copy-hint { color: var(--green); }
.hidden { display: none !important; }

/* ── FOOTER ─────────────────────────────────── */
.site-footer {
  background: var(--dark); padding: 22px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo-mark {
  width: 28px; height: 20px; background: var(--blue); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-mark svg { width: 18px; height: 12px; }
.footer-brand-text { font-family: var(--fd); font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 0.04em; }
.footer-copy  { font-size: 11px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 11px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color var(--trans); }
.footer-links a:hover { color: var(--blue-light); }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 960px) {
  .tool-layout           { grid-template-columns: 1fr; }
  .results-col           { position: static; }
  .site-header           { padding: 0 20px; }
  .hero                  { padding: 36px 20px 32px; }
  .main-wrap             { padding: 24px 16px 60px; }
  .site-footer           { padding: 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .download-cta          { flex-direction: column; align-items: flex-start; }
  .cta-btns              { width: 100%; }
  .cta-btns .btn-primary,
  .cta-btns .btn-secondary { flex: 1; text-align: center; }
}
@media (max-width: 560px) {
  .hero h1               { font-size: 28px; }
  .questions-cta         { flex-direction: column; align-items: flex-start; }
  .questions-cta-btns    { width: 100%; }
  .questions-cta-btns .btn-primary,
  .questions-cta-btns .btn-white { flex: 1; text-align: center; }
}