:root {
  color-scheme: light;
  --bg: #f5f3f0;
  --bg-2: #f0ede8;
  --surface: #ffffff;
  --surface-2: #f0ede8;
  --line: #e0dbd4;
  --text: #2a2826;
  --muted: #6b6962;
  --orange: #ee672a;
  --orange-2: #c8511c;
  --orange-soft: #fde8db;
  --dark: #1a1918;
  --on-dark: #f2ede6;
  --green: #4db681;
  --yellow: #e4b44f;
  --red: #ee7566;
  --max: 1120px;
  --radius: 16px;
  --shadow: 0 4px 16px rgba(0, 0, 0, .08), 0 0 0 .5px rgba(0, 0, 0, .04);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #121110;
  --bg-2: #23211f;
  --surface: #1a1918;
  --surface-2: #23211f;
  --line: rgba(255, 255, 255, .1);
  --text: #f2ede6;
  --muted: #a7a097;
  --orange: #f08a4b;
  --orange-2: #ff9d63;
  --orange-soft: rgba(240, 138, 75, .14);
  --dark: #090909;
  --on-dark: #f2ede6;
  --shadow: 0 18px 48px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 280px;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(26, 25, 24, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 25, 24, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 65%);
}
html[data-theme="dark"] body {
  background: radial-gradient(circle at top left, rgba(240, 138, 75, .08), transparent 24%), var(--bg);
}
html[data-theme="dark"] body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
}
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a, input, textarea, label { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 99;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.site-header {
  width: min(calc(100% - 40px), var(--max));
  min-height: 94px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand { flex: 0 1 auto; min-width: 0; }
.brand img { display: block; width: 184px; height: auto; }
.theme-logo-dark { display: none !important; }
html[data-theme="dark"] .theme-logo-light { display: none !important; }
html[data-theme="dark"] .theme-logo-dark { display: block !important; }
.header-contact, .text-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}
.header-contact { flex: 0 0 auto; }
.header-contact span { color: var(--orange); }
.contact-short { display: none; }

main { overflow: clip; }
.hero {
  min-height: calc(100svh - 94px);
  padding: 68px 20px 96px;
  display: grid;
  align-items: center;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -190px;
  top: -120px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(240, 138, 36, .15), transparent 65%);
  filter: blur(12px);
}
.hero-grid {
  width: min(100%, var(--max));
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(42px, 6vw, 72px);
  align-items: center;
}
.hero-copy { min-width: 0; position: relative; z-index: 1; }
.eyebrow, .section-index, .result-kicker, .progress-kicker {
  margin: 0;
  color: var(--orange-2);
  font-size: .76rem;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
}
.eyebrow { display: flex; align-items: center; gap: 14px; }
.eyebrow span { display: block; flex: 0 0 42px; height: 1px; background: var(--orange); }
h1, h2, h3, h4 { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; letter-spacing: -.025em; overflow-wrap: anywhere; }
h1 {
  max-width: 850px;
  margin: 24px 0 30px;
  font-size: clamp(3.25rem, 7vw, 6.8rem);
  line-height: .93;
}
h1 em { display: block; color: var(--orange); font-style: normal; }
.hero-lead { max-width: 650px; color: var(--muted); font-size: clamp(1.08rem, 1.7vw, 1.3rem); }
.hero-actions, .result-actions { margin-top: 38px; display: flex; align-items: center; gap: 22px; }
.primary-button, .secondary-button {
  min-height: 58px;
  padding: 10px 24px;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.primary-button { background: var(--orange); color: #fff; }
.primary-button:hover { background: var(--orange-2); transform: translateY(-2px); }
.secondary-button { border: 1px solid var(--line); background: transparent; color: var(--text); }
.secondary-button:hover { border-color: var(--orange); }
.button-link { text-decoration: none; }
.trust-list {
  margin: 52px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  list-style: none;
  color: var(--muted);
  font-size: .85rem;
}
.trust-list li { display: flex; gap: 9px; }
.trust-list span { color: var(--orange); font-variant-numeric: tabular-nums; }

.hero-signal {
  width: min(42vw, 520px);
  aspect-ratio: 1;
  position: relative;
  margin: auto;
  border-radius: 50%;
  background: radial-gradient(circle at 44% 38%, #31302e, var(--dark) 70%);
  box-shadow: var(--shadow);
}
.signal-orbit { position: absolute; inset: 8%; border: 1px solid rgba(255, 255, 255, .17); border-radius: 50%; }
.orbit-one { animation: rotate 28s linear infinite; }
.orbit-one::before, .orbit-one::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 24px var(--orange);
}
.orbit-one::before { top: 9%; left: 20%; }
.orbit-one::after { right: 23%; bottom: 6%; }
.orbit-two { inset: 22%; border-style: dashed; animation: rotate 36s linear infinite reverse; }
.signal-core {
  position: absolute;
  inset: 31%;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 30%, #242529, #111214 68%);
  color: var(--on-dark);
  box-shadow: 0 0 0 16px rgba(255, 255, 255, .025), var(--shadow);
}
.signal-core strong { color: var(--orange); font: 600 clamp(4.5rem, 9vw, 7.5rem)/.85 "DM Sans"; }
.signal-core small { color: #a7a097; font-size: .7rem; line-height: 1.3; letter-spacing: .15em; text-transform: uppercase; }
.signal-label { font-size: .68rem; letter-spacing: .3em; font-weight: 800; }
.signal-note {
  position: absolute;
  min-width: 132px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  background: rgba(26, 25, 24, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .28);
}
.signal-note b, .signal-note span { display: block; }
.signal-note b { color: #ff9d63; font: 700 .75rem "DM Sans"; letter-spacing: .12em; }
.signal-note span { color: #a7a097; font-size: .68rem; }
.note-a { top: 4%; right: -2%; }
.note-b { right: -3%; bottom: 10%; }
.note-c { left: -5%; bottom: 18%; }
@keyframes rotate { to { transform: rotate(360deg); } }

.assessment-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 150px;
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 6vw, 70px);
  align-items: start;
}
.assessment-intro { position: sticky; top: 32px; padding-top: 32px; min-width: 0; }
.assessment-intro h2, .section-heading h2, .guide-copy h2 {
  margin: 16px 0 24px;
  font-size: clamp(2.55rem, 4.5vw, 4.6rem);
  line-height: 1.02;
}
.assessment-intro > p:last-child, .guide-copy > p { max-width: 45ch; color: var(--muted); }
.assessment-card {
  min-width: 0;
  min-height: 680px;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.progress-row { display: flex; justify-content: space-between; align-items: end; gap: 16px; }
.progress-row > div:first-child { min-width: 0; display: flex; flex-direction: column; }
.progress-row strong { overflow-wrap: anywhere; }
.progress-value { flex: 0 0 auto; color: var(--orange); font: 700 2rem "DM Sans"; }
.progress-track { height: 3px; margin: 18px 0 54px; overflow: hidden; background: var(--bg-2); }
.progress-track span { display: block; width: 16.67%; height: 100%; background: var(--orange); transition: width .35s ease; }
.question-step { min-width: 0; margin: 0; padding: 0; border: 0; display: none; }
.question-step.is-active { display: block; animation: stepIn .35s ease both; }
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.question-step legend { max-width: 100%; padding: 0; font: 400 clamp(1.65rem, 3vw, 2.55rem)/1.18 "DM Serif Display", Georgia, serif; }
.question-number { display: block; margin-bottom: 20px; color: var(--orange); font: 700 .8rem/1 "DM Sans"; letter-spacing: .18em; }
.question-help { margin: 16px 0 32px; color: var(--muted); }
.answer-options { min-width: 0; display: grid; gap: 12px; }
.answer-option { min-width: 0; cursor: pointer; }
.answer-option input { position: absolute; opacity: 0; pointer-events: none; }
.answer-surface {
  width: 100%;
  min-width: 0;
  min-height: 76px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: background .18s, border-color .18s, transform .18s;
}
.answer-surface > span:last-child { min-width: 0; }
.answer-option:hover .answer-surface { transform: translateX(4px); border-color: rgba(240, 138, 36, .6); }
.answer-option input:checked + .answer-surface { border-color: var(--orange); background: rgba(240, 138, 36, .11); }
.answer-mark { width: 22px; height: 22px; flex: 0 0 auto; position: relative; border: 1px solid #6f7075; border-radius: 50%; }
.answer-option input:checked + .answer-surface .answer-mark { border-color: var(--orange); }
.answer-option input:checked + .answer-surface .answer-mark::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: var(--orange); }
.answer-surface strong, .answer-surface small { display: block; overflow-wrap: anywhere; }
.answer-surface small { margin-top: 2px; color: var(--muted); font-size: .78rem; }
.field-error { color: #b63227; font-size: .85rem; }
.form-actions { margin-top: 44px; display: flex; justify-content: space-between; gap: 12px; }
.form-actions [data-next], .form-actions [data-submit] { margin-left: auto; }
.form-status { min-height: 24px; margin: 18px 0 0; color: var(--muted); }
.error-summary { margin-bottom: 24px; padding: 12px 15px; border: 1px solid rgba(238, 117, 102, .5); border-radius: 8px; background: rgba(238, 117, 102, .12); }

.contact-step { min-width: 0; }
.contact-step h3 { margin: 0 0 14px; font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.14; }
.contact-step > p { color: var(--muted); }
.intent-grid { margin: 26px 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.intent-option { min-width: 0; cursor: pointer; }
.intent-option input { position: absolute; opacity: 0; }
.intent-option span { min-width: 0; min-height: 100%; padding: 16px; display: block; border: 1px solid var(--line); border-radius: 12px; }
.intent-option b, .intent-option small { display: block; overflow-wrap: anywhere; }
.intent-option small { margin-top: 4px; color: var(--muted); }
.intent-option input:checked + span { border-color: var(--orange); background: rgba(240, 138, 36, .1); }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 14px; }
.field { min-width: 0; margin: 14px 0; display: block; }
.field > span { margin-bottom: 7px; display: block; font-size: .82rem; font-weight: 700; }
.field small { color: var(--muted); }
.field input, .field textarea {
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
}
.field textarea { min-height: 98px; resize: vertical; }
.consent { margin: 16px 0; display: flex; align-items: flex-start; gap: 11px; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.consent input { width: 18px; height: 18px; margin: 2px 0 0; flex: 0 0 auto; accent-color: var(--orange); }
.consent span { min-width: 0; overflow-wrap: anywhere; }
.consent a { color: var(--orange-2); }
.consent-required { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.result-panel { min-width: 0; }
.result-header { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 28px; align-items: center; }
.score-dial { width: 154px; aspect-ratio: 1; padding: 9px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--orange) 0deg, var(--bg-2) 0); }
.score-dial > span { width: 100%; height: 100%; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--surface); }
.score-dial strong { font: 700 3.6rem/.9 "DM Sans"; }
.score-dial small { color: var(--muted); }
.result-header h3 { margin: 4px 0 8px; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; }
.result-header p:last-child { margin: 0; color: var(--muted); }
.priority-grid { margin-top: 34px; display: grid; gap: 12px; }
.priority-card { min-width: 0; padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-2); }
.priority-card span { color: var(--orange-2); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.priority-card h4 { margin: 8px 0 5px; font-size: 1.15rem; }
.priority-card p { margin: 0; color: var(--muted); }
.result-disclaimer { margin: 24px 0 0; color: var(--muted); font-size: .75rem; }

.topics-section, .faq-section { width: min(calc(100% - 40px), var(--max)); margin: 0 auto 150px; }
.section-heading { max-width: 850px; }
.topic-list { margin: 60px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.topic-list li { padding: 28px 0; display: grid; grid-template-columns: 100px minmax(0, 1fr); gap: 20px; border-bottom: 1px solid var(--line); transition: padding .2s, background .2s; }
.topic-list li:hover { padding-left: 18px; background: linear-gradient(90deg, rgba(240, 138, 36, .07), transparent); }
.topic-list > li > span { color: var(--orange); font-size: .78rem; }
.topic-list h3 { margin: 0; font-size: 1.45rem; }
.topic-list p { margin: 4px 0 0; color: var(--muted); }

.guide-section {
  width: min(calc(100% - 40px), var(--max));
  min-height: 520px;
  margin: 0 auto 150px;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  color: var(--text);
}
.guide-visual { min-width: 0; padding: 46px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; background: var(--orange); }
.guide-visual::after { content: ""; position: absolute; width: 340px; height: 340px; right: -90px; bottom: -80px; border: 1px solid rgba(0, 0, 0, .24); border-radius: 50%; box-shadow: 0 0 0 50px rgba(0, 0, 0, .035), 0 0 0 100px rgba(0, 0, 0, .025); }
.guide-visual span { font-weight: 800; letter-spacing: .16em; }
.guide-visual strong { z-index: 1; position: relative; font: 700 13rem/.7 "DM Sans"; }
.guide-visual p { max-width: 180px; font: 700 1.2rem "DM Sans"; text-transform: uppercase; }
.guide-copy { min-width: 0; padding: clamp(40px, 7vw, 90px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.guide-copy .section-index { color: var(--orange-2); }
.guide-copy .primary-button { margin-top: 24px; }

.faq-list { margin-top: 50px; border-top: 1px solid var(--line); }
details { padding: 22px 0; border-bottom: 1px solid var(--line); }
summary { display: flex; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font: 600 1.15rem "DM Sans"; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; flex: 0 0 auto; color: var(--orange); font-size: 1.5rem; }
details[open] summary::after { content: "−"; }
details p { max-width: 780px; color: var(--muted); }

footer {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
footer img { width: 160px; height: auto; }
.footer-brand { min-width: 0; }
footer p { margin: 0; }
footer > div { min-width: 0; display: flex; flex-direction: column; overflow-wrap: anywhere; }
footer small { grid-column: 1 / -1; padding-top: 22px; border-top: 1px solid var(--line); }
footer a { color: var(--text); text-decoration: none; }

.answer-option input:focus-visible + .answer-surface,
.intent-option input:focus-visible + span,
.primary-button:focus-visible,
.secondary-button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible { outline: 3px solid var(--orange-2); outline-offset: 3px; }
.is-loading { pointer-events: none; opacity: .68; }

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions, .trust-list { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  h1 em { display: inline; }
  .hero-signal { width: min(78vw, 460px); }
  .assessment-shell { grid-template-columns: 1fr; }
  .assessment-intro { position: static; padding-top: 0; }
  .assessment-intro > p:last-child { max-width: 65ch; }
  .guide-section { grid-template-columns: 1fr; }
  .guide-visual { min-height: 420px; }
  footer { grid-template-columns: 1fr 1fr; }
  .header-contact { font-size: .82rem; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  .site-header {
    width: calc(100% - 28px);
    min-height: 72px;
    padding-top: env(safe-area-inset-top);
    gap: 12px;
  }
  .brand img { width: 126px; }
  .header-contact {
    min-height: 40px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .74rem;
    line-height: 1;
    white-space: nowrap;
  }
  .contact-label { display: none; }
  .contact-short { display: inline; color: var(--text) !important; }
  .hero { padding: 48px 14px 84px; }
  .hero-grid { gap: 54px; }
  .eyebrow { justify-content: flex-start; text-align: left; font-size: .68rem; letter-spacing: .13em; }
  .eyebrow span { flex-basis: 28px; }
  .hero-copy { text-align: left; }
  h1 { margin: 20px 0 24px; font-size: clamp(2.6rem, 12.5vw, 3.55rem); line-height: .98; letter-spacing: -.055em; }
  h1 em { display: block; }
  .hero-lead { margin: 0; font-size: 1rem; line-height: 1.65; }
  .hero-actions, .result-actions { margin-top: 30px; flex-direction: column; align-items: stretch; gap: 14px; }
  .hero-actions .text-link { align-self: flex-start; padding-block: 7px; }
  .primary-button, .secondary-button, .button-link { width: 100%; min-height: 54px; padding-inline: 18px; }
  .trust-list { margin-top: 34px; display: grid; justify-content: stretch; gap: 8px; text-align: left; }
  .hero-signal { width: min(88vw, 350px); }
  .signal-note { display: none; }
  .signal-core { inset: 29%; }
  .signal-core strong { font-size: clamp(4.2rem, 23vw, 5.8rem); }

  .assessment-shell, .topics-section, .faq-section, .guide-section {
    width: calc(100% - 24px);
    margin-bottom: 92px;
  }
  .assessment-intro h2, .section-heading h2, .guide-copy h2 { font-size: clamp(2.25rem, 11vw, 3rem); }
  .assessment-intro { padding-inline: 2px; }
  .assessment-card { min-height: 0; padding: 24px 16px; border-radius: 16px; }
  .progress-row { align-items: center; }
  .progress-kicker { font-size: .65rem; letter-spacing: .13em; }
  .progress-row strong { font-size: .86rem; }
  .progress-value { font-size: 1.6rem; }
  .progress-track { margin: 15px 0 38px; }
  .question-step legend { font-size: clamp(1.45rem, 7vw, 1.82rem); line-height: 1.24; }
  .question-number { margin-bottom: 14px; }
  .question-help { margin: 14px 0 24px; line-height: 1.55; }
  .answer-options { gap: 10px; }
  .answer-surface { min-height: 68px; padding: 12px 13px; gap: 12px; }
  .answer-mark { width: 20px; height: 20px; }
  .form-actions { margin-top: 30px; flex-direction: column-reverse; }
  .form-actions button { width: 100%; margin-left: 0 !important; }
  .intent-grid, .field-grid, .result-header { grid-template-columns: 1fr; }
  .intent-grid { margin-block: 20px; }
  .contact-step h3 { font-size: 1.75rem; }
  .field { margin: 11px 0; }
  .field input, .field textarea { font-size: 16px; }
  .consent { font-size: .76rem; }
  .result-header { gap: 20px; }
  .score-dial { width: 128px; }
  .score-dial strong { font-size: 3rem; }
  .priority-card { padding: 17px; }

  .topic-list { margin-top: 38px; }
  .topic-list li { grid-template-columns: 38px minmax(0, 1fr); gap: 12px; padding: 22px 0; }
  .topic-list li:hover { padding-left: 0; }
  .topic-list h3 { font-size: 1.3rem; }
  .guide-visual { min-height: 300px; padding: 28px; }
  .guide-visual strong { font-size: 9rem; }
  .guide-visual p { margin-bottom: 0; }
  .guide-copy { padding: 38px 22px 44px; }
  .guide-copy .primary-button { align-self: stretch; }
  .faq-list { margin-top: 34px; }
  summary { font-size: 1rem; line-height: 1.45; }
  footer { width: calc(100% - 28px); padding: 38px 0 max(38px, env(safe-area-inset-bottom)); grid-template-columns: 1fr; gap: 22px; }
  footer small { margin-top: 6px; }
}

@media (max-width: 350px) {
  .brand img { width: 112px; }
  .header-contact { padding-inline: 9px; }
  h1 { font-size: 2.45rem; }
  .assessment-card { padding-inline: 13px; }
  .progress-value { font-size: 1.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
