/* SEDLO.CENTER */
:root {
  --ink: #121417;
  --ink-2: #181b20;
  --paper: #f3f1ec;
  --white: #fff;
  --text: #16181b;
  --muted: #5d636b;
  --line: #e2dfd7;
  --amber: #ffb300;
  --amber-2: #ffc84a;
  --amber-ink: #1a1400;
  --err: #c53b3b;
  --r: 14px;
  --r-lg: 22px;
  --container: 1200px;
  --f-head: 'Unbounded', 'Arial Black', system-ui, sans-serif;
  --f-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --tick: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23121417' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E");
  --cross: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b23a36' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M7 7l10 10M17 7L7 17'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:has(dialog[open]) { overflow: hidden; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 { font-family: var(--f-head); line-height: 1.14; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
section { scroll-margin-top: 72px; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

.section { padding: clamp(64px, 9vw, 116px) 0; }
.section--white { background: var(--white); }
.section--dark { background: var(--ink-2); color: #e8eaed; }
.section__head { max-width: 780px; margin-bottom: clamp(32px, 5vw, 56px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; }
.section__head p:not(.eyebrow) { color: var(--muted); font-size: 18px; margin-top: 16px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before { content: ""; width: 22px; height: 3px; background: var(--amber); }
.section--dark .eyebrow, .hero .eyebrow { color: var(--amber); }
.section__head--center .eyebrow { justify-content: center; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  border: 0; border-radius: 12px;
  font-weight: 800; font-size: 16px; line-height: 1.2;
  text-decoration: none; white-space: nowrap;
  transition: transform .15s, background-color .15s, box-shadow .15s, color .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.btn[disabled] { opacity: .65; cursor: progress; transform: none; }
.btn--amber { background: var(--amber); color: var(--amber-ink); box-shadow: 0 10px 28px -12px rgba(255, 179, 0, .75); }
.btn--amber:hover { background: var(--amber-2); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #2a2f36; }
.btn--ghost { background: transparent; color: inherit; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .22); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--amber); }
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--lg { padding: 18px 28px; font-size: 17px; }
.btn--block { width: 100%; }

.ticks { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.ticks li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.ticks li::before {
  content: ""; flex: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--amber) var(--tick) center / 12px no-repeat;
}

/* ---------- Шапка ---------- */
.header { position: fixed; inset: 0 0 auto; z-index: 50; color: #fff; transition: background-color .2s, box-shadow .2s; }
.header.is-scrolled, .header.nav-open { background: rgba(18, 20, 23, .94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 1px 0 rgba(255, 255, 255, .06); }
.header__in { display: flex; align-items: center; gap: 28px; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--f-head); font-weight: 800; font-size: 18px; letter-spacing: .02em; color: #fff; }
.logo img { width: 34px; height: 34px; }
.logo span span { color: var(--amber); }
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { text-decoration: none; font-weight: 600; font-size: 15px; opacity: .82; transition: color .15s, opacity .15s; }
.nav a:hover { opacity: 1; color: var(--amber); }
.header__actions { display: flex; align-items: center; gap: 18px; }
.header__phone { font-weight: 700; font-size: 15px; text-decoration: none; white-space: nowrap; }
.header__phone:hover { color: var(--amber); }

.burger { display: none; position: relative; width: 44px; height: 44px; border: 0; background: transparent; color: #fff; }
.burger span, .burger span::before, .burger span::after {
  position: absolute; left: 11px; width: 22px; height: 2px; border-radius: 2px; background: currentColor; transition: .2s;
}
.burger span { top: 21px; }
.burger span::before, .burger span::after { content: ""; left: 0; }
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.nav-open .burger span { background: transparent; }
.nav-open .burger span::before { top: 0; transform: rotate(45deg); }
.nav-open .burger span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding-top: 128px;
  color: #fff;
  background:
    radial-gradient(900px 520px at 78% 30%, rgba(255, 179, 0, .16), transparent 62%),
    linear-gradient(180deg, #0e1013, #171a1f);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
          mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
}
.hero > .container { position: relative; }
.hero__in { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(38px, 5.6vw, 72px); font-weight: 800; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero__lead { max-width: 560px; margin: 24px 0 34px; font-size: clamp(17px, 1.6vw, 20px); color: #b9bec6; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__ticks { margin-top: 28px; color: #d3d6db; }

.hero__visual { position: relative; padding: 56px 0 88px; }
.hero__visual img {
  width: 100%; max-width: 560px; margin-inline: auto;
  filter: drop-shadow(0 40px 40px rgba(0, 0, 0, .5));
}
.hero__badge {
  position: absolute; left: 4%; bottom: 0;
  padding: 14px 18px; border-radius: 16px;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero__badge b { display: block; font-family: var(--f-head); font-size: 24px; color: var(--amber); }
.hero__badge span { font-size: 14px; color: #c9cdd3; }
.hero__tag {
  position: absolute; right: 6%; top: 0;
  padding: 8px 14px; border-radius: 999px;
  background: var(--amber); color: var(--amber-ink);
  font-family: var(--f-head); font-weight: 700; font-size: 15px;
}

.hero__stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 64px; border-top: 1px solid rgba(255, 255, 255, .1); }
.stat { padding: 28px 24px 34px; border-left: 1px solid rgba(255, 255, 255, .1); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat b { display: block; font-family: var(--f-head); font-weight: 700; font-size: clamp(20px, 2.3vw, 30px); line-height: 1.2; }
.stat span { font-size: 14px; color: #9aa1aa; }

/* ---------- Порівняння ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.compare__col { padding: clamp(24px, 3.4vw, 40px); border-radius: var(--r-lg); }
.compare__col h3 { margin-bottom: 24px; font-size: 20px; font-weight: 700; }
.compare__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.compare__col li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; font-weight: 500; }
.compare__col li::before { content: ""; width: 28px; height: 28px; border-radius: 8px; }
.compare__col--bad { background: #e8e5de; color: #3b3f45; }
.compare__col--bad li::before { background: #f3d8d5 var(--cross) center / 16px no-repeat; }
.compare__col--good { background: var(--ink); color: #fff; box-shadow: inset 0 0 0 2px var(--amber); }
.compare__col--good h3 { color: var(--amber); }
.compare__col--good li::before { background: var(--amber) var(--tick) center / 15px no-repeat; }

/* ---------- Як працює ---------- */
.how { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.how h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; color: #fff; }
.how__lead { margin: 20px 0 28px; font-size: 18px; color: #b3b9c1; }
.legend { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.legend li { display: flex; align-items: center; gap: 14px; font-weight: 600; }
.legend span {
  display: grid; place-items: center; flex: none;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--amber); color: var(--ink); font-weight: 800; font-size: 14px;
}
.how__figure { margin: 0; padding: clamp(18px, 3vw, 32px); border-radius: var(--r-lg); background: #0f1114; border: 1px solid rgba(255, 255, 255, .07); }
.how__figure figcaption { margin-top: 12px; font-size: 13px; color: #7d848d; text-align: center; }

.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(40px, 6vw, 72px); }
.fact { padding: 28px; border-radius: var(--r-lg); background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .08); }
.fact svg { width: 40px; height: 40px; margin-bottom: 18px; fill: none; stroke: var(--amber); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.fact h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.fact p { color: #a9afb8; font-size: 16px; }

/* ---------- Моделі ---------- */
.models { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin-inline: auto; }
.model { position: relative; display: flex; flex-direction: column; overflow: hidden; border-radius: var(--r-lg); background: var(--white); box-shadow: 0 1px 0 var(--line), 0 20px 50px -30px rgba(0, 0, 0, .25); }
.model--best { box-shadow: inset 0 0 0 2px var(--ink), 0 30px 60px -30px rgba(0, 0, 0, .35); }
.model__badge {
  position: absolute; top: 18px; right: 18px; z-index: 1;
  padding: 6px 12px; border-radius: 999px;
  background: var(--amber); color: var(--amber-ink);
  font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.model__media { display: grid; place-items: center; aspect-ratio: 16 / 11; padding: 24px; background: radial-gradient(circle at 50% 45%, #2b313a, #121417 72%); }
.model__media img { width: 56%; filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .5)); }
.model__body { display: flex; flex-direction: column; gap: 22px; flex: 1; padding: clamp(22px, 3vw, 32px); }
.model__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.model h3 { font-size: 22px; font-weight: 700; white-space: nowrap; }
.thick { display: grid; gap: 2px; width: 72px; }
.thick i { display: block; border-radius: 2px; }
.thick i:first-child { height: calc(var(--t) * 3px); background: linear-gradient(#fff, #cfd5db); box-shadow: inset 0 0 0 1px var(--amber); }
.thick i:last-child { height: 10px; background: #3a414a; }
.specs { display: grid; margin: 0; }
.specs div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
.specs dt { color: var(--muted); }
.specs dd { margin: 0; font-weight: 700; }
.price { margin-top: auto; }
.price b { display: block; font-family: var(--f-head); font-size: 34px; font-weight: 800; line-height: 1.1; }
.price span { display: block; margin-top: 6px; font-size: 14px; color: var(--muted); }

/* ---------- Встановлення ---------- */
.install { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.install h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; margin-bottom: 28px; }
.video { overflow: hidden; aspect-ratio: 16 / 9; border-radius: var(--r-lg); background: var(--ink); }
.video video, .video iframe { display: block; width: 100%; height: 100%; border: 0; }
.video__ph {
  display: grid; place-items: center; align-content: center; gap: 18px; height: 100%;
  color: #fff; text-align: center;
  background: radial-gradient(circle at 50% 40%, #2a3038, #121417);
}
.video__ph p { font-weight: 700; font-size: 18px; }
.video__ph small { display: block; font-weight: 500; font-size: 14px; color: #8b929b; }
.video__play { position: relative; width: 76px; height: 76px; border-radius: 50%; background: var(--amber); }
.video__play::after { content: ""; position: absolute; left: 31px; top: 24px; border-style: solid; border-width: 14px 0 14px 22px; border-color: transparent transparent transparent var(--ink); }
.steps { list-style: none; margin: 0; padding: 0; counter-reset: s; display: grid; gap: 22px; }
.steps li { position: relative; padding-left: 62px; counter-increment: s; }
.steps li::before {
  content: counter(s); position: absolute; left: 0; top: 0;
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: var(--ink); color: var(--amber); font-family: var(--f-head); font-weight: 700;
}
.steps b { display: block; font-size: 18px; }
.steps span { color: var(--muted); }

/* ---------- Опт ---------- */
.opt { position: relative; padding: clamp(56px, 7vw, 88px) 0; background: var(--amber); color: var(--amber-ink); }
.opt::before, .opt::after {
  content: ""; position: absolute; left: 0; right: 0; height: 10px;
  background: repeating-linear-gradient(-45deg, var(--ink) 0 14px, var(--amber) 14px 28px);
}
.opt::before { top: 0; }
.opt::after { bottom: 0; }
.opt__in { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.opt__text { max-width: 720px; }
.opt .eyebrow { color: var(--amber-ink); }
.opt .eyebrow::before { background: var(--ink); }
.opt h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; margin-bottom: 14px; }
.opt p:not(.eyebrow) { font-size: 18px; font-weight: 500; }

/* ---------- Як замовити ---------- */
.flow { list-style: none; margin: 0; padding: 0; counter-reset: f; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flow li { counter-increment: f; padding: 28px 24px; border-radius: var(--r-lg); background: var(--white); box-shadow: 0 1px 0 var(--line); }
.flow li::before { content: "0" counter(f); display: block; margin-bottom: 18px; font-family: var(--f-head); font-weight: 800; font-size: 32px; color: var(--amber); line-height: 1; }
.flow b { display: block; margin-bottom: 6px; font-size: 18px; }
.flow span { color: var(--muted); font-size: 16px; }

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(24px, 5vw, 64px); align-items: start; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  position: relative; list-style: none; cursor: pointer;
  padding: 22px 48px 22px 0; font-weight: 700; font-size: 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; translate: 0 -50%;
  display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  background: var(--paper); font-size: 20px; font-weight: 600; transition: rotate .2s, background-color .2s;
}
.faq details[open] summary::after { rotate: 45deg; background: var(--amber); }
.faq summary:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
.faq details p { padding: 0 48px 22px 0; color: var(--muted); }

/* ---------- Замовлення ---------- */
.order__in { display: grid; grid-template-columns: 1fr minmax(0, 480px); gap: clamp(32px, 6vw, 80px); align-items: center; }
.order h2 { font-size: clamp(28px, 3.8vw, 44px); font-weight: 700; color: #fff; }
.order__prices { list-style: none; margin: 32px 0 28px; padding: 0; display: grid; gap: 10px; }
.order__prices li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 16px 20px; border-radius: var(--r); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08); }
.order__prices span { color: #c3c8cf; }
.order__prices b { font-family: var(--f-head); font-weight: 700; font-size: 20px; color: #fff; white-space: nowrap; }
.order .ticks { color: #d3d6db; }
.order__call { margin-top: 28px; color: #9aa1aa; }
.order__call a { color: #fff; font-weight: 700; text-decoration: none; white-space: nowrap; }
.order__call a:hover { color: var(--amber); }

/* ---------- Форма ---------- */
.form-card { position: relative; padding: clamp(22px, 3vw, 34px); border-radius: var(--r-lg); background: var(--white); color: var(--text); box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .7); }
.order-form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; min-width: 0; margin: 0; padding: 0; border: 0; }
.field__label { padding: 0; font-size: 14px; font-weight: 700; }
.field__label em { font-style: normal; font-weight: 500; color: var(--muted); }
.field input[type="text"], .field input[type="tel"] {
  width: 100%; height: 52px; padding: 0 16px;
  border: 1.5px solid #d6d9de; border-radius: 12px; background: #fff;
  font: inherit; font-size: 17px; color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(255, 179, 0, .4); }
.field.is-invalid input { border-color: var(--err); }
.field__err { font-size: 13px; font-weight: 600; color: var(--err); }

.seg { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 4px; padding: 4px; border-radius: 12px; background: #eef0f2; }
.seg label { position: relative; }
.seg input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
.seg span {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 46px; padding: 8px; border-radius: 9px;
  font-weight: 700; font-size: 15px; line-height: 1.25; text-align: center; color: var(--muted);
  transition: background-color .15s, color .15s;
}
.seg small { font-size: 12px; font-weight: 600; opacity: .8; }
.seg input:checked + span { background: var(--ink); color: #fff; box-shadow: 0 2px 8px rgba(0, 0, 0, .15); }
.seg--type input:checked + span { background: var(--amber); color: var(--amber-ink); }
.seg input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 2px; }

.qty { display: grid; grid-template-columns: 52px 1fr 52px; height: 52px; overflow: hidden; border: 1.5px solid #d6d9de; border-radius: 12px; }
.qty button { border: 0; background: #f2f3f5; font-size: 22px; font-weight: 700; color: var(--text); }
.qty button:hover { background: #e7e9ec; }
.qty input { width: 100%; min-width: 0; border: 0; text-align: center; font: inherit; font-size: 17px; font-weight: 700; color: var(--text); }
.qty input:focus { outline: none; background: #fffaf0; }

.opt-hint { display: none; padding: 12px 14px; border-radius: 10px; background: #fff6df; font-size: 14px; font-weight: 600; }
.order-form.is-opt .opt-hint { display: block; }
.total { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 14px 16px; border-radius: 12px; background: #f4f5f6; font-size: 15px; color: var(--muted); }
.total b { font-family: var(--f-head); font-size: 20px; font-weight: 700; color: var(--text); white-space: nowrap; }
.order-form.is-opt .total { display: none; }

.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-msg { padding: 12px 14px; border-radius: 10px; background: #fdecec; color: #8f1d1d; font-size: 14px; font-weight: 600; }
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; }
.form-note a { color: inherit; }

/* ---------- Модальне вікно ---------- */
.modal { width: 100%; max-width: min(480px, calc(100% - 24px)); max-height: calc(100dvh - 24px); padding: 0; border: 0; border-radius: var(--r-lg); background: transparent; overflow: auto; }
.modal::backdrop { background: rgba(10, 12, 14, .74); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.modal[open] { animation: pop .22s ease-out; }
.modal h2 { margin-right: 44px; font-size: 22px; font-weight: 700; }
.modal__sub { margin: 6px 0 18px; font-size: 15px; color: var(--muted); }
.modal .order-form { gap: 13px; }
.modal__close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: #f0f1f3; font-size: 26px; line-height: 1; color: var(--text); }
.modal__close:hover { background: #e3e5e8; }
@keyframes pop { from { opacity: 0; transform: translateY(12px) scale(.98); } }

/* ---------- Футер ---------- */
.footer { padding: 56px 0 32px; background: #0c0d0f; color: #9aa1aa; font-size: 15px; }
.footer__in { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer__about { max-width: 340px; margin-top: 16px; }
.footer__title { margin-bottom: 14px; font-weight: 800; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #fff; }
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--amber); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: 13px; }

/* ---------- Мобільна панель ---------- */
.mbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: none; grid-template-columns: 56px 1fr; gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(18, 20, 23, .95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transform: translateY(110%); transition: transform .25s;
}
.show-mbar .mbar { transform: none; }
.mbar__call { display: grid; place-items: center; border-radius: 12px; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .22); color: #fff; }
.mbar__call svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linejoin: round; }

/* ---------- Поява при скролі ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Сторінки thanks / privacy ---------- */
.page { min-height: 100vh; display: flex; flex-direction: column; }
.page .header { position: static; background: var(--ink); }
.page main { flex: 1; }
.thanks { display: grid; place-items: center; padding: 80px 0; text-align: center; }
.thanks__icon { display: grid; place-items: center; width: 88px; height: 88px; margin: 0 auto 28px; border-radius: 50%; background: var(--amber) var(--tick) center / 44px no-repeat; }
.thanks h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.thanks p { max-width: 520px; margin: 0 auto 32px; color: var(--muted); font-size: 18px; }
.legal { max-width: 820px; padding: 56px 0 80px; }
.legal h1 { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 24px; }
.legal h2 { font-size: 20px; margin: 32px 0 12px; }
.legal p, .legal li { color: #3d4248; }
.legal p + p { margin-top: 12px; }
.legal ul { padding-left: 22px; }

/* ---------- Адаптив ---------- */
@media (max-width: 1080px) {
  .header__phone { display: none; }
}
@media (max-width: 980px) {
  .hero__in, .how, .install, .order__in, .faq-wrap { grid-template-columns: 1fr; }
  .hero { padding-top: 104px; }
  .hero__visual { max-width: 460px; width: 100%; margin-inline: auto; }
  .flow { grid-template-columns: 1fr 1fr; }
  .footer__in { grid-template-columns: 1fr 1fr; }
  .footer__in > :first-child { grid-column: 1 / -1; }
  .opt__in { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 72px 0 auto; margin: 0;
    display: none; flex-direction: column; gap: 0;
    padding: 4px 20px 20px; background: var(--ink);
    box-shadow: 0 30px 40px -20px rgba(0, 0, 0, .6);
  }
  .header.nav-open { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--ink); }
  .header.nav-open .nav { display: flex; }
  .nav a { padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); font-size: 17px; opacity: 1; }
  .header__actions { margin-left: auto; gap: 8px; }
  .burger { display: block; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .compare, .models, .facts { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr 1fr; margin-top: 40px; }
  .stat { padding: 20px 16px 22px; border-left: 0; border-top: 1px solid rgba(255, 255, 255, .1); }
  .stat:nth-child(even) { border-left: 1px solid rgba(255, 255, 255, .1); }
  .stat:nth-child(odd) { padding-left: 0; }
  .hero__stats { border-top: 0; }
  .mbar { display: grid; }
  .footer { padding-bottom: calc(110px + env(safe-area-inset-bottom)); }
  .page .footer { padding-bottom: 32px; }
  .header .btn--sm { display: none; }
  .hero__cta .btn { flex: 1 1 100%; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 32px, var(--container)); }
  .flow { grid-template-columns: 1fr; }
  .footer__in { grid-template-columns: 1fr; }
  .hero__badge { padding: 10px 14px; }
  .hero__badge b { font-size: 18px; }
  .faq summary { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .modal[open] { animation: none; }
}
