:root {
  --navy-950: #06152b;
  --navy-900: #081a33;
  --navy-800: #0d2848;
  --navy-700: #173b61;
  --orange: #f26a21;
  --orange-dark: #cf4f10;
  --ice: #eef4f8;
  --line: #dbe4eb;
  --text: #132237;
  --muted: #66768a;
  --white: #fff;
  --shadow: 0 22px 55px rgba(10, 34, 61, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: #fff; font-family: Arial, "Helvetica Neue", sans-serif; line-height: 1.55; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--orange); color: #fff; padding: 10px 16px; text-decoration: none; border-radius: 0 0 8px 8px; }
.skip-link:focus { top: 0; }

.topline { color: #d8e3ed; background: #041126; font-size: 12px; letter-spacing: .035em; }
.topline__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topline__contacts { display: flex; gap: 24px; }
.topline a { color: #fff; text-decoration: none; }
.nav-wrap { position: relative; z-index: 30; color: #fff; background: rgba(8, 26, 51, .98); border-top: 1px solid rgba(255,255,255,.06); }
.nav { height: 78px; display: flex; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; text-decoration: none; min-width: 188px; }
.brand__mark { width: 43px; height: 43px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.7); color: #fff; font-size: 13px; font-weight: 800; letter-spacing: -.03em; transform: rotate(45deg); }
.brand__mark::first-line { transform: rotate(-45deg); }
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1; }
.brand strong { font-size: 19px; letter-spacing: .1em; }
.brand small { margin-top: 6px; color: #9eb1c4; font-size: 9px; letter-spacing: .24em; }
.nav__links { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.nav__links a { color: #d7e1ea; text-decoration: none; font-size: 14px; font-weight: 700; }
.nav__links a:hover { color: #fff; }
.nav__toggle { display: none; margin-left: auto; width: 42px; height: 42px; padding: 10px; border: 1px solid rgba(255,255,255,.2); background: transparent; border-radius: 10px; }
.nav__toggle span { display: block; height: 2px; margin: 4px 0; background: #fff; }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 23px; border: 1px solid transparent; border-radius: 8px; cursor: pointer; text-decoration: none; font-size: 14px; font-weight: 800; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-1px); }
.button--small { min-height: 40px; padding: 0 17px; font-size: 13px; }
.button--primary { color: #fff; background: var(--orange); box-shadow: 0 10px 24px rgba(242,106,33,.22); }
.button--primary:hover { background: var(--orange-dark); }
.button--ghost { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.04); }
.button--ghost-dark { color: var(--navy-900); border-color: var(--line); background: #fff; }
.button[disabled] { cursor: not-allowed; opacity: .45; transform: none; }

.hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 70% 0%, #173f68 0, var(--navy-900) 35%, var(--navy-950) 85%); }
.hero::after { content: ""; position: absolute; right: -180px; bottom: -240px; width: 620px; height: 620px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.015); }
.hero__grid { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(90deg, #000, transparent 70%); }
.hero__inner { position: relative; z-index: 1; min-height: 610px; padding: 72px 0 80px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 72px; }
.eyebrow { margin: 0 0 16px; color: #c1d0df; font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; display: inline-block; margin: 0 9px 3px 0; background: var(--orange); }
.eyebrow--dark { color: var(--navy-700); }
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(42px, 5vw, 69px); line-height: 1.04; letter-spacing: -.055em; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero__lead { max-width: 680px; margin: 25px 0 0; color: #c8d5e1; font-size: 18px; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 36px; color: #d4dfea; font-size: 12px; }
.hero__proof span { display: flex; align-items: center; gap: 9px; }
.hero__proof b { color: var(--orange); font-size: 10px; }
.route-card { padding: 24px; background: rgba(8, 25, 46, .72); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; box-shadow: 0 28px 80px rgba(0,0,0,.25); backdrop-filter: blur(12px); }
.route-card__head { display: flex; justify-content: space-between; padding-bottom: 17px; border-bottom: 1px solid rgba(255,255,255,.13); color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.route-card__head strong { color: var(--orange); }
.route-card ol { margin: 6px 0 0; padding: 0; list-style: none; }
.route-card li { position: relative; display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 14px 0; }
.route-card li:not(:last-child)::after { content: ""; position: absolute; left: 19px; top: 44px; bottom: -4px; width: 1px; background: linear-gradient(var(--orange), rgba(242,106,33,.1)); }
.route-card li > span { width: 40px; height: 40px; display: grid; place-items: center; z-index: 1; color: #fff; background: var(--navy-800); border: 1px solid rgba(255,255,255,.15); border-radius: 50%; font-size: 10px; font-weight: 800; }
.route-card li:first-child > span { background: var(--orange); border-color: var(--orange); }
.route-card li div { display: flex; flex-direction: column; }
.route-card li b { font-size: 14px; }
.route-card li small { margin-top: 3px; color: #9eb1c4; font-size: 12px; }

section { scroll-margin-top: 30px; }
.quick-paths, .catalog-section, .how-section, .questionnaires-section { padding: 86px 0; }
.section-heading { margin-bottom: 34px; }
.section-heading--row { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading h2, .wizard-intro h2, .questionnaires-copy h2, .cta-card h2 { margin: 0; color: var(--navy-900); font-size: clamp(31px, 4vw, 48px); line-height: 1.08; letter-spacing: -.04em; }
.section-heading > p, .section-heading--row > p { max-width: 510px; margin: 0 0 6px; color: var(--muted); }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.quick-card { min-height: 184px; padding: 23px; display: flex; flex-direction: column; align-items: flex-start; text-align: left; color: var(--text); background: #fff; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; transition: border .2s, transform .2s, box-shadow .2s; }
.quick-card:hover { transform: translateY(-3px); border-color: #f5a174; box-shadow: var(--shadow); }
.quick-card span { color: var(--orange-dark); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.quick-card b { max-width: 220px; margin-top: 13px; color: var(--navy-900); font-size: 19px; line-height: 1.28; }
.quick-card i { margin-top: auto; color: var(--orange); font-size: 23px; font-style: normal; }

.wizard-section { padding: 86px 0; color: #fff; background: var(--navy-900); }
.wizard-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.wizard-intro h2 { color: #fff; }
.wizard-intro > p:not(.eyebrow) { color: #b9c8d6; font-size: 16px; }
.wizard-intro ul { margin: 27px 0 0; padding: 0; list-style: none; }
.wizard-intro li { margin: 10px 0; color: #d3dee8; font-size: 14px; }
.wizard-intro li::before { content: "✓"; margin-right: 10px; color: var(--orange); font-weight: 800; }
.wizard { min-height: 440px; padding: 30px; color: var(--text); background: #fff; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.22); }
.wizard__progress { height: 5px; overflow: hidden; background: var(--ice); border-radius: 99px; }
.wizard__progress span { height: 100%; display: block; width: 25%; background: var(--orange); transition: width .2s; }
.wizard__meta { display: flex; justify-content: space-between; margin-top: 14px; color: var(--muted); font-size: 12px; }
.wizard__meta button { padding: 0; color: var(--navy-700); background: none; border: 0; cursor: pointer; text-decoration: underline; }
.wizard__body { min-height: 275px; padding: 22px 0 18px; }
.wizard__body h3 { margin: 0 0 8px; color: var(--navy-900); font-size: 25px; letter-spacing: -.02em; }
.wizard__body > p { margin: 0 0 20px; color: var(--muted); }
.wizard-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.wizard-option { min-height: 66px; display: flex; align-items: center; gap: 12px; padding: 12px 14px; color: var(--navy-900); background: #f8fafc; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; text-align: left; font-weight: 700; }
.wizard-option span { width: 24px; height: 24px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid #b7c6d2; border-radius: 50%; }
.wizard-option.is-selected { color: #7e320c; background: #fff4ed; border-color: #f6ad82; }
.wizard-option.is-selected span { color: #fff; background: var(--orange); border-color: var(--orange); }
.wizard__actions { display: flex; justify-content: space-between; gap: 12px; }
.wizard-result { padding: 4px 0; }
.wizard-result__list { display: grid; gap: 9px; margin: 15px 0; }
.wizard-result__item { padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #f6f9fb; border: 1px solid var(--line); border-radius: 9px; }
.wizard-result__item b { color: var(--navy-900); font-size: 14px; }
.wizard-result__item button { color: var(--orange-dark); background: transparent; border: 0; cursor: pointer; font-weight: 800; }

.catalog-section { background: #f5f8fa; }
.catalog-controls { display: grid; grid-template-columns: 1fr 280px; gap: 12px; margin-bottom: 16px; }
.search { min-height: 58px; display: flex; align-items: center; gap: 11px; padding: 0 18px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.search span { color: var(--navy-700); font-size: 24px; }
.search input { width: 100%; border: 0; outline: 0; color: var(--text); background: transparent; }
.select-wrap { min-height: 58px; display: flex; align-items: center; gap: 8px; padding: 0 12px 0 16px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.select-wrap span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }
.select-wrap select { flex: 1; min-width: 0; border: 0; outline: 0; color: var(--navy-900); background: #fff; font-weight: 700; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { min-height: 38px; padding: 0 15px; color: var(--navy-700); background: #fff; border: 1px solid var(--line); border-radius: 99px; cursor: pointer; font-size: 12px; font-weight: 800; }
.chip.is-active { color: #fff; background: var(--navy-900); border-color: var(--navy-900); }
.catalog-summary { min-height: 55px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 13px; }
.text-button { padding: 0; color: var(--orange-dark); background: none; border: 0; cursor: pointer; font-weight: 800; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 380px; display: flex; flex-direction: column; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 5px 18px rgba(9, 35, 61, .035); transition: transform .2s, box-shadow .2s, border-color .2s; }
.service-card:hover { transform: translateY(-3px); border-color: #f1b28f; box-shadow: var(--shadow); }
.service-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.service-card__number { width: 44px; height: 44px; display: grid; place-items: center; color: var(--orange-dark); background: #fff3ec; border-radius: 9px; font-size: 12px; font-weight: 900; }
.service-card__category { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-card h3 { margin: 22px 0 10px; color: var(--navy-900); font-size: 21px; line-height: 1.25; letter-spacing: -.025em; }
.service-card > p { margin: 0; color: var(--muted); font-size: 14px; }
.service-card__facts { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.service-card__facts span { padding: 5px 8px; color: var(--navy-700); background: var(--ice); border-radius: 6px; font-size: 10px; font-weight: 700; }
.service-card__actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: auto; padding-top: 22px; }
.service-card__actions .button { min-height: 42px; padding: 0 14px; }
.compare-check { width: 42px; height: 42px; display: grid; place-items: center; color: var(--navy-700); background: #fff; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; font-size: 18px; }
.compare-check.is-active { color: #fff; background: var(--navy-900); border-color: var(--navy-900); }
.empty-state { padding: 55px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.compare-panel { position: sticky; bottom: 14px; z-index: 20; pointer-events: none; }
.compare-panel__inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 18px; color: #fff; background: rgba(6, 21, 43, .96); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; box-shadow: 0 18px 44px rgba(0,0,0,.23); pointer-events: auto; }
.compare-panel__inner > div { display: flex; flex-direction: column; }
.compare-panel__inner > div:last-child { flex-direction: row; gap: 8px; }
.compare-panel small { color: #9fb0c2; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.process-grid article { min-height: 265px; padding: 26px; background: #fff; }
.process-grid article:not(:last-child) { border-right: 1px solid var(--line); }
.process-grid span { color: var(--orange); font-size: 12px; font-weight: 900; }
.process-grid h3 { margin: 65px 0 11px; color: var(--navy-900); font-size: 18px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.managed-note { margin-top: 16px; display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: center; padding: 20px 23px; color: #fff; background: var(--navy-900); border-radius: 12px; }
.managed-note > span { width: 44px; height: 44px; display: grid; place-items: center; color: #fff; background: var(--orange); border-radius: 50%; font-weight: 900; }
.managed-note p { margin: 3px 0 0; color: #b9c8d6; font-size: 13px; }

.tools-section { padding: 86px 0; color: #fff; background: var(--navy-900); }
.tools-section .section-heading h2 { color: #fff; }
.tools-section .section-heading > p { color: #aebecd; }
.tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.tool-card { min-height: 245px; padding: 24px; display: flex; flex-direction: column; background: #0c2442; border: 1px solid rgba(255,255,255,.11); border-radius: 13px; }
.tool-card span { color: var(--orange); font-size: 11px; font-weight: 900; }
.tool-card h3 { margin: 28px 0 10px; font-size: 19px; }
.tool-card p { margin: 0; color: #aebecd; font-size: 13px; }
.tool-card a { margin-top: auto; color: #fff; font-size: 13px; font-weight: 800; text-decoration-color: var(--orange); text-underline-offset: 5px; }

.questionnaires-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 65px; align-items: start; }
.questionnaires-copy { position: sticky; top: 24px; }
.questionnaires-copy > p:not(.eyebrow) { color: var(--muted); }
.questionnaires-copy a { color: var(--orange-dark); font-weight: 800; }
.questionnaires-copy__note { margin-top: 24px; padding: 17px; color: var(--navy-700); background: var(--ice); border-left: 3px solid var(--orange); font-size: 13px; }
.questionnaire-list { display: grid; gap: 8px; }
.questionnaire-item { display: grid; grid-template-columns: 43px 1fr auto; gap: 14px; align-items: center; min-height: 72px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; }
.questionnaire-item__number { width: 40px; height: 40px; display: grid; place-items: center; color: var(--orange-dark); background: #fff3ec; border-radius: 8px; font-size: 11px; font-weight: 900; }
.questionnaire-item strong { display: block; color: var(--navy-900); font-size: 14px; }
.questionnaire-item small { color: var(--muted); }
.questionnaire-item a { color: var(--navy-700); font-size: 12px; font-weight: 900; text-decoration: none; }
.questionnaire-item a:hover { color: var(--orange-dark); }

.cta-section { padding: 0 0 86px; }
.cta-card { min-height: 320px; padding: 54px 58px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 45px; color: #fff; background: radial-gradient(circle at 80% -20%, #23507b, var(--navy-900) 58%); border-radius: 18px; overflow: hidden; }
.cta-card h2 { color: #fff; }
.cta-card p:not(.eyebrow) { max-width: 700px; color: #b9c8d6; }
.cta-card__actions { display: flex; flex-direction: column; gap: 10px; min-width: 220px; }
.site-footer { padding: 36px 0; color: #9fb0c2; background: #041126; }
.site-footer__grid { display: grid; grid-template-columns: 220px 1fr 220px; gap: 35px; align-items: center; font-size: 12px; }
.site-footer__grid p { max-width: 560px; }
.site-footer__grid > div:last-child { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.site-footer a { color: #fff; text-decoration: none; }

.modal { width: min(880px, calc(100% - 28px)); max-height: calc(100vh - 30px); padding: 0; border: 0; border-radius: 16px; box-shadow: 0 40px 100px rgba(0,0,0,.35); }
.modal::backdrop { background: rgba(3,13,27,.75); backdrop-filter: blur(3px); }
.modal--wide { width: min(1120px, calc(100% - 28px)); }
.modal__shell { position: relative; padding: 34px; }
.modal__close { position: absolute; right: 15px; top: 12px; width: 38px; height: 38px; color: var(--muted); background: #f2f5f7; border: 0; border-radius: 50%; cursor: pointer; font-size: 23px; }
.modal-kicker { color: var(--orange-dark); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.modal h2 { max-width: 760px; margin: 8px 45px 10px 0; color: var(--navy-900); font-size: 33px; line-height: 1.1; letter-spacing: -.035em; }
.modal-lead { max-width: 760px; color: var(--muted); }
.modal-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 28px 0; }
.modal-block { padding: 20px; background: #f6f9fb; border-radius: 11px; }
.modal-block h3 { margin: 0 0 13px; color: var(--navy-900); font-size: 15px; }
.modal-block ul { margin: 0; padding: 0; list-style: none; }
.modal-block li { position: relative; margin: 8px 0; padding-left: 17px; color: #53667a; font-size: 13px; }
.modal-block li::before { content: ""; position: absolute; left: 0; top: .68em; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.compare-table-wrap { overflow-x: auto; margin-top: 25px; }
.compare-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 13px; }
.compare-table th, .compare-table td { padding: 14px; text-align: left; vertical-align: top; border: 1px solid var(--line); }
.compare-table th { color: var(--navy-900); background: #f2f6f8; }
.compare-table td:first-child { width: 145px; color: var(--muted); font-weight: 800; }
.compare-print { display: flex; justify-content: flex-end; margin-top: 14px; }

@media (max-width: 980px) {
  .nav__links, .nav > .button { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open { height: auto; flex-wrap: wrap; padding: 18px 0; }
  .nav.is-open .nav__links { width: 100%; order: 3; display: grid; gap: 0; }
  .nav.is-open .nav__links a { padding: 13px 0; border-top: 1px solid rgba(255,255,255,.1); }
  .hero__inner, .wizard-layout, .questionnaires-layout { grid-template-columns: 1fr; }
  .hero__inner { gap: 38px; }
  .quick-grid, .process-grid, .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { border: 0; gap: 12px; }
  .process-grid article { border: 1px solid var(--line) !important; border-radius: 12px; }
  .questionnaires-copy { position: static; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-card__actions { flex-direction: row; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 24px, 1180px); }
  .topline__inner > span { display: none; }
  .topline__contacts { width: 100%; justify-content: space-between; gap: 8px; font-size: 10px; }
  .nav { height: 66px; }
  .brand__mark { width: 36px; height: 36px; }
  .brand strong { font-size: 16px; }
  .hero__inner { min-height: auto; padding: 55px 0 64px; }
  .hero h1 { font-size: 40px; }
  .hero__lead { font-size: 16px; }
  .hero__proof { display: grid; }
  .section-heading--row { display: block; }
  .section-heading--row > p { margin-top: 14px; }
  .quick-paths, .catalog-section, .how-section, .questionnaires-section, .wizard-section, .tools-section { padding: 62px 0; }
  .quick-grid, .service-grid, .process-grid, .tools-grid, .wizard-options { grid-template-columns: 1fr; }
  .catalog-controls { grid-template-columns: 1fr; }
  .wizard { padding: 22px 17px; }
  .wizard__body { min-height: 320px; }
  .compare-panel__inner { align-items: flex-start; flex-direction: column; }
  .compare-panel__inner > div:last-child { width: 100%; }
  .compare-panel__inner .button { flex: 1; }
  .process-grid article { min-height: 210px; }
  .process-grid h3 { margin-top: 35px; }
  .questionnaire-item { grid-template-columns: 38px 1fr; }
  .questionnaire-item > a { grid-column: 2; }
  .cta-card { width: min(100% - 24px, 1180px); padding: 36px 25px; }
  .cta-card__actions { flex-direction: column; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__grid > div:last-child { align-items: flex-start; }
  .modal__shell { padding: 28px 19px; }
  .modal h2 { font-size: 28px; }
  .modal-columns { grid-template-columns: 1fr; }
}

@media print {
  .site-header, .hero, .quick-paths, .wizard-section, .catalog-section, .how-section, .tools-section, .questionnaires-section, .cta-section, .site-footer, .modal__close, .compare-print, .compare-panel { display: none !important; }
  .modal { position: static !important; width: 100% !important; max-height: none !important; display: block !important; box-shadow: none !important; }
  .modal:not([data-compare-modal]) { display: none !important; }
  .modal::backdrop { display: none; }
  .compare-table { min-width: 0; font-size: 10pt; }
  .compare-table th, .compare-table td { padding: 8pt; }
}

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