:root {
  --bg: #fbfaff;
  --surface: #ffffff;
  --surface-soft: #f3f0ff;
  --text: #211d33;
  --muted: #67627a;
  --line: #e8e3f3;
  --primary: #6b3df5;
  --primary-dark: #4f27cf;
  --primary-soft: #ece6ff;
  --accent: #ff5b8d;
  --success: #16865f;
  --shadow: 0 24px 70px rgba(44, 28, 87, .12);
  --shadow-soft: 0 14px 38px rgba(44, 28, 87, .08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.section-soft { background: var(--surface-soft); }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 1000; padding: 12px 18px; background: #111; color: #fff; border-radius: 10px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251,250,255,.86); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(232,227,243,.8); }
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(145deg, var(--primary), #a768ff); box-shadow: 0 9px 22px rgba(107,61,245,.26); }
.brand-mark svg { width: 28px; color: #fff; }
.brand-mark circle, .brand-mark path { fill: none; stroke: currentColor; stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.brand strong, .brand small { display: block; line-height: 1.15; }
.brand strong { font-size: 16px; }
.brand small { margin-top: 4px; color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: .02em; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.main-nav a { color: var(--muted); font-size: 14px; font-weight: 650; transition: color .2s; }
.main-nav a:hover { color: var(--primary); }

.button { min-height: 52px; padding: 0 24px; border-radius: 15px; border: 1px solid transparent; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 750; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .icon-button:focus-visible, .accordion button:focus-visible, .quiz-option:focus-visible { outline: 3px solid rgba(107,61,245,.28); outline-offset: 3px; }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--primary), #8f55ff); box-shadow: 0 14px 30px rgba(107,61,245,.25); }
.button-primary:hover { box-shadow: 0 18px 34px rgba(107,61,245,.31); }
.button-secondary { background: #fff; border-color: var(--line); color: var(--text); box-shadow: 0 8px 24px rgba(44,28,87,.05); }
.button-secondary:hover { border-color: #cbc0ed; }
.button-ghost { min-height: 44px; background: var(--primary-soft); color: var(--primary-dark); }
.button-small { padding: 0 18px; font-size: 14px; }
.button-light { background: #fff; color: var(--primary-dark); }
.button:disabled { opacity: .46; cursor: not-allowed; transform: none; box-shadow: none; }

.hero { min-height: 720px; display: flex; align-items: center; overflow: hidden; padding-top: 82px; background: radial-gradient(circle at 15% 10%, rgba(255,91,141,.10), transparent 32%), radial-gradient(circle at 85% 35%, rgba(107,61,245,.16), transparent 36%); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 74px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 16px; color: var(--primary-dark); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--primary)); }
.hero h1 { max-width: 680px; margin: 0; font-size: clamp(48px, 6vw, 76px); line-height: .98; letter-spacing: -.045em; }
.hero-lead { max-width: 650px; margin: 28px 0 0; color: var(--muted); font-size: 20px; line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-list { list-style: none; padding: 0; margin: 34px 0 0; display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 14px; font-weight: 650; }
.trust-list li { display: flex; align-items: center; gap: 8px; }
.trust-list span { width: 22px; height: 22px; display: inline-grid; place-items: center; color: var(--success); background: #e8f8f1; border-radius: 50%; font-size: 12px; }

.hero-card-wrap { min-height: 520px; display: grid; place-items: center; position: relative; }
.hero-card { width: min(100%, 430px); padding: 28px; border-radius: 34px; color: #fff; background: linear-gradient(145deg, #6b3df5 0%, #8d4efd 56%, #ff5b8d 140%); box-shadow: 0 36px 88px rgba(75,42,165,.31); transform: rotate(2deg); position: relative; overflow: hidden; }
.hero-card::before { content: ""; position: absolute; width: 250px; height: 250px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; right: -100px; top: -110px; }
.hero-card::after { content: ""; position: absolute; inset: auto -40px -90px auto; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,.08); }
.hero-card-top, .hero-card-bottom { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.hero-card-label { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero-card-status { padding: 7px 11px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-size: 12px; font-weight: 800; }
.hero-card-icon { position: relative; z-index: 1; width: 88px; height: 88px; margin: 42px 0 24px; display: grid; place-items: center; border-radius: 28px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.2); }
.hero-card-icon svg { width: 58px; }
.hero-card-icon path { fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.hero-card h2 { position: relative; z-index: 1; margin: 0 0 24px; font-size: 30px; letter-spacing: -.025em; }
.mini-steps { position: relative; z-index: 1; display: grid; gap: 10px; }
.mini-steps span { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.10); font-size: 14px; font-weight: 650; }
.mini-steps b { width: 25px; height: 25px; display: grid; place-items: center; background: #fff; color: var(--primary-dark); border-radius: 8px; }
.hero-card-bottom { margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); font-size: 13px; }
.hero-card-bottom strong { font-size: 18px; }
.floating-note { position: absolute; padding: 12px 16px; border-radius: 14px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-soft); color: var(--text); font-size: 13px; font-weight: 750; backdrop-filter: blur(10px); }
.note-one { left: 5%; top: 18%; transform: rotate(-5deg); }
.note-two { right: 1%; bottom: 14%; transform: rotate(4deg); }
.decor { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .55; }
.decor-one { width: 18px; height: 18px; background: var(--accent); left: 4%; top: 21%; box-shadow: 65px 125px 0 -4px #f4b73f, 120px -65px 0 -6px var(--primary); }
.decor-two { width: 22px; height: 22px; border: 5px solid var(--primary); right: 7%; top: 14%; box-shadow: -46px 210px 0 -6px var(--accent); }

.quiz-section { background: #fff; }
.quiz-layout { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 68px; }
.section-intro h2, .section-heading h2 { margin: 0; font-size: clamp(36px, 4vw, 52px); line-height: 1.08; letter-spacing: -.035em; }
.section-intro > p:not(.eyebrow), .section-heading > p, .split-heading > p { color: var(--muted); font-size: 17px; }
.info-panel { margin-top: 28px; padding: 20px; border-radius: 18px; background: var(--surface-soft); border: 1px solid #e7e0ff; }
.info-panel strong { display: block; margin-bottom: 5px; color: var(--primary-dark); }
.info-panel p { margin: 0; color: var(--muted); font-size: 14px; }
.quiz-card { padding: 34px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.quiz-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.quiz-kicker { color: var(--muted); font-size: 13px; font-weight: 700; }
.quiz-head h3 { margin: 8px 0 0; font-size: 28px; letter-spacing: -.025em; }
.progress-ring { width: 64px; height: 64px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center; background: conic-gradient(var(--primary) var(--progress, 25%), var(--primary-soft) 0); position: relative; }
.progress-ring::after { content: ""; position: absolute; inset: 6px; background: #fff; border-radius: inherit; }
.progress-ring span { position: relative; z-index: 1; color: var(--primary-dark); font-size: 12px; font-weight: 800; }
.progress-bar { height: 6px; overflow: hidden; border-radius: 999px; background: var(--primary-soft); margin: 26px 0 28px; }
.progress-bar span { display: block; width: 25%; height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: inherit; transition: width .25s ease; }
.quiz-options { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; min-height: 220px; }
.quiz-option { min-height: 84px; padding: 16px; display: flex; align-items: center; gap: 14px; text-align: left; color: var(--text); background: #fff; border: 1px solid var(--line); border-radius: 16px; transition: border-color .18s, background .18s, transform .18s; }
.quiz-option:hover { transform: translateY(-2px); border-color: #cfc3f8; }
.quiz-option.is-selected { border-color: var(--primary); background: var(--primary-soft); box-shadow: inset 0 0 0 1px var(--primary); }
.option-icon { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 13px; display: grid; place-items: center; background: #f5f2ff; font-size: 22px; }
.quiz-option.is-selected .option-icon { background: #fff; }
.option-copy strong, .option-copy small { display: block; }
.option-copy strong { font-size: 15px; }
.option-copy small { margin-top: 4px; color: var(--muted); font-size: 12px; }
.quiz-actions { margin-top: 28px; display: flex; justify-content: space-between; gap: 12px; }
.quiz-note { margin: 18px 0 0; text-align: center; color: var(--muted); font-size: 12px; }

.result-section { padding-top: 24px; background: #fff; }
.result-card { padding: 42px; border-radius: 34px; color: #fff; background: linear-gradient(145deg, #25203a, #4c2da3 90%); box-shadow: var(--shadow); }
.result-top { display: flex; justify-content: space-between; align-items: center; }
.result-badge { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.icon-button { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 13px; color: #fff; background: rgba(255,255,255,.08); }
.icon-button svg { width: 22px; }
.icon-button path { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.result-grid { margin-top: 36px; display: grid; grid-template-columns: 1fr 220px; gap: 34px; align-items: end; }
.result-label { margin: 0 0 8px; color: rgba(255,255,255,.66); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.result-grid h2 { margin: 0; font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -.04em; }
.result-summary { max-width: 740px; margin: 20px 0 0; color: rgba(255,255,255,.76); font-size: 17px; }
.result-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.result-meta span { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.82); font-size: 12px; font-weight: 700; }
.result-score { min-height: 160px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-radius: 24px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.13); }
.result-score span, .result-score small { color: rgba(255,255,255,.65); font-size: 12px; }
.result-score strong { margin: 8px 0 2px; font-size: 30px; }
.checklist { list-style: none; padding: 0; margin: 34px 0 0; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; counter-reset: checklist; }
.checklist li { counter-increment: checklist; padding: 18px; border-radius: 16px; background: rgba(255,255,255,.08); display: flex; gap: 13px; color: rgba(255,255,255,.9); }
.checklist li::before { content: counter(checklist); width: 28px; height: 28px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 9px; background: #fff; color: var(--primary-dark); font-size: 12px; font-weight: 850; }
.result-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.result-card .button-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.22); box-shadow: none; }

.section-heading { margin-bottom: 44px; }
.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered > p { margin-inline: auto; max-width: 700px; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.step-card { min-height: 310px; padding: 28px; background: #fff; border: 1px solid #e7e0ff; border-radius: var(--radius-md); position: relative; box-shadow: 0 12px 32px rgba(70,44,140,.05); }
.step-number { position: absolute; right: 24px; top: 24px; color: #d7cef8; font-size: 28px; font-weight: 850; }
.step-icon { width: 66px; height: 66px; display: grid; place-items: center; border-radius: 20px; background: var(--primary-soft); color: var(--primary); }
.step-icon svg { width: 38px; }
.step-icon path, .step-icon circle { fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.step-card h3 { margin: 48px 0 12px; font-size: 23px; letter-spacing: -.02em; }
.step-card p { margin: 0; color: var(--muted); }

.split-heading { display: grid; grid-template-columns: 1fr .65fr; gap: 50px; align-items: end; }
.guides-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.guide-card { padding: 24px; border-radius: var(--radius-md); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-soft); }
.guide-large { grid-row: span 2; display: flex; flex-direction: column; }
.guide-visual { height: 190px; margin-bottom: 24px; border-radius: 18px; display: grid; place-items: center; overflow: hidden; }
.guide-visual svg { width: 72%; max-height: 150px; }
.guide-visual path, .guide-visual rect, .guide-visual circle { fill: none; stroke: currentColor; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.visual-purple { color: #6741df; background: linear-gradient(145deg,#ede8ff,#f7f5ff); }
.visual-blue { color: #2873cc; background: linear-gradient(145deg,#e8f4ff,#f6fbff); }
.visual-green { color: #16865f; background: linear-gradient(145deg,#e5f8ef,#f3fcf8); }
.tag { display: inline-block; padding: 6px 9px; border-radius: 999px; color: var(--primary-dark); background: var(--primary-soft); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .05em; }
.guide-card h3 { margin: 14px 0 10px; font-size: 22px; line-height: 1.23; letter-spacing: -.025em; }
.guide-large h3 { font-size: 29px; }
.guide-card p { color: var(--muted); }
.guide-card a, .text-link { display: inline-flex; gap: 7px; align-items: center; margin-top: 10px; color: var(--primary-dark); font-weight: 800; }

.section-accent { color: #fff; background: linear-gradient(135deg, #5c31df, #7b43f4 54%, #9c4ac6); overflow: hidden; }
.section-accent::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; right: -180px; bottom: -250px; border: 80px solid rgba(255,255,255,.06); }
.accent-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.eyebrow-light { color: rgba(255,255,255,.76); }
.eyebrow-light span { background: #fff; }
.accent-grid h2 { margin: 0; font-size: clamp(38px,4vw,54px); line-height: 1.08; letter-spacing: -.035em; }
.accent-grid > div:first-child > p:not(.eyebrow) { margin: 20px 0 30px; color: rgba(255,255,255,.76); font-size: 17px; }
.accent-checks { display: grid; gap: 12px; }
.accent-checks > div { display: grid; grid-template-columns: 54px 1fr; gap: 16px; padding: 19px; border-radius: 17px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.13); }
.accent-checks span { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 13px; background: #fff; color: var(--primary-dark); font-weight: 850; }
.accent-checks p { margin: 0; color: rgba(255,255,255,.74); font-size: 14px; }
.accent-checks strong { display: block; color: #fff; font-size: 16px; }

.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 74px; align-items: start; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { width: 100%; min-height: 78px; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--text); background: none; border: 0; text-align: left; font-weight: 800; font-size: 17px; }
.accordion-item button b { color: var(--primary); font-size: 22px; }
.accordion-content { padding: 0 50px 20px 0; color: var(--muted); }
.accordion-content p { margin: 0; }

.site-footer { color: #ddd8eb; background: #1f1b2d; padding: 68px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .75fr 1fr 1fr; gap: 44px; }
.brand-footer strong { color: #fff; }
.brand-footer small { color: #aaa3bb; }
.footer-note { max-width: 330px; margin-top: 22px; color: #a9a3b7; font-size: 13px; }
.footer-grid h2 { margin: 0 0 18px; color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a:not(.brand) { margin: 0 0 10px; color: #bdb6cb; font-size: 14px; }
.footer-grid a:hover { color: #fff; }
.footer-grid p { color: #a9a3b7; font-size: 13px; }
.footer-domain { margin-top: 16px; }
.footer-bottom { margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: #8f899e; font-size: 12px; }
.footer-bottom p { margin: 0; }

/* Inner pages */
.inner-page main { min-height: 70vh; }
.inner-hero { padding: 76px 0 46px; background: radial-gradient(circle at 20% 20%, rgba(107,61,245,.12), transparent 34%); }
.inner-hero .breadcrumb { margin-bottom: 18px; color: var(--muted); font-size: 13px; }
.inner-hero h1 { max-width: 850px; margin: 0; font-size: clamp(38px,5vw,60px); line-height: 1.05; letter-spacing: -.04em; }
.inner-hero p { max-width: 760px; color: var(--muted); font-size: 18px; }
.document { max-width: 860px; margin-inline: auto; }
.document h2 { margin: 42px 0 14px; font-size: 28px; letter-spacing: -.025em; }
.document h3 { margin: 28px 0 10px; font-size: 21px; }
.document p, .document li { color: #4f4a60; }
.document li + li { margin-top: 8px; }
.document .notice { padding: 20px; border-left: 4px solid var(--primary); border-radius: 0 14px 14px 0; background: var(--primary-soft); }
.document .meta { margin: 0 0 30px; color: var(--muted); font-size: 13px; }
.article-card { padding: 26px; border-radius: 20px; border: 1px solid var(--line); background: #fff; }
.article-checklist { list-style: none; padding: 0; }
.article-checklist li { position: relative; padding-left: 34px; }
.article-checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 23px; height: 23px; display: grid; place-items: center; color: var(--success); background: #e7f8f1; border-radius: 50%; font-size: 12px; font-weight: 900; }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-inner { gap: 16px; }
  .header-inner > .button { margin-left: auto; }
  .hero-grid, .quiz-layout, .faq-layout, .accent-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 60px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .trust-list { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-card-wrap { min-height: 500px; }
  .quiz-layout, .faq-layout { gap: 38px; }
  .section-intro { max-width: 720px; }
  .result-grid { grid-template-columns: 1fr; }
  .result-score { min-height: 130px; max-width: 260px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 240px; }
  .step-card h3 { margin-top: 34px; }
  .split-heading { grid-template-columns: 1fr; gap: 10px; }
  .accent-grid { gap: 38px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 70px 0; }
  .site-header .button { display: none; }
  .header-inner { min-height: 68px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand strong { font-size: 15px; }
  .hero { min-height: auto; padding: 64px 0 54px; }
  .hero h1 { font-size: 46px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; justify-items: start; margin-inline: auto; width: fit-content; }
  .hero-card-wrap { min-height: 410px; margin-top: 14px; }
  .hero-card { padding: 22px; border-radius: 26px; transform: none; }
  .hero-card-icon { margin-top: 28px; }
  .floating-note { display: none; }
  .quiz-card, .result-card { padding: 24px; border-radius: 24px; }
  .quiz-head h3 { font-size: 23px; }
  .progress-ring { width: 54px; height: 54px; }
  .quiz-options, .checklist, .guides-grid { grid-template-columns: 1fr; }
  .quiz-options { min-height: 0; }
  .quiz-actions { flex-direction: column-reverse; }
  .quiz-actions .button { width: 100%; }
  .result-actions { flex-direction: column; }
  .result-actions .button { width: 100%; }
  .guide-large { grid-row: auto; }
  .guide-visual { height: 160px; }
  .accent-checks > div { grid-template-columns: 46px 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media print {
  .site-header, .hero, .quiz-section, #how, #guides, .section-accent, #faq, .site-footer, .result-top .icon-button, .result-actions { display: none !important; }
  .result-section { display: block !important; padding: 0; }
  .result-card { color: #111; background: #fff; box-shadow: none; border: 1px solid #ccc; }
  .result-summary, .result-score span, .result-score small { color: #444; }
  .result-meta span, .checklist li, .result-score { color: #111; background: #f4f4f4; border: 1px solid #ddd; }
  .checklist li::before { border: 1px solid #bbb; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
