/* Brand Site Engine — one theme, brand colours from site.json:
   colors.primary, colors.secondary (CTA), colors.onSecondary (CTA text), colors.accent, colors.heroBg (dark hero). */
:root {
  --primary: #1d4f91;
  --secondary: #f5b301;
  --on-secondary: #1a1a1a;
  --accent: var(--secondary);
  --hero-bg: color-mix(in srgb, var(--primary) 78%, #050a14);
  --ink: #15202d;
  --text: #26313d;
  --muted: #5d6877;
  --line: #e2e7ee;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --tint: color-mix(in srgb, var(--primary) 6%, #fff);
  --tint-strong: color-mix(in srgb, var(--primary) 12%, #fff);
  --good: #2f8a57;
  --bad: #c2493f;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .06);
  --shadow: 0 4px 16px rgba(16, 24, 40, .08);
  --shadow-lg: 0 14px 40px rgba(16, 24, 40, .12);
  --container: 1120px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font: 17px/1.7 var(--font); color: var(--text); background: var(--bg); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--primary) 55%, #fff); outline-offset: 2px; border-radius: 4px; }
h1, h2, h3 { color: var(--ink); line-height: 1.2; margin: 0 0 .55em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.45rem, 2.8vw, 1.95rem); font-weight: 750; }
h3 { font-size: 1.15rem; font-weight: 700; }
p, ul, ol { margin: 0 0 1em; }
h2[id] { scroll-margin-top: 88px; }
.icon { width: 1.25em; height: 1.25em; flex: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 36px 0; }
.intro { color: var(--muted); max-width: 760px; font-size: 1.05rem; }
.note { font-size: .85rem; color: var(--muted); margin: .9em 0 0; }
.muted { color: var(--muted); }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Background bands: "variant": "soft" | "tint" on any block */
.band { padding: 12px 0; }
.band--soft { background: var(--bg-soft); }
.band--tint { background: var(--tint); }
.band + .band { margin-top: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px; border: 2px solid transparent;
  background: var(--secondary); color: var(--on-secondary); font-weight: 750; line-height: 1.2;
  text-decoration: none; text-align: center; cursor: pointer;
  box-shadow: 0 2px 0 color-mix(in srgb, var(--secondary) 70%, #000);
  transition: transform .15s, filter .15s, box-shadow .15s;
}
.btn:hover { filter: brightness(1.05); transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn--lg { padding: 15px 30px; font-size: 1.05rem; }
.btn--sm { padding: 8px 16px; font-size: .9rem; white-space: nowrap; }
.btn--block { width: 100%; }
.btn--ghost { background: transparent; color: var(--primary); border-color: color-mix(in srgb, var(--primary) 35%, #fff); box-shadow: none; }
.btn--ghost:hover { background: var(--tint); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); box-shadow: none; }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .1); }
.block-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin: 24px 0 0; }
.block-cta .note { margin: 0; }

/* ---------- Header / nav ---------- */
.site-header { background: rgba(255, 255, 255, .96); backdrop-filter: saturate(1.4) blur(6px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 30; }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 66px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 800; font-size: 1.1rem; letter-spacing: -.01em; }
.logo img { width: 32px; height: 32px; border-radius: 8px; }
.site-nav ul { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.site-nav a { display: block; padding: 8px 12px; border-radius: 8px; color: var(--text); text-decoration: none; font-size: .95rem; font-weight: 600; }
.site-nav a:hover { background: var(--tint); color: var(--primary); }
.site-nav a[aria-current="page"] { color: var(--primary); background: var(--tint); }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; border-radius: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .2s, opacity .2s; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 66px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; padding: 8px 12px 14px; }
  .site-nav a { padding: 12px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs ol { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 14px 20px 0; font-size: .86rem; color: var(--muted); }
.breadcrumbs li + li::before { content: "›"; margin: 0 8px; }
.hero-dark .breadcrumbs { position: absolute; left: 0; right: 0; z-index: 2; }
.hero-dark .breadcrumbs ol, .hero-dark .breadcrumbs a { color: rgba(255, 255, 255, .78); }
.page-head { padding-top: 28px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 56px 0 60px; background: linear-gradient(135deg, var(--tint-strong) 0%, #fff 62%); border-bottom: 1px solid var(--line); }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.hero::before { width: 520px; height: 520px; right: -160px; top: -220px; background: radial-gradient(circle, color-mix(in srgb, var(--primary) 16%, transparent) 0%, transparent 70%); }
.hero::after { width: 360px; height: 360px; left: -140px; bottom: -220px; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent) 0%, transparent 70%); }
.hero__inner { position: relative; z-index: 1; }
.hero__inner--split { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.hero__text { max-width: 720px; }
.hero__lead { font-size: 1.14rem; color: var(--muted); margin-bottom: 1.5em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.hero__note { font-size: .82rem; color: var(--muted); margin: 0; }
.hero__media .shot { margin: 0 auto; max-height: 460px; width: auto; }

.badges { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0 0 18px; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; font-size: .8rem; font-weight: 700; letter-spacing: .01em;
  background: #fff; color: var(--primary); border: 1px solid color-mix(in srgb, var(--primary) 22%, #fff); }
.badge .icon { width: 15px; height: 15px; }

.hero__panel { list-style: none; margin: 0; padding: 10px; display: grid; gap: 10px; background: rgba(255, 255, 255, .7); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); }
.highlight { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 14px; align-items: center; padding: 16px 18px; background: #fff; border-radius: 12px; border: 1px solid var(--line); }
.highlight__icon { grid-row: span 2; display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; background: var(--tint); color: var(--primary); }
.highlight__label { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.highlight__value { font-size: 1.12rem; color: var(--ink); line-height: 1.3; }

/* Dark hero: site.json "heroStyle": "dark" */
.hero-dark .hero { background: radial-gradient(1200px 500px at 85% -10%, color-mix(in srgb, var(--primary) 55%, transparent), transparent 60%), var(--hero-bg); border-bottom: 0; color: rgba(255, 255, 255, .88); padding-top: 72px; }
.hero-dark .hero h1 { color: #fff; }
.hero-dark .hero__lead { color: rgba(255, 255, 255, .82); }
.hero-dark .hero__note { color: rgba(255, 255, 255, .66); }
.hero-dark .hero::before { background: radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent) 0%, transparent 70%); }
.hero-dark .hero::after { background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 70%); }
.hero-dark .badge { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .22); }
.hero-dark .hero .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .45); }
.hero-dark .hero .btn--ghost:hover { background: rgba(255, 255, 255, .1); }
.hero-dark .hero__panel { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .14); box-shadow: none; }

