:root {
  --bg: #f2f3f5;
  --bg-2: #e8eaee;
  --ink: #101114;
  --muted: #5a616c;
  --signal: #e10600;
  --tg: #229ed9;
  --line: rgba(16, 17, 20, 0.12);
  --max: 1480px;
  --gutter: clamp(20px, 4vw, 56px);
  --header: 68px;
  --display: "Unbounded", system-ui, sans-serif;
  --body: "Onest", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
body.nav-open .fab { visibility: hidden; pointer-events: none; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p, h1, h2, h3 { margin: 0; }
h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-weight: 700;
}

.wrap {
  width: min(100% - var(--gutter) * 2, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.wrap--narrow { width: min(100% - var(--gutter) * 2, 720px); }

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  background: var(--tg);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s;
  text-align: center;
  max-width: 100%;
}
.cta:hover { background: #1b8fc4; transform: translateY(-2px); }
.cta--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.cta--ghost:hover { background: var(--ink); color: #fff; }
.cta--ink { background: var(--ink); }
.cta--ink:hover { background: #2a2d36; }
.cta--light { background: #fff; color: var(--ink); }
.cta--light:hover { background: var(--bg); }

.brand {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
}
.brand--sm { font-size: 22px; display: inline-block; margin-bottom: 10px; }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 12px;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.7); }

.section__title {
  font-size: clamp(26px, 3.6vw, 48px);
  margin-bottom: 28px;
  max-width: 22ch;
}
.section__lead {
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 19px);
  max-width: 64ch;
  margin: -12px 0 28px;
}
.section__lead--after {
  margin-top: 28px;
  margin-bottom: 20px;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, backdrop-filter 0.25s;
}
.header.is-solid {
  background: rgba(242, 243, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.header__row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--signal);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.nav a:hover { color: var(--ink); }
.header__tg {
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 2px;
}
.header__tg:hover { color: var(--signal); border-color: var(--signal); }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
}
.burger span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s;
}
.burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header) + 40px) 0 0;
  overflow: hidden;
  isolation: isolate;
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 17, 20, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 20, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 22% 50%, #000 12%, transparent 68%);
}
.hero__inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 72px);
  padding-bottom: 40px;
}
.hero__copy {
  flex: 1 1 auto;
  max-width: min(720px, 52vw);
  animation: rise 0.75s var(--ease) both;
}
.hero__panel {
  flex: 0 1 min(420px, 38vw);
  width: min(420px, 38vw);
  padding: 28px 0 28px 28px;
  border-left: 3px solid var(--signal);
  animation: rise 0.75s var(--ease) 0.08s both;
}
.hero__panel-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.hero__types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.hero__types li {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.03em;
  padding: 18px 16px 18px 0;
  border-bottom: 1px solid var(--line);
}
.hero__types li:nth-child(even) {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-top: 18px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.hero__meta li + li::before {
  content: "·";
  margin: 0 10px;
  color: var(--muted);
  font-weight: 600;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.hero .brand {
  font-size: clamp(34px, 8vw, 72px);
  margin-bottom: 16px;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.hero h1 {
  font-size: clamp(20px, 3.4vw, 34px);
  margin-bottom: 14px;
  max-width: 22ch;
}
.lead {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--muted);
  max-width: 40ch;
  line-height: 1.45;
  margin-bottom: 28px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 28px;
  padding: 16px 0 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

/* Sections */
.section { padding: 88px 0; position: relative; }
.section--alt { background: var(--bg-2); }
.section--ink {
  background: var(--ink);
  color: #fff;
}
.section--ink .section__title { color: #fff; }
.section--signal {
  background: var(--signal);
  color: #fff;
}
.section--signal .section__title { color: #fff; }

.tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.tier {
  background: var(--bg);
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 36px);
}
.tier__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tier--ok .tier__label { color: var(--signal); }
.tier--mid .tier__label { color: #8a5a00; }
.tier--low .tier__label { color: var(--muted); }
.tier h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.tier > p {
  color: var(--muted);
  font-size: 15px;
  max-width: 58ch;
  margin-bottom: 12px;
}
.tier__note {
  font-size: 13px !important;
  font-weight: 600;
  color: var(--ink) !important;
  max-width: none !important;
  margin-bottom: 0 !important;
}

.reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.reasons--light { border-top-color: rgba(255, 255, 255, 0.12); }
.reasons--light article { border-bottom-color: rgba(255, 255, 255, 0.12); }
.reasons--light article:nth-child(odd) { border-right-color: rgba(255, 255, 255, 0.12); }
.reasons--light h3 { color: #fff; }
.reasons--light p { color: rgba(255, 255, 255, 0.65); }
.reasons article {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.reasons article:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--line);
}
.reasons article:nth-child(even) { padding-left: 32px; }
.reasons span {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  color: var(--signal);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.reasons h3 { font-size: 22px; margin-bottom: 8px; }
.reasons p { color: var(--muted); font-size: 15px; max-width: 48ch; }

.steps {
  margin-bottom: 36px;
  border-top: 1px solid var(--line);
}
.steps--dark li { border-bottom-color: var(--line); }
.steps--dark p { color: var(--muted); }
.steps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.steps b {
  font-family: var(--display);
  font-size: 28px;
  color: var(--signal);
  letter-spacing: -0.04em;
}
.steps h3 { font-size: 22px; margin-bottom: 6px; }
.steps p { font-size: 15px; max-width: 64ch; }

.brand-blocks {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}
.brand-blocks__title {
  font-size: 16px;
  margin-bottom: 14px;
  color: var(--muted);
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 0;
}
.brands--muted li {
  color: var(--muted);
  font-size: 16px;
}
.brands li {
  background: var(--bg);
  padding: 18px 10px;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  transition: background 0.2s, color 0.2s;
}
.section--alt .brands li { background: #fff; }
.brands li:hover {
  background: var(--ink);
  color: #fff;
}

/* Reviews */
.reviews__head {
  margin-bottom: 36px;
}
.reviews__head .section__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  max-width: none;
  margin-bottom: 12px;
}
.reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  letter-spacing: 0;
}
.reviews__rating .stars { font-size: 24px; }
.reviews__rating b {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.reviews__head .section__lead { margin: 0; }

.stars {
  --p: 100%;
  position: relative;
  display: inline-flex;
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1;
  color: rgba(16, 17, 20, 0.16);
}
.stars::before { content: "★★★★★"; }
.stars__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--p);
  overflow: hidden;
  color: #e8a200;
  white-space: nowrap;
}
.stars__fill::before { content: "★★★★★"; }
.stars--sm { font-size: 15px; letter-spacing: 0.04em; }

.reviews-carousel {
  position: relative;
  margin-top: 8px;
}
.reviews-carousel__viewport {
  overflow: hidden;
}
.reviews-carousel__track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  animation: reviews-marquee var(--marquee-duration, 90s) linear infinite;
}
@keyframes reviews-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-carousel__track { animation: none; }
}

.review {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 0 0 clamp(260px, 30vw, 400px);
}
.review__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bg-2);
}
.review__body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.review__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.review__score {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.review__name {
  font-size: 18px;
  margin: 4px 0 0;
}
.review__item {
  font-size: 13px;
  font-weight: 600;
  color: var(--signal);
  letter-spacing: 0.02em;
}
.review__text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  margin-top: 4px;
}

