@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik/Rubik-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik/Rubik-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik/Rubik-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik/Rubik-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #070b13;
  --bg-soft: #0b111c;
  --surface: #101824;
  --surface-2: #131e2c;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f6f8fb;
  --muted: #9aa8b9;
  --cyan: #5be7f4;
  --cyan-strong: #28cfdf;
  --lime: #d7ff34;
  --yellow: #ffd34e;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  background: white;
  color: #000;
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 11, 19, 0.88);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 44px;
}

.brand { flex: 0 0 auto; }
.brand img { width: 150px; height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: auto;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 500;
}

.main-nav a, .login-link, .footer-links a { transition: color .2s ease; }
.main-nav a:hover, .login-link:hover, .footer-links a:hover { color: var(--cyan); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.login-link { font-size: 14px; font-weight: 600; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-small {
  min-height: 42px;
  padding-inline: 20px;
  background: #f4f7fb;
  color: #0b111c;
  font-size: 13px;
}

.button-primary {
  color: #061014;
  background: linear-gradient(135deg, var(--cyan) 0%, #c3ffef 100%);
  box-shadow: 0 12px 36px rgba(40, 207, 223, .24);
}

.button-primary:hover { box-shadow: 0 16px 44px rgba(40, 207, 223, .38); }
.button-full { width: 100%; }

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  max-height: 960px;
  isolation: isolate;
  overflow: hidden;
  background: #05080f;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: url("../img/sport-hero-4k.jpg") center center / cover no-repeat;
  transform: scale(1.015);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 8, 15, .98) 0%, rgba(5, 8, 15, .88) 30%, rgba(5, 8, 15, .18) 60%, rgba(5, 8, 15, .45) 100%),
    linear-gradient(0deg, #070b13 0%, transparent 25%, rgba(7,11,19,.12) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  top: 18%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(40, 207, 223, .14);
  filter: blur(90px);
}

.hero-inner {
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.hero-copy { width: min(590px, 52vw); }

.eyebrow,
.kicker {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  font-weight: 800;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
}

.eyebrow span,
.score-card-live i,
.live-pill i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(91, 231, 244, .12), 0 0 22px rgba(91, 231, 244, .8);
  animation: pulse 1.8s ease-in-out infinite;
}

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(46px, 5.6vw, 76px);
  line-height: .98;
  letter-spacing: -.052em;
  font-weight: 800;
  text-wrap: balance;
}

h1 em { color: var(--cyan); font-style: normal; }

.hero-cap {
  margin-bottom: 20px;
  font-size: clamp(20px, 2vw, 28px);
  color: rgba(255,255,255,.72);
}

.hero-cap strong { color: white; }

.hero-lead {
  max-width: 565px;
  margin-bottom: 28px;
  color: #c4ced9;
  font-size: 17px;
}

.hero-actions { display: flex; align-items: center; gap: 24px; margin-bottom: 35px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.38);
  transition: color .2s ease, border-color .2s ease;
}

.text-link:hover { color: var(--cyan); border-color: var(--cyan); }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
  border-block: 1px solid var(--line);
}