/* ---------- Screenshots / media ---------- */
.shot { border-radius: var(--radius-sm); border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff; width: auto; max-width: 100%; }
figure { margin: 1.6em 0; }
figcaption { font-size: .84rem; color: var(--muted); margin-top: .6em; line-height: 1.5; }
.prose figure img { border-radius: var(--radius-sm); border: 1px solid var(--line); box-shadow: var(--shadow); }
.split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.split--left .split__media { order: -1; }
.split__media { margin: 0; }
.split__text > * { max-width: none; }

/* ---------- Content ---------- */
.prose > * { max-width: 800px; }
.prose h2 { margin-top: 1.3em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.3em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }
.prose li::marker { color: var(--primary); }
.prose table { display: block; overflow-x: auto; border-collapse: collapse; margin: 0 0 1.3em; font-size: .94rem; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.prose th, .prose td { padding: 10px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { background: var(--bg-soft); color: var(--ink); font-weight: 700; }
.prose tr:last-child td { border-bottom: 0; }
.prose code { font-size: .9em; background: var(--bg-soft); padding: 1px 5px; border-radius: 5px; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 36px; box-shadow: var(--shadow); }
.panel > * { max-width: 800px; }
.callout { background: var(--tint); border-left: 4px solid var(--primary); border-radius: 8px; padding: 16px 20px; margin: 0 0 1.3em; }
.callout > :last-child { margin-bottom: 0; }
.related { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 22px; margin: 1.4em 0; }
.related__title { font-weight: 700; margin-bottom: .4em; }
.related ul { margin: 0; }

/* ---------- Cards: shared look ---------- */
.fact, .feature, .pc, .verdict, .summary, .step__card, .highlight { transition: box-shadow .2s, border-color .2s; }

/* Facts grid */
.facts { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; margin: 0; }
.fact { display: flex; gap: 14px; align-items: flex-start; min-width: 0; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.fact:hover { box-shadow: var(--shadow); }
.fact__icon { display: inline-flex; flex: none; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 11px; background: var(--tint); color: var(--primary); }
.fact__body { min-width: 0; }
.facts dt { font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; margin-bottom: 4px; }
.facts dd { margin: 0; font-weight: 750; font-size: 1.06rem; color: var(--ink); line-height: 1.35; overflow-wrap: anywhere; }
.fact__note { font-size: .82rem; color: var(--muted); margin: 6px 0 0; line-height: 1.45; }

/* Brand summary */
.summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.summary--split { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); }
.summary__main { padding: 26px 28px; }
.summary__head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.summary__head h2 { margin: 0; }
.summary__logo { width: 52px; height: 52px; border-radius: 12px; }
.summary__table { width: 100%; border-collapse: collapse; }
.summary__table th, .summary__table td { padding: 11px 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.summary__table tr:last-child th, .summary__table tr:last-child td { border-bottom: 0; }
.summary__table th { width: 42%; color: var(--muted); font-weight: 600; padding-right: 16px; }
.summary__table td { color: var(--ink); font-weight: 600; }
.summary__aside { display: flex; flex-direction: column; justify-content: center; gap: 10px; padding: 28px; background: linear-gradient(160deg, var(--tint-strong), var(--tint)); border-left: 1px solid var(--line); text-align: center; }
.summary__hl-icon { display: inline-flex; align-self: center; width: 52px; height: 52px; align-items: center; justify-content: center; border-radius: 50%; background: #fff; color: var(--primary); box-shadow: var(--shadow-sm); }
.summary__hl-label { margin: 0; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.summary__hl-value { margin: 0 0 6px; font-size: 1.3rem; font-weight: 800; color: var(--ink); line-height: 1.25; }
.summary__aside .note { margin: 0; }

/* Quick verdict */
.verdict { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; box-shadow: var(--shadow); overflow: hidden; }
.verdict::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: linear-gradient(var(--primary), var(--accent)); }
.verdict__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.verdict__head h2 { margin: 0; }
.verdict__icon { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 10px; background: var(--primary); color: #fff; }
.verdict__text { font-size: 1.08rem; color: var(--ink); }
.verdict__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 6px; }
.verdict__col { border-radius: var(--radius-sm); padding: 16px 18px; }
.verdict__col--yes { background: color-mix(in srgb, var(--good) 7%, #fff); }
.verdict__col--no { background: color-mix(in srgb, var(--bad) 6%, #fff); }
.verdict__label { font-weight: 800; margin-bottom: .5em; font-size: .95rem; }
.verdict__col--yes .verdict__label, .verdict__col--yes .icon { color: var(--good); }
.verdict__col--no .verdict__label, .verdict__col--no .icon { color: var(--bad); }
.verdict__updated { display: flex; align-items: center; gap: 6px; margin: 18px 0 0; font-size: .84rem; color: var(--muted); }
.verdict__updated .icon { width: 16px; height: 16px; }

/* Icon lists (verdict, pros/cons) */
.ticks { list-style: none; padding: 0; margin: 0; }
.ticks li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: .55em; line-height: 1.5; }
.ticks li:last-child { margin-bottom: 0; }
.ticks .icon { width: 18px; height: 18px; margin-top: 3px; stroke-width: 2.4; }

/* Pros / cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.pc h3 { display: flex; align-items: center; gap: 10px; margin-bottom: .9em; }
.pc__badge { display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; border-radius: 50%; }
.pc__badge .icon { width: 18px; height: 18px; stroke-width: 2.6; }
.pc--pros { border-top: 4px solid var(--good); }
.pc--pros .pc__badge { background: color-mix(in srgb, var(--good) 12%, #fff); color: var(--good); }
.pc--pros .ticks .icon { color: var(--good); }
.pc--cons { border-top: 4px solid color-mix(in srgb, var(--bad) 75%, #888); }
.pc--cons .pc__badge { background: color-mix(in srgb, var(--bad) 10%, #fff); color: var(--bad); }
.pc--cons .ticks .icon { color: var(--bad); }

/* Feature grid */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.feature:hover { box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--primary) 25%, var(--line)); }
.feature h3 { margin-bottom: .35em; }
.feature p { margin: 0; color: var(--muted); font-size: .96rem; }
.feature__icon { display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: 12px; background: var(--tint); color: var(--primary); font-size: 1.3rem; margin-bottom: 14px; }
.feature__img { width: 48px; height: 48px; margin-bottom: 12px; }

/* Steps: vertical timeline with connector */
.steps { list-style: none; padding: 0; margin: 0; position: relative; display: grid; gap: 16px; counter-reset: step; }
.steps::before { content: ""; position: absolute; left: 21px; top: 22px; bottom: 22px; width: 2px; background: linear-gradient(var(--tint-strong), color-mix(in srgb, var(--primary) 30%, #fff), var(--tint-strong)); }
.step { position: relative; display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start; }
.step__num { position: relative; z-index: 1; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; box-shadow: 0 0 0 5px #fff, var(--shadow-sm); }
.band .step__num { box-shadow: 0 0 0 5px var(--bg-soft), var(--shadow-sm); }
.band--tint .step__num { box-shadow: 0 0 0 5px var(--tint), var(--shadow-sm); }
.step__card { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-sm); }
.step__card h3 { margin-bottom: .25em; font-size: 1.08rem; }
.step__card p { margin: 0; color: var(--muted); }
.step__icon { display: inline-flex; flex: none; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 10px; background: var(--tint); color: var(--primary); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.compare, .data-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.compare th, .compare td, .data-table th, .data-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
.compare thead th, .data-table thead th { background: var(--tint); color: var(--ink); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 800; }
.compare tbody tr:nth-child(even), .data-table tbody tr:nth-child(even) { background: #fafbfd; }
.compare tbody tr:last-child td, .data-table tbody tr:last-child td { border-bottom: 0; }
.data-table td { vertical-align: top; overflow-wrap: anywhere; }
.data-table strong, .compare strong { color: var(--ink); }
.cell-first, .operator { display: inline-flex; align-items: center; gap: 10px; }
.cell-icon { display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; border-radius: 8px; background: var(--tint); color: var(--primary); flex: none; }
.cell-icon .icon { width: 18px; height: 18px; }
.operator__logo { width: 40px; height: 40px; border-radius: 10px; object-fit: contain; }
.compare__cta { text-align: right; }

@media (max-width: 700px) {
  .table-wrap:has(.compare) { border: 0; overflow: visible; background: transparent; box-shadow: none; }
  .compare thead { display: none; }
  .compare, .compare tbody, .compare tr, .compare td { display: block; width: 100%; }
  .compare tbody tr, .compare tbody tr:nth-child(even) { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; padding: 6px 16px; box-shadow: var(--shadow-sm); }
  .compare td { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; text-align: right; }
  .compare td[data-label]::before { content: attr(data-label); font-weight: 700; color: var(--muted); text-align: left; font-size: .85rem; flex: none; max-width: 45%; }
  .compare td:first-child { font-size: 1.05rem; }
  .compare td:last-child { border-bottom: 0; }
  .compare__cta:empty { display: none; }
  .compare__cta .btn { width: 100%; }
  .data-table:not(.compare) th, .data-table:not(.compare) td { padding: 10px 12px; font-size: .9rem; }
}

/* ---------- Notice ---------- */
.notice { display: flex; gap: 14px; max-width: 800px; border-radius: var(--radius-sm); padding: 16px 20px; margin: 12px 0 20px; border: 1px solid; }
.notice p { margin: 0 0 .5em; }
.notice > div > :last-child { margin-bottom: 0; }
.notice__icon { flex: none; display: inline-flex; margin-top: 2px; }
.notice__title { font-weight: 800; color: var(--ink); }
.notice--info { background: #eef5fc; border-color: #cfe0f3; }
.notice--info .notice__icon { color: #2f6db5; }
.notice--warning { background: #fdf7ea; border-color: #f0dfb3; }
.notice--warning .notice__icon { color: #b27a0c; }
.notice--important { background: color-mix(in srgb, var(--primary) 6%, #fff); border-color: color-mix(in srgb, var(--primary) 22%, #fff); }
.notice--important .notice__icon { color: var(--primary); }

/* ---------- Table of contents ---------- */
.toc-wrap { padding-top: 16px; padding-bottom: 16px; }
.toc { max-width: 820px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.toc summary { cursor: pointer; padding: 14px 20px; font-weight: 800; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.toc summary::-webkit-details-marker { display: none; }
.toc summary::after { content: ""; width: 9px; height: 9px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform .2s; margin-right: 4px; }
.toc[open] summary::after { transform: rotate(-135deg); }
.toc ol { margin: 0; padding: 0 20px 16px 42px; columns: 2; column-gap: 36px; }
.toc li { margin-bottom: .35em; break-inside: avoid; }
.toc li::marker { color: var(--primary); font-weight: 700; }
.toc a { text-decoration: none; }
.toc a:hover { text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 10px; background: #fff; transition: border-color .2s; }
.faq details[open] { border-color: color-mix(in srgb, var(--primary) 28%, var(--line)); }
.faq summary { cursor: pointer; padding: 16px 52px 16px 20px; font-weight: 700; color: var(--ink); list-style: none; position: relative; border-radius: var(--radius-sm); }
.faq summary:hover { background: var(--bg-soft); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 22px; top: 50%; width: 9px; height: 9px; margin-top: -7px; border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary); transform: rotate(45deg); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq__answer { padding: 0 20px 16px; }
.faq__answer p { margin: 0; }

/* ---------- CTA panel ---------- */
.cta { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 28px;
  background: radial-gradient(600px 240px at 100% 0%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 70%), linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 70%, #050a14));
  color: rgba(255, 255, 255, .9); border-radius: 18px; padding: 34px 38px; box-shadow: var(--shadow-lg); }
.cta h2 { color: #fff; margin-bottom: .3em; }
.cta p { margin: 0; }
.cta__note { font-size: .82rem; opacity: .75; margin-top: .6em !important; }
.cta__actions { display: flex; flex-direction: column; gap: 10px; flex: none; }
.cta a:not(.btn) { color: #fff; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { display: none; }
@media (max-width: 700px) {
  .sticky-cta {
    display: flex; align-items: center; gap: 12px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    padding: 9px 14px calc(9px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, .97); backdrop-filter: blur(6px);
    border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(16, 24, 40, .1);
  }
  .sticky-cta__text { display: flex; flex-direction: column; min-width: 0; line-height: 1.25; }
  .sticky-cta__text strong { font-size: .9rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .sticky-cta__text span { font-size: .72rem; color: var(--muted); }
  .sticky-cta .btn { flex: 1; margin-left: auto; padding: 11px 14px; max-width: 60%; }
  body:has(.sticky-cta) { padding-bottom: 68px; }
}

/* ---------- Footer ---------- */
.site-footer { background: #111823; color: #aeb8c5; padding: 40px 0 36px; margin-top: 48px; font-size: .9rem; }
.site-footer a { color: #fff; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; padding: 0; margin: 0 0 20px; font-weight: 600; }
.footer-rg { border: 1px solid #2c3746; border-radius: 10px; padding: 12px 16px; }
.footer-copy { margin: 0; color: #768293; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__inner--split, .split { grid-template-columns: 1fr; gap: 28px; }
  .split--left .split__media { order: 0; }
  .summary--split { grid-template-columns: 1fr; }
  .summary__aside { border-left: 0; border-top: 1px solid var(--line); }
}
@media (max-width: 700px) {
  body { font-size: 16px; }
  .section { padding: 26px 0; }
  .band { padding: 6px 0; }
  .hero { padding: 34px 0 38px; }
  .hero-dark .hero { padding-top: 56px; }
  .hero__actions .btn, .block-cta .btn { width: 100%; }
  .hero__media .shot { max-height: 320px; }
  .pros-cons, .verdict__cols { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; gap: 10px; }
  .fact { flex-direction: column; gap: 10px; padding: 14px; }
  .fact__icon { width: 36px; height: 36px; }
  .facts dd { font-size: .98rem; }
  .verdict, .pc, .summary__main, .summary__aside { padding: 20px; }
  .panel { padding: 22px 20px; }
  .summary__table th { width: 46%; }
  .step { grid-template-columns: 36px 1fr; gap: 12px; }
  .step__num { width: 36px; height: 36px; font-size: .95rem; }
  .steps::before { left: 17px; }
  .step__card { padding: 14px 16px; }
  .toc ol { columns: 1; }
  .cta { flex-direction: column; align-items: stretch; text-align: center; padding: 26px 20px; }
  .cta__actions .btn { width: 100%; }
}
@media (max-width: 380px) {
  .facts { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}