.guarantee {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.ticks {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
}
.ticks li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 2px;
  background: #fff;
}
.aside {
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 28px 24px;
  background: rgba(0, 0, 0, 0.12);
}
.aside__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(72px, 10vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.aside__label {
  font-size: 16px;
  max-width: 14ch;
  margin: 10px 0 20px;
}
.aside hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin: 0 0 16px;
}
.aside p { margin-bottom: 8px; color: rgba(255, 255, 255, 0.85); }
.aside strong {
  font-family: var(--display);
  font-size: 24px;
  margin-right: 8px;
  color: #fff;
}

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-family: var(--display);
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--signal);
  border-bottom: 2px solid var(--signal);
  transform: rotate(45deg);
  margin-top: -4px;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq details[open] summary::after {
  transform: rotate(225deg);
  margin-top: 4px;
}
.faq p {
  color: var(--muted);
  padding: 0 0 18px;
  max-width: 72ch;
  font-size: 15px;
}

.finale {
  position: relative;
  padding: 56px 0;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.finale::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--signal);
}
.finale::after {
  content: "";
  position: absolute;
  right: clamp(-40px, -2vw, 0);
  top: 50%;
  translate: 0 -50%;
  width: min(28vw, 220px);
  height: min(28vw, 220px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}
.finale__row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.finale__copy { position: relative; z-index: 1; }
.finale .eyebrow { color: rgba(255, 255, 255, 0.55); margin-bottom: 10px; }
.finale h2 {
  font-size: clamp(24px, 3.4vw, 40px);
  margin-bottom: 12px;
  max-width: 16ch;
  color: #fff;
}
.finale__lead {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  max-width: 42ch;
  margin-bottom: 20px;
  line-height: 1.45;
}
.finale__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.finale__tags li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.finale__action {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.finale__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  padding: 48px 0 24px;
}
.footer .brand { color: #fff; }
.footer__row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__row > div > p { font-size: 14px; max-width: 28ch; }
.footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer nav a:hover { color: #fff; }
.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.footer .header__tg {
  border-bottom-color: #fff;
  color: #fff;
}
.footer__copy {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  font-size: 12px;
}
.footer__copy a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__copy a:hover { color: #fff; }

.legal {
  padding: calc(var(--header) + 48px) 0 72px;
}
.legal .section__title { margin-bottom: 12px; }
.legal__meta {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 36px;
  max-width: 62ch;
}
.legal__block {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.legal__block h2 {
  font-size: clamp(18px, 1.6vw, 22px);
  margin-bottom: 12px;
}
.legal__block p,
.legal__block li {
  color: var(--muted);
  font-size: 15px;
  max-width: 68ch;
}
.legal__block p + p,
.legal__block ul { margin-top: 10px; }
.legal__block ul {
  list-style: disc;
  padding-left: 1.2em;
  display: grid;
  gap: 8px;
}
.legal__block strong { color: var(--ink); font-weight: 600; }
.legal__back {
  margin-top: 36px;
  font-size: 15px;
}
.legal__back a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}
.legal__back a:hover { color: var(--signal); border-color: var(--signal); }

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 14px 0 calc(14px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 28px rgba(16, 17, 20, 0.08);
}
.cookie[hidden] { display: none !important; }
.cookie__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}
.cookie__row p {
  font-size: 14px;
  color: var(--muted);
  max-width: 72ch;
  margin: 0;
}
.cookie__row a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.cookie__row a:hover {
  color: var(--signal);
  border-color: var(--signal);
}
.cookie__btn {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
  background: var(--signal);
  color: #fff;
  border: 1.5px solid transparent;
}
.cookie__btn:hover {
  background: #c10500;
  transform: translateY(-2px);
}
body.cookies-open .fab {
  bottom: calc(max(16px, env(safe-area-inset-bottom)) + var(--cookie-offset, 88px));
}

.fab {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  left: auto;
  z-index: 50;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  gap: 0;
  padding: 0;
  background: var(--tg);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 10px 28px rgba(16, 17, 20, 0.22);
  transition: transform 0.2s, background 0.2s;
}
.fab:hover,
.fab:active {
  background: #1b8fc4;
  transform: translateY(-2px);
}
.fab__ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.fab__text { display: none; }

@media (min-width: 1400px) {
  .brand-blocks {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 40px;
  }
  .brands li {
    padding: 22px 12px;
    font-size: 18px;
  }
  .reasons article:nth-child(odd) { padding-right: 48px; }
  .reasons article:nth-child(even) { padding-left: 48px; }
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    margin: 0;
    padding: 8px var(--gutter) 18px;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    z-index: 39;
    max-height: calc(100svh - var(--header));
    overflow-y: auto;
  }
  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 16px;
  }
  .header__tg { display: none; }
  .burger { display: flex; }
  .fab {
    left: max(16px, env(safe-area-inset-left));
    right: max(16px, env(safe-area-inset-right));
    width: auto;
    height: auto;
    min-height: 54px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--body);
    font-weight: 700;
    font-size: 15px;
  }
  .fab__text {
    display: inline;
    white-space: nowrap;
  }
  .fab__ico { width: 20px; height: 20px; }
  .footer {
    padding-bottom: calc(24px + 70px + env(safe-area-inset-bottom));
  }
  .cookie__row {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie__btn { width: 100%; }
  body.cookies-open .fab {
    bottom: calc(max(16px, env(safe-area-inset-bottom)) + var(--cookie-offset, 140px));
  }
}

@media (max-width: 900px) {
  .tiers,
  .brand-blocks,
  .reasons { grid-template-columns: 1fr; }
  .review { flex-basis: clamp(240px, 42vw, 360px); }
  .reasons article:nth-child(odd),
  .reasons article:nth-child(even) {
    padding: 22px 0;
    border-right: none;
  }
  .brands { grid-template-columns: repeat(2, 1fr); }
  .guarantee { grid-template-columns: 1fr; gap: 28px; }
  .footer__row { grid-template-columns: 1fr 1fr; }
  .footer__row > div:first-child { grid-column: 1 / -1; }
  .hero__panel {
    width: min(340px, 36vw);
    flex-basis: min(340px, 36vw);
    padding-left: 20px;
  }
  .hero__types li { font-size: 20px; padding: 14px 12px 14px 0; }
  .hero__types li:nth-child(even) { padding-left: 12px; }
  .section__title { max-width: none; }
}

@media (max-width: 760px) {
  :root { --gutter: 16px; --header: 60px; }
  .hero {
    min-height: auto;
    padding: calc(var(--header) + 28px) 0 0;
  }
  .hero__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    padding-bottom: 28px;
  }
  .hero__panel {
    width: 100%;
    flex: none;
    padding: 0;
    border-left: none;
    border-top: 3px solid var(--signal);
    padding-top: 20px;
  }
  .hero__types li {
    font-size: 22px;
    padding: 14px 12px 14px 0;
  }
  .hero__types li:nth-child(even) { padding-left: 12px; }
  .hero__copy { max-width: 100%; }
  .hero h1 { max-width: none; }
  .lead { max-width: none; }
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .cta,
  .section .cta,
  .finale .cta,
  .guarantee .cta {
    width: 100%;
  }
  .hero__bar {
    gap: 10px 16px;
    font-size: 12px;
    padding: 14px 0 18px;
    justify-content: flex-start;
  }
  .review { flex-basis: min(86vw, 340px); }
  .section { padding: 56px 0; }
  .tier { padding: 22px 18px; }
  .brands { grid-template-columns: 1fr 1fr; }
  .brands li {
    font-size: 14px;
    padding: 14px 8px;
  }
  .footer__row { grid-template-columns: 1fr; }
  .steps li { grid-template-columns: 48px 1fr; gap: 12px; }
  .steps b { font-size: 22px; }
  .steps h3 { font-size: 18px; }
  .faq summary { font-size: 16px; padding: 16px 0; }
  .finale { padding: 40px 0; }
  .finale__row { grid-template-columns: 1fr; gap: 24px; }
  .finale h2 { max-width: none; }
  .finale__action .cta { width: 100%; }
  .finale::after { display: none; }
  .cta { min-height: 50px; padding: 0 18px; font-size: 14px; }
}

@media (max-width: 380px) {
  .brands { grid-template-columns: 1fr; }
  .hero .brand { font-size: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
