:root {
  color-scheme: light;
  --bg: #f4f7fb;
  --panel: #ffffff;
  --panel-2: #edf2f7;
  --text: #111722;
  --muted: #596677;
  --soft: #7a8493;
  --line: rgba(17, 24, 39, 0.13);
  --red: #e50914;
  --red-2: #ff2834;
  --steel: #9fb3c6;
  --cyan: #5ee7ff;
  --grid-a: rgba(28, 43, 62, 0.07);
  --grid-b: rgba(28, 43, 62, 0.05);
  --header-bg: rgba(255, 255, 255, 0.78);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --button-bg: #101722;
  --button-text: #ffffff;
  --button-secondary-bg: rgba(255, 255, 255, 0.76);
  --field-bg: #f7f9fc;
  --field-line: #d5dce6;
  --hero-overlay:
    linear-gradient(90deg, rgba(244,247,251,0.97) 0%, rgba(244,247,251,0.84) 42%, rgba(244,247,251,0.20) 100%),
    linear-gradient(0deg, rgba(244,247,251,0.94), rgba(244,247,251,0.10) 44%);
  --body-glow:
    linear-gradient(180deg, rgba(229,9,20,0.12), transparent 18rem),
    linear-gradient(90deg, rgba(255,255,255,0.6), transparent 36%, transparent 72%, rgba(94,231,255,0.15));
  --footer-bg: #e8edf5;
  --shadow: 0 24px 70px rgba(21, 32, 48, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #050505;
  --panel: #101010;
  --panel-2: #171717;
  --text: #f6f6f6;
  --muted: #b7b7b7;
  --soft: #757575;
  --line: rgba(255, 255, 255, 0.13);
  --grid-a: rgba(255,255,255,0.045);
  --grid-b: rgba(255,255,255,0.035);
  --header-bg: rgba(5, 5, 5, 0.82);
  --glass: rgba(16, 16, 16, 0.72);
  --glass-strong: rgba(16, 16, 16, 0.9);
  --button-bg: #ffffff;
  --button-text: #050505;
  --button-secondary-bg: rgba(255, 255, 255, 0.08);
  --field-bg: #f7f7f7;
  --field-line: #d5d5d5;
  --hero-overlay:
    linear-gradient(90deg, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.70) 42%, rgba(5,5,5,0.10) 100%),
    linear-gradient(0deg, rgba(5,5,5,0.84), transparent 42%);
  --body-glow:
    linear-gradient(180deg, rgba(229,9,20,0.12), transparent 18rem),
    linear-gradient(90deg, rgba(255,255,255,0.035), transparent 28%, transparent 72%, rgba(255,255,255,0.025));
  --footer-bg: #030303;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, var(--grid-a) 1px, transparent 1px) 0 0 / 74px 74px,
    linear-gradient(var(--grid-b) 1px, transparent 1px) 0 0 / 74px 74px,
    var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: var(--body-glow);
  opacity: 0.72;
  z-index: -2;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg,
canvas,
iframe {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  font-size: 0.85rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn,
.icon-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

.btn {
  padding: 0 18px;
  background: var(--button-bg);
  color: var(--button-text);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.btn svg,
.icon-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn:hover,
.icon-btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-secondary {
  background: var(--button-secondary-bg);
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost {
  background: var(--glass);
  color: var(--text);
  border-color: var(--line);
}

.icon-btn {
  width: 44px;
  padding: 0;
  background: var(--button-secondary-bg);
  color: var(--text);
  border-color: var(--line);
}

.theme-toggle svg {
  pointer-events: none;
}

.quick-actions {
  position: fixed;
  top: 50%;
  right: clamp(12px, 2vw, 28px);
  z-index: 28;
  display: grid;
  gap: 10px;
  transform: translate(18px, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.quick-actions-visible .quick-actions {
  transform: translate(0, -50%);
  opacity: 1;
  pointer-events: auto;
}

.quick-action {
  --quick-color: var(--red);
  position: relative;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-strong);
  border: 1px solid var(--line);
  border-color: color-mix(in srgb, var(--quick-color) 40%, var(--line));
  border-radius: 16px;
  color: var(--quick-color);
  box-shadow: 0 18px 46px rgba(17, 23, 34, 0.16);
  backdrop-filter: blur(18px);
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.quick-action svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
}

.quick-action::after {
  content: attr(data-label);
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  padding: 7px 10px;
  background: var(--text);
  border-radius: var(--radius);
  color: var(--panel);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(8px, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.quick-action:hover,
.quick-action:focus-visible {
  transform: translateX(-2px);
  background: var(--quick-color);
  border-color: var(--quick-color);
  color: #fff;
}

.quick-action:hover::after,
.quick-action:focus-visible::after {
  transform: translate(0, -50%);
  opacity: 1;
}

.quick-action-form {
  --quick-color: #175cd3;
}

.quick-action-whatsapp {
  --quick-color: #16a34a;
}

[data-theme="dark"] .quick-action {
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  isolation: isolate;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.38;
}

.hero-bg-image {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  top: 96px;
  bottom: 72px;
  width: min(42vw, 560px);
  height: auto;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.9;
  mix-blend-mode: multiply;
}

[data-theme="dark"] .hero-bg-image {
  opacity: 0.45;
  mix-blend-mode: screen;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-overlay);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 38px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: 44px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 3px;
  background: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 9vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  padding: 20px 18px 20px 0;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
  padding-left: 18px;
}

.metric strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.scan-panel {
  align-self: center;
  padding: 24px;
  background: var(--glass-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.scan-panel h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.scan-panel p {
  color: var(--muted);
  margin-bottom: 18px;
}

.scan-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scan-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--text);
}

.scan-list svg {
  width: 20px;
  height: 20px;
  color: var(--red-2);
  margin-top: 3px;
}

.section {
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
  content-visibility: auto;
  contain-intrinsic-size: auto 680px;
}

.section.tight {
  padding: 54px 0;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-item {
  min-height: 100px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--panel);
  font-weight: 800;
}

.trust-item svg {
  width: 21px;
  height: 21px;
  color: var(--red-2);
  flex: 0 0 auto;
}

.expert-boost {
  background:
    linear-gradient(90deg, rgba(229, 9, 20, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), transparent);
}

[data-theme="dark"] .expert-boost {
  background:
    linear-gradient(90deg, rgba(229, 9, 20, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
}

.expert-boost-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: 28px;
  align-items: stretch;
}

.expert-copy {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.expert-copy p:not(.eyebrow) {
  color: var(--muted);
}

.expert-score {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.expert-score strong {
  color: var(--red);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.9;
}

.expert-score span {
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
}

.expert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.expert-card {
  min-height: 100%;
  padding: 20px;
  background: var(--glass-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(21, 32, 48, 0.06);
}

[data-theme="dark"] .expert-card {
  box-shadow: none;
}

.expert-card svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  margin-bottom: 14px;
}

.expert-card h3 {
  font-size: 1.05rem;
}

.expert-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.checker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  padding: 22px;
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field select,
.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--field-line);
  border-radius: var(--radius);
  padding: 0 12px;
  background: var(--field-bg);
  color: var(--text);
  outline: none;
}

.field textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

.field select:focus,
.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.13);
}

.checker .btn {
  min-height: 48px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checker-output {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  min-height: 100%;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(21, 32, 48, 0.06);
}

[data-theme="dark"] .card {
  box-shadow: none;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--red);
  opacity: 0;
  transition: opacity 160ms ease;
}

a.card:hover::before,
a.card:focus-visible::before {
  opacity: 1;
}

.card p,
.content p,
.content li {
  color: var(--muted);
}

.card .kicker {
  color: var(--red-2);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-link svg {
  width: 17px;
  height: 17px;
}

.visual-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
}

.visual-panel {
  position: relative;
  min-height: 340px;
  max-height: 420px;
  aspect-ratio: 16 / 9;
  border-block: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--grid-a) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(var(--grid-b) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--panel-2);
}

.visual-panel canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.visual-image,
.page-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-panel canvas,
.page-visual canvas {
  opacity: 0.18;
  mix-blend-mode: multiply;
}

[data-theme="dark"] .visual-panel canvas,
[data-theme="dark"] .page-visual canvas {
  opacity: 0.44;
  mix-blend-mode: screen;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.image-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(21, 32, 48, 0.08);
}

.image-card img,
.card-image {
  display: block;
  width: 100%;
  height: clamp(130px, 11vw, 180px);
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.image-card-body {
  padding: 16px;
}

.image-card-body h3 {
  font-size: 1rem;
}

.image-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-image {
  margin: -22px -22px 18px;
  width: calc(100% + 44px);
  border-bottom: 1px solid var(--line);
}

.data-rail {
  display: grid;
  gap: 12px;
}

.data-row {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.data-row b {
  color: var(--text);
  text-transform: uppercase;
  font-size: 0.78rem;
}

.data-row span {
  color: var(--muted);
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: 46px;
  align-items: start;
}

.content-main {
  display: grid;
  gap: 34px;
}

.content-box {
  padding-top: 8px;
  border-top: 3px solid var(--red);
}

.content-box h2 {
  font-size: clamp(1.55rem, 3vw, 2.6rem);
}

.answer-box {
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(229, 9, 20, 0.07), transparent 34%),
    var(--glass-strong);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
}

.answer-summary {
  max-width: 860px;
  color: var(--text);
  font-size: 1.05rem;
}

.simple-summary {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.simple-summary li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.simple-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.answer-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  background: var(--line);
  border: 1px solid var(--line);
}

.answer-fact {
  min-height: 100%;
  padding: 14px 16px;
  background: var(--panel);
}

.answer-fact b {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.answer-fact span,
.answer-fact a {
  color: var(--muted);
}

.answer-fact a,
.content-box a:not(.card) {
  color: var(--text);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(229, 9, 20, 0.42);
  text-underline-offset: 3px;
}

.answer-fact a:hover,
.content-box a:not(.card):hover {
  color: var(--red);
}

.link-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.link-panel {
  min-height: 100%;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.link-panel h3 {
  font-size: 1.04rem;
}

.link-panel p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.link-list {
  display: grid;
  gap: 2px;
}

.link-list a {
  min-height: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-weight: 800;
  text-decoration: none;
}

.content-box .link-list a {
  text-decoration: none;
}

.link-list a:hover,
.link-list a:focus-visible {
  color: var(--text);
}

.link-list svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

.content ul,
.content ol {
  padding-left: 20px;
}

.sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 16px;
}

.side-panel {
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.side-panel h3 {
  font-size: 1rem;
}

.side-panel a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.side-panel a:last-child {
  border-bottom: 0;
}

.side-panel a:hover {
  color: var(--text);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 800;
}

.faq details p {
  padding: 0 20px 18px;
  margin: 0;
}

.map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.2) contrast(1.02);
}

[data-theme="dark"] .map-frame {
  filter: grayscale(1) contrast(1.08) invert(0.92);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  background: var(--panel);
  color: var(--text);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

.cta-band .btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: var(--button-secondary-bg);
}

.breadcrumb {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--text);
}

.page-hero {
  position: relative;
  padding: 58px 0 34px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(244,247,251,0.98), rgba(244,247,251,0.76)),
    var(--bg);
}

[data-theme="dark"] .page-hero {
  background:
    linear-gradient(90deg, rgba(5,5,5,0.96), rgba(5,5,5,0.66)),
    #050505;
}

.page-hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 34px;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.9rem);
}

.page-visual {
  position: relative;
  min-height: 240px;
  max-height: 320px;
  aspect-ratio: 16 / 10;
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: var(--panel-2);
}

.page-visual canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pill {
  padding: 7px 10px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
}

.site-footer {
  padding: 54px 0 30px;
  background:
    linear-gradient(90deg, rgba(229, 9, 20, 0.08), transparent 28%),
    var(--footer-bg);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(3, minmax(170px, 0.75fr));
  gap: 34px;
  align-items: start;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p {
  margin: 0 0 20px;
  color: var(--muted);
}

.footer-actions {
  display: grid;
  gap: 10px;
}

.footer-contact {
  min-height: 42px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex: 0 0 auto;
}

.hours-panel,
.footer-hours {
  padding: 18px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.footer-hours {
  margin-top: 16px;
}

.hours-panel h3,
.footer-hours h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.hours-panel p,
.footer-hours p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hours-panel p + p,
.footer-hours p + p {
  margin-top: 6px;
}

.hours-panel strong,
.footer-hours strong {
  color: var(--text);
}

.footer-col h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  font-size: 0.94rem;
  color: var(--text);
  text-transform: uppercase;
}

.footer-col h3 svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex: 0 0 auto;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  min-height: 34px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact:hover,
.footer-contact:focus-visible {
  color: var(--text);
}

.footer-links svg {
  width: 17px;
  height: 17px;
  color: var(--soft);
  flex: 0 0 auto;
}

.legal {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.86rem;
}

@media (max-width: 1060px) {
  .nav {
    display: none;
  }

  .hero-inner,
  .page-hero-inner,
  .visual-section,
  .expert-boost-inner,
  .content {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 58px;
  }

  .hero-bg-image {
    right: 24px;
    top: 88px;
    bottom: 120px;
    width: min(46vw, 420px);
  }

  .page-visual {
    max-width: 520px;
    min-height: 260px;
    justify-self: start;
  }

  .scan-panel,
  .sidebar {
    position: static;
  }

  .trust-strip,
  .checker,
  .image-strip,
  .expert-grid,
  .link-hub-grid,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checker .btn {
    grid-column: 1 / -1;
  }

  .visual-panel {
    min-height: 300px;
    max-height: 360px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .header-inner {
    min-height: 64px;
    width: min(100% - 24px, 1180px);
  }

  .brand span {
    max-width: 168px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg-image {
    top: 74px;
    right: -8%;
    bottom: auto;
    width: 58%;
    height: 180px;
    opacity: 0.28;
  }

  .hero-inner {
    width: min(100% - 24px, 1180px);
    min-height: 520px;
    padding: 44px 0 24px;
    align-content: end;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

  .hero-actions,
  .cta-band {
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-band .btn {
    width: 100%;
  }

  .hero-metrics,
  .trust-strip,
  .checker,
  .image-strip,
  .expert-grid,
  .answer-facts,
  .link-hub-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric:last-child {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 58px 0;
  }

  .container,
  .page-hero-inner {
    width: min(100% - 24px, 1180px);
  }

  .quick-actions {
    top: auto;
    right: 0;
    bottom: 18px;
    transform: translateX(18px);
  }

  .quick-actions-visible .quick-actions {
    transform: translateX(0);
  }

  .quick-action {
    width: 44px;
    height: 44px;
    border-radius: 13px 0 0 13px;
  }

  .quick-action svg {
    width: 21px;
    height: 21px;
  }

  .quick-action::after {
    display: none;
  }

  .checker {
    padding: 16px;
  }

  .visual-panel,
  .page-visual {
    min-height: 180px;
    max-height: 220px;
  }

  .data-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 44px;
  }
}

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