:root {
  color-scheme: light;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --ice: #e0f2fe;
  --sky: #0ea5e9;
  --sky-dark: #0369a1;
  --nova: #a3263f;
  --line: rgba(148, 163, 184, 0.24);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
  --radius: 30px;
  --shell: min(1180px, calc(100% - 32px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(14, 165, 233, 0.09), transparent 24rem),
    #f8fafc;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(14, 165, 233, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(14, 165, 233, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.contacts-pending [data-contact-phone],
.contacts-pending [data-contact-email],
.contacts-pending [data-contact-hours] { visibility: hidden; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 12px;
  width: var(--shell);
  min-height: 72px;
  margin: 12px auto 0;
  padding: 12px 14px 12px 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 38px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, #38bdf8, #0284c7);
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.24);
  color: #fff;
}

.brand-mark svg { width: 20px; height: 20px; }
.brand b { color: var(--nova); }
.brand strong { color: var(--sky-dark); }
.brand-words { font-size: 18px; white-space: nowrap; }

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav > a {
  position: relative;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--sky);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a[aria-current="page"]::after { transform: scaleX(1); }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border-radius: 13px;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone svg { width: 17px; height: 17px; }
.menu-toggle { display: none; }

.breadcrumbs {
  padding-top: 30px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs ol {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after { margin-left: 8px; color: #94a3b8; content: "/"; }
.breadcrumbs a:hover { color: var(--sky-dark); }

.hero { padding: 28px 0 76px; }

.hero-grid {
  position: relative;
  min-height: 570px;
  padding: clamp(28px, 5vw, 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(circle at 84% 20%, rgba(56, 189, 248, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 255, 0.86));
  box-shadow: var(--shadow);
}

.hero-grid::after {
  position: absolute;
  right: -80px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(14, 165, 233, 0.025), 0 0 0 140px rgba(14, 165, 233, 0.02);
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--sky-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border: 3px solid rgba(14, 165, 233, 0.22);
  border-radius: 50%;
  background: var(--sky);
  content: "";
}

h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -0.055em; }

h1 {
  max-width: 760px;
  margin: 22px 0;
  font-size: clamp(40px, 5.2vw, 74px);
  font-weight: 750;
}

.hero-copy > p {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
}

.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(14, 165, 233, 0.25); outline-offset: 3px; }
.button-primary { background: var(--ink); box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18); color: #fff; }
.button-secondary { border-color: var(--line); background: rgba(255, 255, 255, 0.76); color: var(--ink); }
.button svg { width: 18px; height: 18px; }

.hero-note {
  margin-top: 27px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 13px;
}

.hero-note span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 50%;
  background: var(--ice);
  color: var(--sky-dark);
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.service-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  background: #dbeafe;
  box-shadow: 0 26px 56px rgba(15, 23, 42, 0.16);
}

.service-photo img { width: 100%; height: 100%; object-fit: cover; }

.service-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 40, 66, 0.34), transparent 52%);
  content: "";
}

.visual-badge {
  position: absolute;
  z-index: 2;
  right: -22px;
  bottom: 24px;
  max-width: 220px;
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(14px);
}

