:root {
  --red: #a30d1b;
  --red-dark: #750712;
  --red-soft: #fff1f2;
  --ink: #161719;
  --muted: #5e6269;
  --line: #dedfe2;
  --soft: #f5f6f7;
  --white: #fff;
  --green: #147044;
  --amber: #9a5a00;
  --shadow: 0 18px 50px rgba(20, 21, 24, .08);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: var(--red); text-underline-offset: 3px; }
a:hover { color: var(--red-dark); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(163,13,27,.32);
  outline-offset: 3px;
}
button, textarea, input { font: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.center { text-align: center; }
.top-gap { margin-top: 30px; }
.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }
.small-text { color: var(--muted); font-size: .84rem !important; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 76px;
  padding: 0 clamp(20px, 4vw, 72px);
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  text-decoration: none;
}
.brand small { color: #9a9ca1; font-size: .8em; font-weight: 700; }
.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}
.main-nav { display: flex; gap: clamp(14px, 2vw, 32px); align-items: center; }
.nav-search-link { display: none; }
.main-nav a {
  padding: 26px 0 22px;
  border-bottom: 3px solid transparent;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 750;
  text-decoration: none;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { border-color: var(--red); color: var(--red); }
.nav-toggle { display: none; border: 0; background: transparent; font-weight: 800; }
.header-search { display: flex; width: clamp(150px, 14vw, 220px); border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.header-search:focus-within { border-color: var(--red); box-shadow: 0 0 0 3px rgba(163,13,27,.12); }
.header-search input { min-width: 0; width: 100%; padding: 8px 5px 8px 12px; border: 0; outline: 0; background: transparent; font-size: .83rem; }
.header-search button { width: 38px; border: 0; color: var(--red); background: transparent; font-size: 1.2rem; font-weight: 900; }
.trust-bar { display: flex; gap: 18px; justify-content: space-between; padding: 8px clamp(20px, 4vw, 72px); border-bottom: 1px solid #eee; color: #6a6d73; background: #fafafb; font-size: .75rem; }
.trust-bar a { font-weight: 750; text-decoration: none; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.wide-container { width: min(1440px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(56px, 7vw, 104px) 0; }
.compact-section { padding-block: 56px; }
.section-soft { background: var(--soft); }
.section-red { color: var(--white); background: var(--red-dark); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { width: 24px; height: 3px; background: currentColor; content: ""; }
.section-red .eyebrow { color: #ffd9dd; }
h1, h2, h3 { margin-top: 0; line-height: 1.13; letter-spacing: -.025em; }
h1 { margin-bottom: 24px; font-size: clamp(2.35rem, 5vw, 5.2rem); }
h2 { margin-bottom: 18px; font-size: clamp(1.7rem, 3vw, 2.8rem); }
h3 { margin-bottom: 12px; font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { margin: 0 0 1.1em; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.1rem, 1.6vw, 1.35rem); }
.section-red .lead { color: #f6dfe2; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 9vw, 120px);
  background: linear-gradient(135deg, #fff 0 58%, #f7f7f8 58% 100%);
}
.hero::after {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 110px solid rgba(163,13,27,.05);
  border-radius: 50%;
  content: "";
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.hero h1 span { color: var(--red); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 28px 0 0; padding: 0; list-style: none; }
.hero-points li { color: var(--muted); font-size: .93rem; font-weight: 650; }
.hero-points li::before { margin-right: 7px; color: var(--green); content: "✓"; font-weight: 900; }

.corrector-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.corrector-topbar { display: flex; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .8rem; }
.status-local { color: var(--green); font-weight: 800; }
.status-local::before { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: currentColor; content: ""; }
.editor-wrap { position: relative; }
.editor-wrap textarea {
  display: block;
  width: 100%;
  min-height: 270px;
  resize: vertical;
  padding: 24px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 1.04rem;
  line-height: 1.7;
}
.editor-wrap textarea:focus { box-shadow: inset 0 0 0 3px rgba(163,13,27,.18); }
.editor-footer { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center; padding: 14px 18px; border-top: 1px solid var(--line); background: #fafafb; }
.editor-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.btn {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: var(--white);
  background: var(--red);
  font-weight: 800;
  text-decoration: none;
}
.btn:hover { color: var(--white); background: var(--red-dark); }
.btn-secondary { border-color: var(--line); color: var(--ink); background: var(--white); }
.btn-secondary:hover { color: var(--red); background: var(--white); border-color: var(--red); }
.btn-light { color: var(--red-dark); background: var(--white); }
.btn-light:hover { color: var(--red-dark); background: #fff2f3; }
.counter { color: var(--muted); font-size: .78rem; }
.privacy-line { margin: 10px 0 0; color: var(--muted); font-size: .8rem; text-align: center; }
.privacy-line strong { color: var(--green); }

.results-panel { display: none; margin-top: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.results-panel.is-visible { display: block; }
.results-head { display: flex; gap: 16px; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.results-head h2 { margin: 0; font-size: 1.25rem; }
.results-actions { display: flex; gap: 10px; align-items: center; }
.btn-small { min-height: 36px; padding: 7px 12px; font-size: .78rem; }
.score-pill { padding: 7px 11px; border-radius: 99px; color: var(--green); background: #e8f7ef; font-size: .82rem; font-weight: 850; }
.results-body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr); }
.corrected-preview { min-height: 220px; padding: 24px; white-space: pre-wrap; }
.issue-list { max-height: 420px; overflow-y: auto; padding: 14px; border-left: 1px solid var(--line); background: #fafafb; }
.issue-card { margin-bottom: 10px; padding: 15px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.issue-card:last-child { margin-bottom: 0; }
.issue-card strong { display: block; margin-bottom: 4px; }
.issue-card p { margin-bottom: 9px; color: var(--muted); font-size: .88rem; }
.issue-card button { padding: 7px 10px; border: 0; border-radius: 8px; color: var(--white); background: var(--red); font-size: .82rem; font-weight: 800; }
.issue-learn { display: inline-block; margin-left: 10px; font-size: .82rem; font-weight: 750; }
.issue-highlight { padding: 0 2px; border-bottom: 2px solid var(--red); background: var(--red-soft); }
.empty-result { padding: 28px; color: var(--green); font-weight: 750; text-align: center; }
.results-toolbar { display: flex; gap: 20px; justify-content: space-between; align-items: center; padding: 14px 18px; border-top: 1px solid var(--line); background: #fafafb; }
.text-metrics { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--muted); font-size: .75rem; }
.text-metrics strong { color: var(--ink); }

.stats-strip { position: relative; z-index: 2; margin-top: -35px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
.stat { padding: 24px; border-right: 1px solid var(--line); }
.stat:last-child { border: 0; }
.stat strong { display: block; font-size: 1.55rem; }
.stat span { color: var(--muted); font-size: .86rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { color: var(--ink); border-color: rgba(163,13,27,.5); box-shadow: var(--shadow); transform: translateY(-4px); }
.card .tag { align-self: flex-start; margin-bottom: 18px; padding: 5px 9px; border-radius: 999px; color: var(--red); background: var(--red-soft); font-size: .7rem; font-weight: 850; text-transform: uppercase; }
.card-tag { align-self: flex-start; margin-bottom: 18px; padding: 5px 9px; border-radius: 999px; color: var(--red); background: var(--red-soft); font-size: .7rem; font-weight: 850; text-transform: uppercase; }
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 20px; color: var(--muted); font-size: .94rem; }
.card .card-link { margin-top: auto; color: var(--red); font-size: .86rem; font-weight: 850; }

.two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr); gap: clamp(30px, 6vw, 80px); align-items: start; }
.feature-list { display: grid; gap: 15px; margin: 28px 0 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 36px; }
.feature-list li::before { position: absolute; top: 2px; left: 0; display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; color: var(--white); background: var(--red); content: "✓"; font-size: .75rem; font-weight: 900; }
.quote-card { padding: 28px; border-radius: var(--radius); color: var(--white); background: var(--ink); box-shadow: var(--shadow); }
.quote-card strong { display: block; margin-bottom: 8px; color: #ffb7bd; font-size: 1.1rem; }

.breadcrumbs { width: min(1180px, calc(100% - 40px)); margin: 24px auto 0; color: var(--muted); font-size: .82rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li + li::before { margin-right: 7px; color: #aaa; content: "/"; }

.page-hero { padding: clamp(44px, 6vw, 82px) 0 42px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #fff, #f6f6f7); }
.page-hero h1 { max-width: 980px; margin-bottom: 18px; font-size: clamp(2.25rem, 5vw, 4.8rem); }
.page-hero .lead { max-width: 880px; }
.answer-box { margin-top: 28px; padding: 22px 24px; border-left: 5px solid var(--red); border-radius: 0 14px 14px 0; background: var(--red-soft); }
.answer-box strong { display: block; margin-bottom: 5px; color: var(--red-dark); }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(36px, 6vw, 80px); align-items: start; }
.article-content { min-width: 0; }
.article-content > section { margin-bottom: 54px; }
.article-content p, .article-content li { font-size: 1.04rem; }
.article-content ul, .article-content ol { padding-left: 1.25em; }
.article-content li { margin-bottom: .55em; }
.sidebar-sticky { position: sticky; top: 100px; }
.toc { padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fafafb; }
.toc strong { display: block; margin-bottom: 12px; }
.toc a { display: block; padding: 6px 0; color: var(--muted); font-size: .88rem; font-weight: 650; text-decoration: none; }
.toc a:hover { color: var(--red); }
.editorial-note { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0 0 44px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 15px; background: #fafafb; }
.editorial-note strong, .editorial-note span { display: block; }
.editorial-note strong { margin-bottom: 4px; }
.editorial-note span { color: var(--muted); font-size: .82rem; }

.comparison-table { width: 100%; border-spacing: 0; border-collapse: separate; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; }
.comparison-table-wrap { max-width: 100%; overflow-x: auto; }
.comparison-table th, .comparison-table td { padding: 15px 17px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison-table th:last-child, .comparison-table td:last-child { border-right: 0; }
.comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table th { background: var(--soft); }
.comparison-table .yes { color: var(--green); font-weight: 850; }
.comparison-table .no { color: var(--red); font-weight: 850; }
.example-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.example { padding: 18px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.example.correct { border-left: 4px solid var(--green); }
.example.incorrect { border-left: 4px solid var(--red); }
.example small { display: block; margin-bottom: 6px; color: var(--muted); font-weight: 800; text-transform: uppercase; }
.tip-box { padding: 22px; border-radius: 14px; background: #fff7e6; }
.tip-box strong { color: var(--amber); }
.practice-section { padding: 26px; border: 1px solid #d8dde5; border-radius: 16px; background: #f8fafc; }
.practice-checklist { margin-top: 20px; padding: 18px 20px; border-left: 4px solid var(--green); background: var(--white); }
.practice-checklist > strong { display: block; margin-bottom: 8px; }
.practice-checklist ol { margin: 0; }
.quiz { padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--soft); }
.quiz-case { margin-top: 18px; }
.quiz-options { display: grid; gap: 10px; margin: 16px 0 0; padding-left: 28px; }
.quiz-options li { padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.quiz details { margin-top: 15px; }
.quiz summary { color: var(--red); font-weight: 850; cursor: pointer; }
.quiz-answer-list { margin: 16px 0; padding-left: 24px; }
.quiz-answer-list li { margin-bottom: 10px; }
.revision-entry { border-left: 4px solid var(--red); padding-left: 22px; }
.source-list { padding: 22px; border-radius: 14px; background: var(--soft); }
.source-list li { font-size: .94rem; }
.citation-box { margin-top: 20px; padding: 20px; border: 1px solid #cfd2d7; border-radius: 14px; background: var(--white); }
.citation-box > strong { display: block; margin-bottom: 6px; }
.citation-box p { color: var(--muted); font-size: .9rem !important; }
.citation-box .btn { min-height: 38px; padding: 7px 12px; font-size: .8rem; }
.faq-list details { padding: 20px 0; border-bottom: 1px solid var(--line); }
.faq-list summary { color: var(--ink); font-size: 1.08rem; font-weight: 800; cursor: pointer; }
.faq-list details p { padding-top: 12px; color: var(--muted); }
.related-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.related-list a { padding: 14px 16px; border: 1px solid var(--line); border-radius: 11px; color: var(--ink); font-weight: 750; text-decoration: none; }
.related-list a:hover { border-color: var(--red); color: var(--red); }

.filter-bar { display: flex; gap: 12px; justify-content: space-between; align-items: center; margin: 28px 0; }
.filter-bar input { width: min(520px, 100%); padding: 14px 16px; border: 1px solid var(--line); border-radius: 11px; }
.filter-bar input:focus { outline: 3px solid rgba(163,13,27,.15); border-color: var(--red); }
.filter-count { color: var(--muted); font-size: .86rem; }
.category-jump { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; margin: 8px 0 32px; }
.category-jump a { display: flex; min-width: 0; flex-direction: column; padding: 14px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); text-decoration: none; }
.category-jump a:hover { border-color: var(--red); color: var(--red); }
.category-jump span { color: var(--muted); font-size: .78rem; }
.category-group { margin-top: 48px; scroll-margin-top: 110px; }
.category-group h2 { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.category-intro { max-width: 900px; color: var(--muted); }
.hub-guide { margin: 50px 0; }
.hub-method { margin-bottom: 64px; }
.hub-index-heading { margin-top: 20px; }
.search-page-form { display: flex; gap: 10px; max-width: 760px; margin-top: 30px; }
.search-page-form input { min-width: 0; flex: 1; padding: 14px 16px; border: 1px solid var(--line); border-radius: 11px; background: var(--white); }
.search-page-form input:focus { outline: 3px solid rgba(163,13,27,.15); border-color: var(--red); }
.search-summary { padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--muted); }
.search-results { display: grid; gap: 0; }
.search-result { padding: 24px 0; border-bottom: 1px solid var(--line); }
.search-result .tag { display: inline-block; margin-bottom: 8px; padding: 4px 8px; border-radius: 99px; color: var(--red); background: var(--red-soft); font-size: .68rem; font-weight: 850; text-transform: uppercase; }
.search-result h2 { margin-bottom: 8px; font-size: 1.35rem; }
.search-result h2 a { color: var(--ink); text-decoration: none; }
.search-result h2 a:hover { color: var(--red); }
.search-result p { margin: 0; color: var(--muted); }
.contact-detail { margin-top: 70px; }
.contact-template { margin: 60px 0; padding: 28px; border-radius: 16px; background: var(--soft); }
.contact-template pre { overflow-x: auto; margin: 18px 0 0; padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); font: .92rem/1.7 ui-monospace, SFMono-Regular, Consolas, monospace; white-space: pre-wrap; }

.ad-reserved { display: grid; min-height: 90px; place-items: center; margin: 36px auto; border: 1px dashed #ccd0d5; color: #9b9da2; background: #fafafa; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.ad-square { min-height: 250px; }

.site-footer { padding: 64px clamp(20px, 4vw, 72px) 24px; color: #d9dade; background: #171719; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: clamp(30px, 5vw, 72px); }
.brand-footer { margin-bottom: 18px; color: var(--white); }
.site-footer p { max-width: 380px; color: #aeb0b5; font-size: .9rem; }
.site-footer h2 { margin-bottom: 14px; color: var(--white); font-size: .9rem; letter-spacing: 0; }
.site-footer a { display: block; padding: 5px 0; color: #c8c9cd; font-size: .84rem; text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.site-footer .network-note a { display: inline; color: #f2aeb5; }
.footer-bottom { display: flex; gap: 20px; justify-content: space-between; margin-top: 48px; padding-top: 20px; border-top: 1px solid #36363a; color: #909298; font-size: .75rem; }

.error-page { display: grid; min-height: 65vh; place-items: center; text-align: center; }
.error-page strong { color: var(--red); font-size: clamp(4rem, 12vw, 9rem); line-height: 1; }

@media (max-width: 1000px) {
  .hero-grid, .two-col, .article-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .sidebar-sticky { position: static; }
  .toc { display: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .header-search { display: none; }
  .main-nav .nav-search-link { display: inline-block; }
  .category-jump { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .header-inner { min-height: 66px; padding-inline: 18px; }
  .trust-bar { align-items: flex-start; flex-direction: column; gap: 2px; padding-inline: 18px; }
  .brand { font-size: 1.12rem; }
  .brand-mark { width: 32px; height: 32px; }
  .nav-toggle { display: block; }
  .main-nav { position: absolute; top: 65px; right: 0; left: 0; display: none; padding: 12px 20px 20px; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
  .main-nav.is-open { display: block; }
  .main-nav a { display: block; padding: 12px 0; border: 0; }
  .main-nav .nav-search-link { display: block; }
  .hero { padding-top: 42px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .corrector-card { border-radius: 17px; }
  .editor-wrap textarea { min-height: 230px; padding: 18px; }
  .results-body { grid-template-columns: 1fr; }
  .results-toolbar { align-items: flex-start; flex-direction: column; }
  .results-head { align-items: flex-start; flex-direction: column; }
  .issue-list { border-top: 1px solid var(--line); border-left: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid, .example-grid, .editorial-note, .related-list, .footer-grid { grid-template-columns: 1fr; }
  .filter-bar, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .search-page-form { align-items: stretch; flex-direction: column; }
  .category-jump { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .comparison-table { display: block; overflow-x: auto; }
  .section { padding-block: 56px; }
  .page-hero h1, h1 { font-size: clamp(2.2rem, 11vw, 3.3rem); }
}

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