:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #22252a;
  --muted: #5f6670;
  --line: #e7e9ec;
  --soft: #f5f6f7;
  --soft-strong: #eceff1;
  --orange: #ff6a00;
  --orange-dark: #d95300;
  --green: #37a853;
  --dark: #17191d;
  --dark-2: #242831;
  --shadow: 0 18px 48px rgba(23, 25, 29, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--ink);
}

h1 {
  font-size: 2.35rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.18rem;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(231, 233, 236, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--orange);
  color: #fff;
  font-size: 0.86rem;
}

.brand-text {
  display: grid;
  min-width: 0;
  max-width: 220px;
  line-height: 1.1;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.site-nav {
  position: fixed;
  inset: 72px 0 auto 0;
  display: none;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.site-nav[data-open] {
  display: block;
}

.nav-list {
  display: grid;
  gap: 4px;
  width: min(calc(100% - 32px), var(--max));
  max-height: calc(100svh - 86px);
  margin: 0 auto;
  padding: 18px 0;
  overflow: auto;
  list-style: none;
}

.nav-list a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 750;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: var(--soft);
  color: var(--ink);
}

.header-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.site-header .header-cta {
  display: none;
}

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

.btn-primary {
  background: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-dark {
  background: var(--dark);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.btn-soft {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.btn-small {
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.hero,
.subhero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(23, 25, 29, 0.94), rgba(23, 25, 29, 0.66) 42%, rgba(23, 25, 29, 0.08) 78%),
    var(--hero-image);
  background-position: center right;
  background-size: cover;
  color: #fff;
}

.hero::after,
.subhero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: -1;
  height: 28%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.36), transparent);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  gap: 28px;
  padding: 52px 0 36px;
}

.hero-copy,
.subhero-copy {
  max-width: 760px;
}

.rating-signal {
  display: inline-grid;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 18px 42px rgba(0, 0, 0, 0.16);
  color: #fff;
  backdrop-filter: blur(16px);
}

.rating-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  line-height: 1;
}

.rating-stars {
  color: #ffb23f;
  font-size: 1rem;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(255, 178, 63, 0.32);
}

.rating-count {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 650;
}

.rating-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  min-height: 36px;
  padding: 9px 13px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.rating-live b {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(55, 168, 83, 0.16);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}

.hero h1,
.subhero h1 {
  color: #fff;
  text-wrap: balance;
}

.hero-lead,
.subhero-lead {
  max-width: 640px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  max-width: 100%;
}

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

.hero-actions .btn {
  min-height: 40px;
  padding: 9px 12px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 24px rgba(0, 0, 0, 0.12);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.hero-actions .btn .icon {
  width: 18px;
  height: 18px;
}

.hero-actions .btn-primary {
  border-color: rgba(255, 106, 0, 0.82);
  background: linear-gradient(135deg, var(--orange), #ff8a2a);
}

.hero-actions .btn-dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(10, 12, 15, 0.86);
}

.btn-call span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 2px;
  padding-left: 9px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  font-weight: 900;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  padding: 16px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.hero-banner-label {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.hero-banner-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
}

.hero-banner-meta {
  display: inline-block;
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.hero-banner-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  color: #0f2a44;
  font-size: 0.92rem;
  font-weight: 800;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 750;
}

.chip .icon {
  color: var(--green);
}

.request-form {
  align-self: start;
  width: 100%;
  max-width: min(470px, 100%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.request-form h2 {
  font-size: 1.38rem;
}

.request-form p {
  margin-top: 6px;
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

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

.field label {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
}

.field input:focus,
.field select:focus,
.btn:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 106, 0, 0.28);
  outline-offset: 2px;
}

.form-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-note[data-success] {
  color: var(--green);
  font-weight: 800;
}

.form-note[data-error] {
  color: #b42318;
  font-weight: 800;
}

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

.stats-strip {
  background: var(--dark);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat {
  min-height: 112px;
  padding: 20px;
  background: var(--dark);
}

.stat strong {
  display: block;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.section {
  padding: 58px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 28px;
}

.section-kicker {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

.service-card,
.step-card,
.trust-card,
.area-card,
.faq-card,
.link-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.service-card a,
.area-card a,
.link-card a {
  display: grid;
  height: 100%;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft-strong);
}

.service-card-body,
.area-card,
.step-card,
.trust-card,
.link-card a {
  padding: 18px;
}

.service-card p,
.area-card p,
.link-card p {
  margin-top: 8px;
}

.service-card .text-link,
.area-card .text-link,
.link-card .text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--orange-dark);
  font-weight: 850;
}

.step-card {
  position: relative;
  min-height: 196px;
  padding: 20px;
}

.step-index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.step-card p,
.trust-card p {
  margin-top: 8px;
}

.trust-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  min-height: 118px;
  padding: 18px;
}

.trust-card .icon {
  width: 26px;
  height: 26px;
  color: var(--green);
}

.expert-boost {
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.16), transparent 38%),
    var(--dark);
  color: #fff;
}

.expert-shell {
  display: grid;
  gap: 18px;
}