.hero-facts li { padding: 14px 13px 14px 0; }
.hero-facts li + li { padding-left: 13px; border-left: 1px solid var(--line); }
.hero-facts strong { display: block; font-size: 18px; }
.hero-facts span { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.hero-note { margin: 0; color: rgba(255,255,255,.5); font-size: 12px; }

.score-card {
  position: absolute;
  right: max(40px, calc((100vw - 1180px) / 2));
  bottom: 8.5%;
  width: 180px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(8, 15, 25, .72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.score-card-live { display: flex; align-items: center; gap: 8px; margin-bottom: 13px; color: #b8c5d2; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.score-card-live i, .live-pill i { width: 6px; height: 6px; box-shadow: none; }
.score-card strong { display: block; font-size: 42px; line-height: 1; letter-spacing: -.06em; color: var(--cyan); }
.score-card > span:last-child { color: #d7dee6; font-size: 12px; }

.stats-strip {
  position: relative;
  z-index: 4;
  border-block: 1px solid var(--line);
  background: #0b111b;
}

.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.stats-grid article { padding: 25px 22px; }
.stats-grid article + article { border-left: 1px solid var(--line); }
.stats-grid span { display: block; margin-bottom: 4px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.stats-grid strong { font-size: 19px; }

.section { padding: 120px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 50px; }
.section-heading > p { max-width: 500px; margin: 0; color: var(--muted); }

h2 {
  margin: 8px 0 0;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -.045em;
  text-wrap: balance;
}

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

.steps-section {
  position: relative;
  background:
    radial-gradient(circle at 78% 18%, rgba(40, 207, 223, .08), transparent 29%),
    var(--bg);
}

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.step-card {
  min-height: 330px;
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(20,30,44,.92), rgba(10,16,26,.92));
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}

.step-card:hover { transform: translateY(-7px); border-color: rgba(91,231,244,.3); }
.step-card::after { content: ""; position: absolute; right: -60px; bottom: -75px; width: 190px; height: 190px; border: 1px solid rgba(91,231,244,.11); border-radius: 50%; }
.step-no { position: absolute; right: 24px; top: 14px; color: rgba(255,255,255,.05); font-size: 88px; line-height: 1; font-weight: 800; letter-spacing: -.08em; }
.step-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 64px; border-radius: 15px; color: #031013; background: var(--cyan); font-size: 20px; font-weight: 800; box-shadow: 0 12px 30px rgba(40,207,223,.18); }
.step-card p { margin-bottom: 22px; color: var(--muted); font-size: 14px; }
.step-label { color: var(--cyan); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }

.example-section { border-block: 1px solid var(--line); background: #090f18; }
.example-layout { display: grid; grid-template-columns: 1fr 430px; gap: 90px; align-items: center; }
.example-copy > p { max-width: 610px; margin: 22px 0 34px; color: var(--muted); }

.range-wrap { padding: 24px 0; border-block: 1px solid var(--line); }
.range-head, .range-scale { display: flex; justify-content: space-between; align-items: center; }
.range-head label { font-size: 13px; color: var(--muted); }
.range-head output { color: var(--cyan); font-size: 28px; font-weight: 800; }

input[type="range"] {
  width: 100%;
  height: 5px;
  margin: 25px 0 10px;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan) var(--range-progress, 7.7%), rgba(255,255,255,.12) var(--range-progress, 7.7%));
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb { width: 22px; height: 22px; appearance: none; border: 4px solid #0d1621; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 2px var(--cyan), 0 6px 18px rgba(91,231,244,.35); }
input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; border: 4px solid #0d1621; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 2px var(--cyan), 0 6px 18px rgba(91,231,244,.35); }
.range-scale { color: rgba(255,255,255,.38); font-size: 10px; }

.check-list { display: grid; gap: 12px; padding: 0; margin: 28px 0 0; list-style: none; color: #c3cdd8; font-size: 13px; }
.check-list li { position: relative; padding-left: 25px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 800; }

.bonus-calculator { padding: 30px; border: 1px solid rgba(91,231,244,.2); border-radius: var(--radius-xl); background: linear-gradient(155deg, #142232, #0d151f 60%); box-shadow: var(--shadow); }
.calc-topline { display: flex; justify-content: space-between; align-items: center; margin-bottom: 38px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; border-radius: 999px; background: rgba(91,231,244,.08); color: var(--cyan); font-size: 9px; font-weight: 800; }
.calc-row { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 10px 0; }
.calc-row span { color: var(--muted); font-size: 13px; }
.calc-row strong { font-size: 30px; line-height: 1; }
.calc-plus { margin: 3px 0 3px auto; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--cyan); background: rgba(91,231,244,.1); font-weight: 800; }
.accent-row strong { color: var(--cyan); }
.calc-total { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin: 25px 0 0; padding: 25px 0; border-top: 1px solid var(--line); }
.calc-total span { max-width: 110px; color: #d8e0e7; font-size: 12px; line-height: 1.3; }
.calc-total strong { font-size: 42px; line-height: 1; letter-spacing: -.05em; }
.bonus-calculator > p { margin: -10px 0 22px; color: var(--muted); font-size: 11px; }

.benefits-section { background: var(--bg); }
.benefits-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.benefits-panel { min-height: 500px; display: flex; flex-direction: column; justify-content: flex-end; padding: 44px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(180deg, rgba(5,9,14,.15), rgba(5,9,14,.92)), url("../img/sport-hero-4k.jpg") 64% center / cover no-repeat; box-shadow: var(--shadow); }
.benefits-panel h2 { max-width: 600px; }
.benefits-panel p { max-width: 540px; margin: 18px 0 25px; color: #b7c2ce; }
.sport-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sport-tags span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(7,11,19,.54); font-size: 11px; font-weight: 600; }
.benefit-cards { display: grid; gap: 14px; }
.mini-card { min-height: 157px; display: flex; flex-direction: column; justify-content: flex-end; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.mini-card::before { content: ""; width: 30px; height: 3px; margin-bottom: 29px; border-radius: 99px; background: var(--cyan); box-shadow: 0 0 16px rgba(91,231,244,.7); }
.mini-card strong { margin-bottom: 5px; font-size: 19px; }
.mini-card span { color: var(--muted); font-size: 13px; }

.faq-section { border-top: 1px solid var(--line); background: #090f18; }
.faq-layout { display: grid; grid-template-columns: 330px 1fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro p { margin: 20px 0 28px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 25px 0; cursor: pointer; list-style: none; font-size: 17px; font-weight: 600; }
.faq-list summary::-webkit-details-marker, .terms-details summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--cyan); font-size: 22px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: -6px 0 25px; color: var(--muted); font-size: 14px; }

.terms-section { padding: 0 0 120px; background: #090f18; }
.terms-details { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); overflow: hidden; }
.terms-details > summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 23px 27px; cursor: pointer; list-style: none; }
.terms-details > summary span { font-weight: 700; }
.terms-details > summary small { color: var(--cyan); }
.terms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 35px 27px 38px; border-top: 1px solid var(--line); }
.terms-grid h3 { font-size: 17px; }
.terms-grid ul { display: grid; gap: 11px; padding-left: 19px; margin: 0; color: var(--muted); font-size: 12px; }

.final-cta { padding: 78px 0; border-block: 1px solid var(--line); background: linear-gradient(110deg, rgba(40,207,223,.13), rgba(7,11,19,0) 60%), #0a111b; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2 { font-size: clamp(36px, 4vw, 52px); }
.final-cta p { margin: 13px 0 0; color: var(--muted); }

.site-footer { padding: 70px 0 110px; background: #05080d; }
.footer-top { display: grid; grid-template-columns: auto 1fr auto; gap: 35px; align-items: center; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.footer-top > p { margin: 0; color: var(--muted); font-size: 13px; }
.responsible-badges { display: flex; align-items: center; gap: 10px; }
.responsible-badges > * { display: inline-flex; min-height: 36px; align-items: center; padding: 0 12px; border: 1px solid var(--line); border-radius: 9px; color: #b6c1cd; font-size: 11px; }
.responsible-badges strong { color: white; font-size: 15px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px 28px; padding: 30px 0; border-bottom: 1px solid var(--line); color: #bbc5cf; font-size: 12px; }
.footer-legal { padding-top: 28px; color: rgba(255,255,255,.42); font-size: 10px; }
.footer-legal p { margin-bottom: 9px; }
.footer-legal a { color: rgba(255,255,255,.7); text-decoration: underline; }

.mobile-cta { display: none; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.82); }
}

@media (max-width: 1050px) {
  .main-nav { display: none; }
  .header-actions { margin-left: auto; }
  .hero { min-height: 760px; }
  .hero-copy { width: min(630px, 68vw); }
  .hero-media { background-position: 57% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,8,15,.98) 0%, rgba(5,8,15,.82) 46%, rgba(5,8,15,.25) 75%), linear-gradient(0deg, #070b13 0%, transparent 28%); }
  .score-card { display: none; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid article:nth-child(4) { border-left: 0; border-top: 1px solid var(--line); }
  .stats-grid article:nth-child(n+4) { border-top: 1px solid var(--line); }
  .example-layout { gap: 50px; grid-template-columns: 1fr 390px; }
  .faq-layout { gap: 55px; grid-template-columns: 290px 1fr; }
}

@media (max-width: 780px) {
  html { scroll-padding-top: 72px; }
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .shell { width: min(100% - 28px, 620px); }
  .site-header { background: rgba(7,11,19,.72); backdrop-filter: blur(15px); }
  .header-inner { height: 68px; }
  .brand img { width: 124px; }
  .login-link { display: none; }
  .button-small { min-height: 38px; padding-inline: 14px; font-size: 11px; }

  .hero { min-height: 780px; height: 100svh; max-height: 900px; }
  .hero-media { background-position: 66% center; transform: scale(1.03); }
  .hero-shade { background: linear-gradient(0deg, #070b13 2%, rgba(7,11,19,.96) 23%, rgba(7,11,19,.63) 58%, rgba(7,11,19,.35) 100%), linear-gradient(90deg, rgba(5,8,15,.3), transparent 70%); }
  .hero-inner { align-items: flex-end; padding: 110px 0 50px; }
  .hero-copy { width: 100%; }
  .eyebrow { margin-bottom: 12px; font-size: 10px; }
  h1 { max-width: 590px; margin-bottom: 9px; font-size: clamp(39px, 12.5vw, 59px); }
  .hero-cap { margin-bottom: 11px; font-size: 19px; }
  .hero-lead { max-width: 520px; margin-bottom: 20px; font-size: 14px; }
  .hero-actions { margin-bottom: 23px; }
  .hero-actions .button { min-height: 50px; padding-inline: 20px; font-size: 13px; }
  .hero-actions .text-link { font-size: 12px; }
  .hero-facts { grid-template-columns: repeat(2, 1fr); }
  .hero-facts li:nth-child(3), .hero-facts li:nth-child(4) { border-top: 1px solid var(--line); }
  .hero-facts li:nth-child(3) { padding-left: 0; border-left: 0; }
  .hero-note { font-size: 10px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid article { padding: 19px 14px; }
  .stats-grid article:nth-child(odd) { border-left: 0; }
  .stats-grid article:nth-child(n+3) { border-top: 1px solid var(--line); }
  .stats-grid article:nth-child(4) { border-left: 1px solid var(--line); }

  .section { padding: 82px 0; }
  .section-heading { display: block; margin-bottom: 34px; }
  .section-heading > p { margin-top: 18px; font-size: 14px; }
  h2 { font-size: clamp(34px, 10vw, 46px); }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 250px; padding: 25px; }
  .step-icon { margin-bottom: 38px; }

  .example-layout, .benefits-layout, .faq-layout { grid-template-columns: 1fr; gap: 42px; }
  .example-copy > p { margin: 18px 0 28px; }
  .bonus-calculator { padding: 24px; }
  .calc-total strong { font-size: 37px; }
  .benefits-panel { min-height: 450px; padding: 28px; background-position: 57% center; }
  .benefits-panel p { font-size: 14px; }
  .faq-intro { position: static; }
  .faq-list summary { font-size: 15px; }
  .terms-grid { grid-template-columns: 1fr; gap: 28px; }

  .final-cta-inner { display: block; }
  .final-cta .button { margin-top: 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand img { width: 145px; }

  .mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 74px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(91,231,244,.22);
    background: rgba(7,11,19,.94);
    backdrop-filter: blur(18px);
    transform: translateY(120%);
    transition: transform .3s ease;
  }

  .mobile-cta.is-visible { transform: none; }
  .mobile-cta div span, .mobile-cta div strong { display: block; }
  .mobile-cta div span { color: var(--cyan); font-size: 9px; text-transform: uppercase; letter-spacing: .09em; }
  .mobile-cta div strong { font-size: 14px; }
  .mobile-cta .button { min-height: 44px; padding-inline: 18px; font-size: 12px; }
}

@media (max-width: 430px) {
  .header-actions .button { font-size: 10px; }
  .hero { min-height: 800px; }
  .hero-media { background-position: 66% 26%; background-size: auto 61%; background-repeat: no-repeat; }
  .hero-shade { background: linear-gradient(0deg, #070b13 0%, #070b13 35%, rgba(7,11,19,.75) 61%, rgba(7,11,19,.25) 100%); }
  .hero-inner { padding-bottom: 40px; }
  h1 { font-size: 41px; }
  .hero-lead { font-size: 13px; }
  .hero-actions { align-items: stretch; gap: 15px; }
  .hero-actions .button { flex: 1; padding-inline: 13px; }
  .hero-actions .text-link { display: none; }
  .range-head output { font-size: 23px; }
  .calc-row strong { font-size: 25px; }
  .calc-total strong { font-size: 32px; }
  .terms-details > summary { align-items: flex-start; }
  .terms-details > summary small { text-align: right; }
  .responsible-badges { flex-wrap: wrap; }
}

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