
:root {
  --red: #0aaee0;
  --red-dark: #087da7;
  --orange: #ffa800;
  --green: #91cf00;
  --blue: #1688ee;
  --ink: #10202b;
  --muted: #5f6c74;
  --line: #dfe9ed;
  --paper: #ffffff;
  --soft: #f2f8fa;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }

.promo-bar {
  overflow: hidden;
  color: white;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--blue));
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  white-space: nowrap;
}
.promo-track {
  display: flex;
  width: max-content;
  padding: 9px 0;
  animation: promo-scroll 28s linear infinite;
}
.promo-track span { padding-right: 64px; }
@keyframes promo-scroll { to { transform: translateX(-50%); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 28px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231,228,223,.9);
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo {
  display: block;
  width: 152px;
  height: 60px;
  object-fit: contain;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: white;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.04em;
  transform: skew(-6deg);
  border-radius: 5px;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 14px; letter-spacing: .14em; }
.brand small { margin-top: 3px; color: var(--muted); font-size: 11px; letter-spacing: .08em; }
nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 700; }
.nav-cta { padding: 12px 17px; background: var(--blue); color: white; border-radius: 999px; }
.nav-phone { color: var(--red-dark); white-space: nowrap; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 8px;
}
.menu-toggle i {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.is-open i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open i:nth-child(2) { opacity: 0; }
.menu-toggle.is-open i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  background:
    linear-gradient(90deg, rgba(7,26,38,.96) 0%, rgba(7,35,49,.88) 43%, rgba(7,35,49,.40) 70%, rgba(7,35,49,.18) 100%),
    url("hero-psr.webp") center right / cover no-repeat,
    linear-gradient(135deg, #071a26 0%, #0b3447 100%);
  color: white;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .65fr);
  gap: 80px;
  align-items: center;
  max-width: 1184px;
  margin: 0 auto;
  padding: 100px 28px;
}
.kicker, .section-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(46px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero-copy { max-width: 680px; margin: 28px 0 0; color: #d1cdcd; font-size: 20px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--red); color: white; }
.primary:hover { background: var(--blue); }
.secondary { color: white; background: rgba(8,35,49,.28); border: 1px solid rgba(255,255,255,.48); backdrop-filter: blur(5px); }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; color: #bab5b5; font-size: 13px; }
.trust-row span::first-letter { color: #59ad5d; }
.hero-card {
  padding: 30px;
  background: rgba(6,28,40,.66);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}
.card-label { display: block; margin-bottom: 24px; color: #aaa3a3; font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero-card strong { font-size: 34px; letter-spacing: -.04em; }
.hero-card p { margin: 5px 0 20px; color: #c8c2c2; font-size: 14px; }
.hero-card hr { border: 0; border-top: 1px solid rgba(255,255,255,.13); margin: 0 0 20px; }

.section { max-width: 1240px; margin: 0 auto; padding: 88px 28px; scroll-margin-top: 85px; }
.story-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 74px; align-items: center; }
.story-copy h2, .process-heading h2 { margin: 0; font-size: clamp(34px, 5vw, 52px); line-height: 1.05; letter-spacing: -.045em; }
.story-copy p { color: var(--muted); line-height: 1.75; }
.story-copy .story-lead { margin-top: 24px; color: var(--ink); font-size: 19px; line-height: 1.65; }
.story-facts { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: 0 16px 50px rgba(31,24,20,.06); }
.story-facts div { min-height: 150px; padding: 25px; background: white; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-facts div:nth-child(2n) { border-right: 0; }
.story-facts div:nth-last-child(-n+2) { border-bottom: 0; }
.story-facts strong { display: block; color: var(--red); font-size: 43px; letter-spacing: -.05em; }
.story-facts span { display: block; margin-top: 9px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.process { color: white; background: linear-gradient(135deg, #0a2534, #0c3d53); scroll-margin-top: 85px; }
.process-inner { max-width: 1240px; }
.process-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.process-heading > p { margin: 0; color: #aaa; line-height: 1.7; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 42px; }
.step-card { min-height: 245px; padding: 26px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; }
.step-card > span { color: var(--red); font-size: 13px; font-weight: 900; letter-spacing: .14em; }
.step-card h3 { margin: 52px 0 12px; font-size: 20px; }
.step-card p { margin: 0; color: #aaa; font-size: 14px; line-height: 1.65; }
.process-note { display: flex; gap: 10px; margin-top: 18px; padding: 20px 24px; color: #d7e7ed; background: rgba(255,255,255,.06); border-left: 4px solid var(--orange); border-radius: 0 10px 10px 0; font-size: 14px; }
.process-note strong { color: white; }
.intro { text-align: center; }
.intro h2, .section-heading h2, .cta h2 { margin: 0; font-size: clamp(34px, 5vw, 52px); line-height: 1.05; letter-spacing: -.045em; }
.intro > p:not(.section-kicker) { max-width: 650px; margin: 18px auto 0; color: var(--muted); line-height: 1.7; }
.jump-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 34px; }
.jump-nav a { padding: 12px 17px; background: var(--soft); border: 1px solid var(--line); border-radius: 999px; font-size: 14px; font-weight: 800; }
.jump-nav a:hover { border-color: var(--red); color: var(--red); }

.price-section { border-top: 1px solid var(--line); }
.price-section.tinted { max-width: none; background: var(--soft); }
.price-section.tinted > * { max-width: 1184px; margin-left: auto; margin-right: auto; }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: end; margin-bottom: 38px; }
.section-heading > p { max-width: 540px; margin: 0; color: var(--muted); line-height: 1.7; }
.tables-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.price-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 34px rgba(31,24,20,.05);
}
.price-card-head { min-height: 94px; padding: 24px 24px 18px; border-bottom: 1px solid var(--line); }
.price-card h3, .info-card h3 { margin: 0; font-size: 20px; letter-spacing: -.02em; }
.price-card-head p { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { padding: 15px 20px; text-align: left; border-bottom: 1px solid #efede9; }
th { color: #807a74; background: #faf9f7; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
th:not(:first-child), td:not(:first-child) { text-align: right; }
tbody tr:last-child td { border-bottom: 0; }
td.price { color: var(--red-dark); font-weight: 900; white-space: nowrap; }

.extras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-card { padding: 26px; border: 1px solid var(--line); border-radius: 16px; }
.info-card ul { list-style: none; margin: 22px 0 0; padding: 0; }
.info-card li { display: flex; justify-content: space-between; gap: 24px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.info-card li:last-child { border: 0; }
.info-card li strong { text-align: right; white-space: nowrap; }
.legal-note { margin-top: 22px; padding: 22px 24px; color: #5b5651; background: var(--soft); border-left: 4px solid var(--green); border-radius: 0 10px 10px 0; font-size: 13px; line-height: 1.7; }
.benefits { border-top: 1px solid var(--line); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-grid article { padding: 26px; background: var(--soft); border: 1px solid var(--line); border-radius: 16px; }
.benefit-grid article > span { display: grid; place-items: center; width: 34px; height: 34px; color: white; background: var(--green); border-radius: 50%; font-weight: 900; }
.benefit-grid h3 { margin: 28px 0 10px; font-size: 18px; }
.benefit-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.faq { border-top: 1px solid var(--line); }
.faq-list { display: grid; gap: 10px; max-width: 900px; }
.faq details { padding: 0 22px; border: 1px solid var(--line); border-radius: 12px; background: white; }
.faq summary { padding: 20px 38px 20px 0; cursor: pointer; font-weight: 800; }
.faq details p { margin: 0; padding: 0 40px 20px 0; color: var(--muted); line-height: 1.7; }
.faq details[open] { border-color: #cfc9c1; box-shadow: 0 10px 30px rgba(31,24,20,.05); }

.region-section { border-top: 1px solid var(--line); }
.region-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: end; }
.region-intro h2 { margin: 0; font-size: clamp(34px, 5vw, 52px); line-height: 1.05; letter-spacing: -.045em; }
.region-intro > p { margin: 0; color: var(--muted); line-height: 1.7; }
.region-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 38px; }
.region-grid a { min-height: 170px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; transition: transform .2s ease, border-color .2s ease; }
.region-grid a:hover { transform: translateY(-3px); border-color: var(--red); }
.region-grid a.active { color: white; background: var(--ink); border-color: var(--ink); }
.region-grid span, .region-grid small, .region-grid strong { display: block; }
.region-grid span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.region-grid strong { margin-top: 22px; font-size: 24px; }
.region-grid small { margin-top: 9px; color: var(--muted); line-height: 1.45; }
.region-grid .active small { color: #aaa; }

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1184px;
  margin: 30px auto 80px;
  padding: 58px;
  color: white;
  background: linear-gradient(115deg, var(--red-dark), var(--red) 58%, var(--blue));
  border-radius: 24px;
}
.cta > div { max-width: 720px; }
.section-kicker.light { color: rgba(255,255,255,.7); }
.cta p:not(.section-kicker) { margin: 18px 0 0; color: rgba(255,255,255,.82); line-height: 1.65; }
.light-button { flex: 0 0 auto; background: white; color: var(--red-dark); }
footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; max-width: 1240px; margin: 0 auto; padding: 30px 28px 45px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.footer-brand { color: var(--ink); }
.footer-brand .brand-logo { width: 100px; height: 60px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; font-weight: 700; }
.footer-links a:hover { color: var(--red); }

.cookie-banner {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1120px;
  margin: auto;
  padding: 22px;
  color: white;
  background: #171717;
  border: 1px solid #333;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.cookie-banner[hidden] { display: none !important; }
.cookie-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 34px;
  height: 34px;
  color: #fff;
  background: transparent;
  border: 0;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}
.cookie-banner strong { font-size: 16px; }
.cookie-banner p { max-width: 700px; margin: 7px 0 0; color: #bbb; font-size: 13px; line-height: 1.55; }
.cookie-banner p a { color: white; text-decoration: underline; }
.cookie-actions { display: flex; flex: 0 0 auto; gap: 9px; }
.cookie-actions button { min-height: 43px; padding: 0 16px; border-radius: 7px; font-weight: 800; cursor: pointer; }
.cookie-secondary { color: white; background: transparent; border: 1px solid #666; }
.cookie-primary { color: white; background: var(--blue); border: 1px solid var(--blue); }

.legal-hero { padding: 90px max(28px, calc((100vw - 1184px) / 2)); color: white; background: linear-gradient(135deg, #092434, #0b526d); }
.legal-hero h1, .legal-page h1 { max-width: 820px; margin: 0; font-size: clamp(42px, 7vw, 72px); line-height: 1; letter-spacing: -.05em; }
.legal-hero > p:last-child { max-width: 720px; margin: 24px 0 0; color: #bbb; font-size: 18px; line-height: 1.65; }
.legal-hero a { color: #fff; text-decoration: underline; }
.floating-call {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  color: #fff;
  background: var(--green);
  color: #10202b;
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(0,0,0,.24);
}
.floating-call span { font-size: 20px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-card { padding: 30px; border: 1px solid var(--line); border-radius: 18px; }
.contact-card > span { color: var(--red); font-weight: 900; }
.contact-card h2 { margin: 42px 0 12px; font-size: 24px; }
.contact-card p { min-height: 74px; color: var(--muted); line-height: 1.6; }
.dark-button { color: white; background: var(--ink); }
.request-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(290px, .55fr); gap: 28px; align-items: start; }
.request-form { padding: 42px; background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 18px 60px rgba(31,24,20,.07); }
.form-heading span { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.form-heading h2, .request-aside h2 { margin: 12px 0 0; font-size: clamp(28px, 4vw, 40px); line-height: 1.08; letter-spacing: -.04em; }
.form-heading p { max-width: 660px; margin: 14px 0 0; color: var(--muted); line-height: 1.65; }
.request-form fieldset { margin: 34px 0 0; padding: 0; border: 0; }
.request-form legend { width: 100%; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 900; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.request-form label { display: grid; gap: 8px; color: #2b2b2b; font-size: 13px; font-weight: 800; }
.form-full { grid-column: 1 / -1; }
.request-form input:not([type="checkbox"]):not([type="radio"]),
.request-form select,
.request-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: #171717;
  background: #fff;
  border: 1px solid #cbc7c1;
  border-radius: 8px;
  font: inherit;
  font-weight: 400;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.request-form textarea { resize: vertical; line-height: 1.55; }
.request-form input:focus, .request-form select:focus, .request-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(215,25,32,.12); }
.radio-group { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; margin-top: 18px; }
.radio-group > span { width: 100%; font-size: 13px; font-weight: 900; }
.radio-group label { display: flex; align-items: center; grid-template-columns: none; gap: 8px; font-weight: 600; }
.radio-group input, .privacy-check input { accent-color: var(--red); }
.privacy-check { grid-template-columns: 20px 1fr; align-items: start; gap: 11px !important; margin-top: 28px; color: var(--muted) !important; font-weight: 500 !important; line-height: 1.55; }
.privacy-check input { width: 18px; height: 18px; margin: 2px 0 0; }
.privacy-check a { color: var(--red-dark); text-decoration: underline; }
.form-submit { margin-top: 22px; border: 0; cursor: pointer; }
.form-mail-note { max-width: 670px; margin: 12px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.form-success { margin: 16px 0 0; padding: 14px 16px; color: #1f6423; background: #edf7ee; border-left: 4px solid var(--green); border-radius: 0 8px 8px 0; font-size: 13px; font-weight: 800; }
.form-error { margin: 16px 0 0; padding: 14px 16px; color: #8e1117; background: #fff0f1; border-left: 4px solid var(--red); border-radius: 0 8px 8px 0; font-size: 13px; font-weight: 800; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.request-aside { position: sticky; top: 100px; padding: 32px; color: white; background: linear-gradient(145deg, #092434, #0b526d); border-radius: 22px; }
.request-aside .section-kicker { margin-bottom: 8px; }
.request-aside ul { list-style: none; margin: 30px 0 0; padding: 0; }
.request-aside li { display: grid; gap: 5px; padding: 17px 0; border-bottom: 1px solid #343434; }
.request-aside li strong { font-size: 15px; }
.request-aside li span { color: #aaa; font-size: 13px; line-height: 1.5; }
.request-trust { margin-top: 25px; padding: 20px; background: #242424; border-left: 4px solid var(--green); border-radius: 0 10px 10px 0; }
.request-trust p { margin: 7px 0 0; color: #aaa; font-size: 13px; line-height: 1.55; }
.legal-page { max-width: 900px; margin: 0 auto; padding: 90px 28px; }
.legal-page h2 { margin: 50px 0 12px; font-size: 22px; }
.legal-page p { color: #4f4f4f; line-height: 1.75; }
.legal-page a { color: var(--red-dark); text-decoration: underline; }
.legal-source { margin-top: 50px; padding: 18px; background: var(--soft); border-left: 4px solid var(--red); }

@media (max-width: 800px) {
  .site-header { padding: 13px 18px; }
  .menu-toggle { display: block; cursor: pointer; }
  nav {
    position: absolute;
    top: 100%;
    right: 12px;
    left: 12px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
  }
  nav.is-open { display: flex; }
  nav a { padding: 15px; border-bottom: 1px solid var(--line); }
  nav .nav-cta { margin-top: 8px; padding: 14px; text-align: center; border: 0; border-radius: 8px; }
  nav .nav-phone { color: var(--red-dark); }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; padding: 72px 20px; }
  .hero h1 { font-size: clamp(44px, 13vw, 64px); }
  .hero-copy { font-size: 17px; }
  .section { padding: 68px 18px; }
  .story-grid, .process-heading, .section-heading, .region-intro { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .story-facts { margin-top: 22px; }
  .steps, .benefit-grid { grid-template-columns: 1fr 1fr; }
  .region-grid, .contact-grid { grid-template-columns: 1fr 1fr; }
  .request-layout { grid-template-columns: 1fr; }
  .request-aside { position: static; }
  .tables-grid, .extras-grid { grid-template-columns: 1fr; }
  .price-card-head { min-height: auto; }
  th, td { padding: 14px; }
  .cta { flex-direction: column; align-items: flex-start; margin: 20px 18px 60px; padding: 34px 24px; border-radius: 18px; }
  footer { flex-direction: column; align-items: flex-start; padding-inline: 18px; }
  .cookie-banner { align-items: stretch; flex-direction: column; gap: 16px; }
  .cookie-actions { justify-content: flex-end; }
  .floating-call { right: 14px; bottom: 14px; padding: 13px 16px; }
}

@media (max-width: 480px) {
  .brand-logo { width: 88px; height: 28px; }
  .brand small { display: none; }
  .brand strong { font-size: 11px; }
  .brand > span { display: none; }
  .trust-row { flex-direction: column; gap: 10px; }
  .button { width: 100%; }
  .jump-nav { justify-content: flex-start; }
  .story-facts, .steps, .benefit-grid, .region-grid, .contact-grid { grid-template-columns: 1fr; }
  .request-form { padding: 25px 18px; border-radius: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .story-facts div { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .story-facts div:last-child { border-bottom: 0 !important; }
  .step-card { min-height: auto; }
  .step-card h3 { margin-top: 28px; }
  .process-note { flex-direction: column; }
  .info-card li { align-items: flex-start; flex-direction: column; gap: 4px; }
  .info-card li strong { text-align: left; }
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; padding: 18px; }
  .cookie-actions { flex-direction: column-reverse; }
  .cookie-actions button { width: 100%; }
  .floating-call strong { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .promo-track { animation: none; }
  .button, .region-grid a { transition: none; }
}