.visual-badge small { display: block; color: var(--sky-dark); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.visual-badge strong { display: block; margin-top: 4px; font-size: 16px; line-height: 1.35; }

.ac-scene {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 36px;
  background: linear-gradient(160deg, rgba(255,255,255,.85), rgba(186,230,253,.65));
  box-shadow: inset 0 0 80px rgba(255,255,255,.75), 0 28px 60px rgba(14,165,233,.12);
}

.ac-unit {
  position: absolute;
  z-index: 3;
  top: 54px;
  left: 8%;
  width: 84%;
  height: 114px;
  border: 1px solid rgba(148,163,184,.2);
  border-radius: 22px 22px 28px 28px;
  background: linear-gradient(175deg, #fff, #f1f5f9);
  box-shadow: 0 18px 32px rgba(15,23,42,.14);
}

.ac-unit::before {
  position: absolute;
  right: 6%;
  bottom: 18px;
  left: 6%;
  height: 20px;
  border-radius: 7px 7px 16px 16px;
  background: repeating-linear-gradient(98deg, #dbeafe 0 18px, #bfdbfe 19px 20px);
  content: "";
}

.ac-unit::after {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--sky-dark);
  content: "19°";
  font-size: 16px;
  font-weight: 800;
}

.air-lines { position: absolute; inset: 142px 6% 30px; overflow: hidden; }
.air-lines i {
  position: absolute;
  top: -35px;
  width: 2px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(to bottom, rgba(14,165,233,.7), transparent);
  transform-origin: top;
  animation: breathe 3.8s ease-in-out infinite alternate;
}
.air-lines i:nth-child(1) { left: 12%; transform: rotate(7deg); }
.air-lines i:nth-child(2) { left: 31%; height: 300px; animation-delay: -.8s; transform: rotate(3deg); }
.air-lines i:nth-child(3) { left: 50%; height: 320px; animation-delay: -1.4s; }
.air-lines i:nth-child(4) { left: 69%; height: 290px; animation-delay: -.4s; transform: rotate(-3deg); }
.air-lines i:nth-child(5) { left: 88%; animation-delay: -1.8s; transform: rotate(-7deg); }

@keyframes breathe { to { opacity: .25; transform: translateY(32px) scaleX(2); } }

.trust-row {
  position: relative;
  z-index: 3;
  margin: -34px auto 0;
  width: min(1050px, calc(100% - 56px));
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,.94);
  border-radius: 22px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 18px 50px rgba(15,23,42,.09);
  backdrop-filter: blur(16px);
}

.trust-row div { min-width: 0; padding: 0 20px; border-right: 1px solid var(--line); }
.trust-row div:last-child { border: 0; }
.trust-row strong { display: block; color: var(--ink); font-size: 14px; }
.trust-row span { color: var(--muted); font-size: 12px; line-height: 1.45; }

.section { padding: 94px 0; }
.section-tint { background: linear-gradient(180deg, rgba(224,242,254,.42), rgba(248,250,252,0)); }
.section-dark { position: relative; overflow: hidden; background: #071422; color: #fff; }
.section-dark::before { position: absolute; top: -260px; left: 50%; width: 700px; height: 700px; border-radius: 50%; background: rgba(14,165,233,.12); filter: blur(50px); content: ""; }

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin: 14px 0 16px;
  font-size: clamp(34px, 4.3vw, 56px);
}

.section-heading p { margin: 0; color: var(--muted); font-size: 17px; }
.section-dark .section-heading p { color: #a9b9c9; }
.section-dark .eyebrow { color: #7dd3fc; }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }

.feature-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 38px rgba(15,23,42,.06);
  backdrop-filter: blur(12px);
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(14,165,233,.18);
  border-radius: 15px;
  background: var(--ice);
  color: var(--sky-dark);
  font-size: 20px;
  font-weight: 800;
}

.feature-card h3 { margin: 25px 0 12px; font-size: 21px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 15px; }

.split {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  align-items: start;
  gap: clamp(36px,7vw,96px);
}

.split-copy h2 { margin: 14px 0 20px; font-size: clamp(34px,4.3vw,56px); }
.split-copy > p { color: var(--muted); font-size: 17px; }

.check-list { margin: 28px 0 0; padding: 0; display: grid; gap: 14px; list-style: none; }
.check-list li { position: relative; padding-left: 34px; color: var(--ink-soft); }
.check-list li::before { position: absolute; top: 3px; left: 0; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--ice); color: var(--sky-dark); content: "✓"; font-size: 12px; font-weight: 900; }

.info-panel {
  padding: clamp(24px,4vw,42px);
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 30px;
  background: linear-gradient(150deg, #fff, #eff8ff);
  box-shadow: var(--shadow);
}

.info-panel h3 { margin-bottom: 22px; font-size: 26px; }
.info-panel dl { margin: 0; }
.info-panel dl > div { padding: 17px 0; display: grid; grid-template-columns: minmax(120px,.6fr) 1fr; gap: 22px; border-top: 1px solid var(--line); }
.info-panel dt { color: var(--ink); font-weight: 800; }
.info-panel dd { margin: 0; color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; counter-reset: step; }
.step { min-height: 235px; padding: 26px; border: 1px solid rgba(125,211,252,.14); border-radius: 22px; background: rgba(255,255,255,.055); counter-increment: step; }
.step::before { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(125,211,252,.26); border-radius: 50%; background: rgba(14,165,233,.12); color: #7dd3fc; content: counter(step, decimal-leading-zero); font-size: 12px; font-weight: 800; }
.step h3 { margin: 26px 0 12px; font-size: 19px; letter-spacing: -.035em; }
.step p { margin: 0; color: #a9b9c9; font-size: 14px; }

.related-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.related-card { min-height: 230px; padding: 26px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 22px; background: #fff; transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.related-card:hover { transform: translateY(-4px); border-color: rgba(14,165,233,.3); box-shadow: 0 18px 40px rgba(15,23,42,.08); }
.related-card small { color: var(--sky-dark); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.related-card h3 { margin: 24px 0 10px; font-size: 23px; }
.related-card p { margin: 0 0 24px; color: var(--muted); font-size: 14px; }
.related-card span { margin-top: auto; color: var(--sky-dark); font-size: 13px; font-weight: 800; }

.faq-list { max-width: 900px; display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.82); overflow: clip; }
.faq-list summary { padding: 21px 54px 21px 22px; position: relative; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 22px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--ice); color: var(--sky-dark); content: "+"; transform: translateY(-50%); transition: transform 180ms ease; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

.cta-band { padding: 0 0 94px; }
.cta-inner { position: relative; padding: clamp(32px,6vw,70px); display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; overflow: hidden; border-radius: 34px; background: linear-gradient(130deg, #082f49, #0f172a); box-shadow: 0 26px 60px rgba(15,23,42,.2); color: #fff; }
.cta-inner::after { position: absolute; right: -90px; bottom: -170px; width: 390px; height: 390px; border: 1px solid rgba(125,211,252,.25); border-radius: 50%; content: ""; box-shadow: 0 0 0 60px rgba(125,211,252,.04); }
.cta-copy { position: relative; z-index: 1; max-width: 700px; }
.cta-copy h2 { margin: 10px 0 14px; font-size: clamp(32px,4vw,52px); }
.cta-copy p { margin: 0; color: #c5d5e4; font-size: 16px; }
.cta-actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; }
.cta-actions .button-primary { background: #fff; color: var(--ink); }
.cta-actions .button-secondary { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; }

.site-footer { padding: 68px 0 26px; background: #06111f; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .75fr .75fr; gap: 50px; }
.footer-brand p { max-width: 420px; margin: 22px 0 0; color: #8296aa; }
.site-footer .brand b { color: #f08ca2; }
.site-footer .brand strong { color: #7dd3fc; }
.footer-nav strong { display: block; margin-bottom: 18px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.footer-nav a, .footer-nav span { margin: 10px 0; display: block; color: #93a7ba; font-size: 14px; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { margin-top: 52px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; border-top: 1px solid rgba(148,163,184,.14); color: #6f8498; font-size: 12px; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.75,.25,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-header { gap: 12px; }
  .site-nav { gap: 14px; }
  .site-nav > a { font-size: 12px; }
  .header-phone { padding-inline: 12px; }
  .hero-grid { grid-template-columns: minmax(0,1fr) minmax(290px,.65fr); }
  .trust-row div { padding-inline: 12px; }
}

@media (max-width: 860px) {
  .site-header { top: 8px; margin-top: 8px; }
  .menu-toggle { width: 42px; height: 42px; margin-left: auto; padding: 0; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.8); color: var(--ink); cursor: pointer; }
  .menu-toggle span, .menu-toggle::before, .menu-toggle::after { width: 18px; height: 2px; border-radius: 2px; background: currentColor; content: ""; transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle span { margin: -2px 0; }
  .menu-toggle[aria-expanded="true"]::before { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span { opacity: 0; }
  .menu-toggle[aria-expanded="true"]::after { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: absolute; top: calc(100% + 8px); right: 0; left: 0; margin: 0; padding: 12px; display: none; align-items: stretch; flex-direction: column; gap: 4px; border: 1px solid rgba(255,255,255,.9); border-radius: 18px; background: rgba(255,255,255,.97); box-shadow: 0 22px 50px rgba(15,23,42,.13); }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav > a { padding: 12px; border-radius: 10px; font-size: 14px; }
  .site-nav > a:hover { background: var(--surface-soft); }
  .site-nav > a::after { display: none; }
  .header-phone { display: none; }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(560px,100%); margin-inline: auto; }
  .service-photo { aspect-ratio: 16 / 10; }
  .trust-row { margin-top: -24px; grid-template-columns: repeat(2,1fr); }
  .trust-row div { padding: 14px; border-bottom: 1px solid var(--line); }
  .trust-row div:nth-child(2) { border-right: 0; }
  .trust-row div:nth-child(n+3) { border-bottom: 0; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:last-child { grid-column: 1 / -1; min-height: 220px; }
  .split { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .cta-inner { grid-template-columns: 1fr; align-items: start; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 620px) {
  :root { --shell: min(100% - 24px, 1180px); --radius: 22px; }
  body { font-size: 15px; }
  .site-header { min-height: 64px; padding: 10px 11px 10px 13px; border-radius: 18px; }
  .brand-mark { width: 35px; height: 35px; border-radius: 11px; }
  .brand-words { font-size: 16px; }
  .breadcrumbs { padding-top: 22px; font-size: 12px; }
  .hero { padding-top: 20px; padding-bottom: 62px; }
  .hero-grid { padding: 28px 20px 24px; border-radius: 26px; gap: 34px; }
  h1 { margin: 17px 0; font-size: clamp(35px,11vw,49px); }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { margin-top: 24px; flex-direction: column; }
  .button { width: 100%; min-height: 51px; }
  .hero-note { align-items: flex-start; line-height: 1.45; }
  .service-photo { aspect-ratio: 4 / 3; border-width: 5px; border-radius: 24px; }
  .visual-badge { right: 10px; bottom: 10px; left: 10px; max-width: none; }
  .ac-scene { min-height: 330px; border-radius: 24px; }
  .ac-unit { top: 42px; height: 95px; }
  .air-lines { top: 118px; }
  .trust-row { width: calc(100% - 24px); padding: 8px; border-radius: 18px; }
  .trust-row div { padding: 12px 10px; }
  .trust-row strong { font-size: 12px; }
  .trust-row span { font-size: 10px; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 28px; }
  .section-heading h2, .split-copy h2 { font-size: 34px; }
  .section-heading p, .split-copy > p { font-size: 15px; }
  .feature-grid, .related-grid, .steps { grid-template-columns: 1fr; }
  .feature-card, .feature-card:last-child { min-height: 0; grid-column: auto; padding: 23px; }
  .info-panel { padding: 24px 20px; border-radius: 23px; }
  .info-panel h3 { font-size: 23px; }
  .info-panel dl > div { grid-template-columns: 1fr; gap: 4px; }
  .step { min-height: 0; }
  .faq-list summary { padding: 19px 52px 19px 18px; font-size: 14px; }
  .faq-list details p { padding-inline: 18px; font-size: 14px; }
  .cta-band { padding-bottom: 72px; }
  .cta-inner { padding: 30px 21px; border-radius: 25px; }
  .cta-copy h2 { font-size: 34px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .site-footer { padding-top: 54px; }
  .footer-bottom { margin-top: 38px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