.expert-copy {
  display: grid;
  gap: 14px;
  max-width: 780px;
}

.expert-copy h2,
.expert-card h3 {
  color: #fff;
}

.expert-copy p,
.expert-card p,
.expert-note span {
  color: rgba(255, 255, 255, 0.76);
}

.expert-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 106, 0, 0.72);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--orange), #ff8a2a);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 850;
}

.expert-phone strong {
  padding-left: 9px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.expert-grid {
  display: grid;
  gap: 12px;
}

.expert-card {
  min-height: 172px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.expert-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 32px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: rgba(255, 106, 0, 0.16);
  color: #ff9a49;
  font-weight: 950;
}

.expert-card p {
  margin-top: 8px;
}

.expert-note {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.expert-note strong {
  color: #fff;
  font-size: 1.06rem;
}

.split {
  display: grid;
  gap: 28px;
}

.copy-stack {
  display: grid;
  gap: 16px;
}

.copy-stack ul,
.bullet-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.copy-stack li,
.bullet-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  color: var(--muted);
}

.copy-stack li::before,
.bullet-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.visual-panel {
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.visual-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.visual-panel-content {
  padding: 18px;
}

.proof-strip {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.2), rgba(255, 255, 255, 0.08));
}

.proof-strip .btn {
  width: max-content;
}

.area-map {
  display: grid;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.area-map iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.district-visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.12), transparent),
    #fff;
}

.district-visual svg {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-card {
  padding: 0;
}

.faq-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
  padding: 18px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--orange-dark);
  font-size: 1.2rem;
}

.faq-card[open] summary::after {
  content: "-";
}

.faq-card p {
  padding: 0 18px 18px;
}

.cta-band {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.breadcrumb a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-hero {
  padding: 52px 0;
  background: var(--dark);
  color: #fff;
}

.legal-hero h1 {
  margin-top: 10px;
  color: #fff;
}

.legal-hero p {
  max-width: 680px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.legal-layout {
  max-width: 880px;
}

.legal-content {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.legal-content h2 {
  font-size: 2rem;
}

.legal-content h3 {
  margin-top: 10px;
}

.legal-content a {
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quick-rail {
  position: fixed;
  right: 16px;
  top: 50%;
  z-index: 58;
  display: grid;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translate(18px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.quick-rail[data-active] {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.quick-rail-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(23, 25, 29, 0.92);
  color: #fff;
  box-shadow: 0 14px 34px rgba(23, 25, 29, 0.18);
  backdrop-filter: blur(14px);
}

.quick-rail-link .icon {
  width: 22px;
  height: 22px;
}

.quick-call {
  background: linear-gradient(135deg, var(--orange), #ff8a2a);
}

.quick-form {
  background: rgba(23, 25, 29, 0.94);
}

.quick-whatsapp {
  background: linear-gradient(135deg, var(--green), #2fbd68);
}

.quick-rail-link span {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  width: max-content;
  max-width: 180px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.15;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

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

.cookie-notice {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(520px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(23, 25, 29, 0.94);
  color: #fff;
  box-shadow: 0 18px 44px rgba(23, 25, 29, 0.22);
  backdrop-filter: blur(14px);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.92rem;
}

.cookie-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.45;
}

.cookie-notice a {
  display: inline-flex;
  margin-top: 6px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

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

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 720px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: center;
    padding: 76px 0 52px;
  }

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

  .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));
  }

  .expert-shell {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

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

  .expert-note {
    grid-column: 1 / -1;
    grid-template-columns: 160px 1fr;
    align-items: center;
  }

  .split {
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: start;
  }

  .cta-band {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

@media (max-width: 719px) {
  .header-inner {
    position: relative;
    gap: 10px;
    padding-right: 54px;
  }

  .nav-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .brand-text {
    max-width: 175px;
    font-size: 0.92rem;
  }

  .hero,
  .subhero {
    background-image:
      linear-gradient(90deg, rgba(23, 25, 29, 0.95), rgba(23, 25, 29, 0.82)),
      var(--hero-image);
    background-position: center;
  }

  .rating-signal {
    width: 100%;
    padding: 14px;
  }

  .rating-top {
    justify-content: space-between;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: auto;
    min-height: 40px;
    flex: 1 1 168px;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
  }

  .chip {
    width: 100%;
  }

  .quick-rail {
    right: 10px;
    gap: 7px;
  }

  .quick-rail-link {
    width: 46px;
    height: 46px;
  }

  .quick-rail-link .icon {
    width: 20px;
    height: 20px;
  }

  .quick-rail-link span {
    display: none;
  }

  .cookie-notice {
    left: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-notice .btn {
    width: 100%;
  }
}

@media (min-width: 1040px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: block;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-list {
    display: flex;
    align-items: center;
    width: auto;
    max-height: none;
    padding: 0;
    overflow: visible;
  }

  .nav-list a {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .site-header .header-cta {
    display: inline-flex;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .subhero h1 {
    font-size: 3.75rem;
  }

  .section {
    padding: 74px 0;
  }

}

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