/* WIWOCARS v2 ? Figma palette (frame 4407:1595) */

:root {
  --accent: #cc1419;
  --accent-hover: #cf2227;
  --accent-dim: #9e1316;
  --accent-soft: rgba(204, 20, 25, 0.12);
  --accent-border: rgba(204, 20, 25, 0.35);
  --bg-dark: #141010;
  --bg-dark-2: #1b1717;
  --bg-light: #ffffff;
  --bg-cream: #edebdd;
  --bg-card: #fffdf4;
  --ph-dark: #413e3c;
  --ph-vf: #d9d8d3;
  --surface-dark: #1e1919;
  --surface-review: #221d1d;
  --text-muted: #a8a296;
  --text-muted-2: #b9b3a7;
  --text-caption: #9d978c;
  --text-case-meta: #57524d;
  --text: #f5f5f5;
  --text-dark: #141010;
  --text-dark-muted: #4a4a4a;
  --text-on-accent: #ffffff;
  --link-disk: #6e6c66;
  --input-bg: #f2f1eb;
  --header-bg: rgba(20, 16, 16, 0.9);
  --surface-dark-border: rgba(237, 235, 221, 0.14);
  --border-reason: rgba(237, 235, 221, 0.08);
  --border-review: rgba(237, 235, 221, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --border-dark: rgba(0, 0, 0, 0.12);
  --border-card: rgba(27, 23, 23, 0.1);
  --container: 1240px;
  --gutter: clamp(20px, calc((100vw - var(--container)) / 2), 340px);
  --inner: clamp(16px, 3vw, 40px);
  --radius: 2px;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-display: "Unbounded", "Manrope", sans-serif;
  --header-h: 94px;
  --ticker-h: 36px;
  --sticky-h: 64px;
  --sticky-h-mobile: 5.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--inner);
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.display-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-title--lg {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.display-title--md {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.display-title--sm {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.display-underline {
  position: relative;
  display: inline-block;
}

.display-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.05em;
  width: 100%;
  height: 4px;
  background: var(--accent);
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-muted);
  max-width: 38rem;
}

.section--light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section--cream {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.section--warm {
  background: var(--bg-card);
  color: var(--text-dark);
}

.section--light .lead,
.section--cream .lead,
.section--warm .lead {
  color: var(--text-dark-muted);
}

.section--cream .display-title,
.section--warm .display-title {
  color: var(--bg-dark-2);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text);
}

.section--dark-2 {
  background: var(--bg-dark-2);
  color: var(--text);
}

#top {
  background: var(--bg-dark);
}

#calc {
  background: var(--bg-cream);
  color: var(--text-dark);
}

#calc .display-title {
  color: var(--bg-dark-2);
}

#calc .lead,
.section--cream .lead {
  color: #57524d;
}

#lead-form {
  scroll-margin-top: calc(var(--header-h) + 10px);
}

.section {
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 10px);
}

.cut {
  height: 56px;
  margin-block: -1px;
  clip-path: polygon(0 0, 100% 0, 100% 25%, 0 100%);
}

.cut--to-light {
  background: var(--bg-light);
}

.cut--to-cream {
  background: var(--bg-cream);
}

.cut--to-warm {
  background: var(--bg-card);
}

.cut--to-dark {
  background: var(--bg-dark);
}

.cut--to-dark-2 {
  background: var(--bg-dark-2);
}

.cut--to-accent {
  background: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--accent);
  color: var(--text-on-accent);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.section--dark .btn--outline {
  color: var(--text);
  border-color: var(--text);
}

.btn--ghost {
  background: var(--bg-dark);
  color: var(--text);
  border-color: var(--bg-dark);
}

.btn--full {
  width: 100%;
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
}

/* Ticker */
.ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--ticker-h);
  background: var(--accent);
  color: var(--bg-card);
  overflow: hidden;
}

.ticker__track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: ticker 28s linear infinite;
  gap: 2.5rem;
  padding-inline: var(--gutter);
}

.ticker__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
}

.ticker__item::before {
  content: "";
  width: 7px;
  height: 6px;
  background: var(--bg-card);
  transform: rotate(45deg);
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Header */
.header {
  position: fixed;
  top: var(--ticker-h);
  left: 0;
  right: 0;
  z-index: 190;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.header.is-scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(var(--header-h) - var(--ticker-h));
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--accent);
  color: var(--text-on-accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
}

.logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.15s;
}

.nav__link:hover {
  color: var(--accent);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__phone {
  display: none;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.header__phone:hover {
  color: var(--accent);
}

.header__cta .btn {
  padding-inline: 1rem;
  font-size: 0.75rem;
  line-height: 1.2;
  text-align: center;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: calc(var(--ticker-h) + var(--header-h) - var(--ticker-h)) 0 0 0;
  z-index: 180;
  background: var(--bg-dark-2);
  padding: 1.5rem var(--inner);
  overflow-y: auto;
  border-top: 1px solid var(--border);
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav__link {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

.mobile-nav__phone {
  display: block;
  margin-top: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.page-offset {
  padding-top: var(--header-h);
}

/* Hero */
.hero__grid {
  display: grid;
  gap: 2rem;
}

.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero__title {
  margin-bottom: 1.25rem;
  color: var(--bg-cream);
}

.hero__subtitle {
  color: #cfc9bd;
  margin-bottom: 1.5rem;
  max-width: 38rem;
}

.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: #cfc9bd;
}

.hero__bullets li::before {
  content: "";
  width: 9px;
  height: 8px;
  margin-top: 0.45em;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.hero__cta-note {
  margin: 0;
  font-size: 0.8125rem;
  color: #a8a195;
}

.btn--lg {
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
  font-weight: 800;
}

.media-block {
  position: relative;
  min-height: 280px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.media-block--dark {
  background: var(--ph-dark);
  border-color: var(--surface-dark-border);
}

.media-block--hero {
  background: #5c5955;
  border-color: var(--surface-dark-border);
}

.media-block--hero .media-block__cap {
  color: var(--text-muted);
}

.media-block__img,
.media-block__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ph-vf);
}

.media-block__img {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-block__img.is-loaded {
  opacity: 1;
}

.media-block__video {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.media-block__video.is-ready {
  opacity: 1;
}

.media-block:has(.media-block__img) .media-block__cap,
.media-block:has(.media-block__video) .media-block__cap {
  display: none;
}

.media-block:has(.media-block__img)::before,
.media-block:has(.media-block__img)::after,
.media-block:has(.media-block__video)::before,
.media-block:has(.media-block__video)::after {
  display: none;
}

.media-block--vf {
  background: var(--ph-vf);
  border-color: var(--border-card);
}

.media-block--vf::before,
.media-block--vf::after {
  border-color: var(--accent);
}

.media-block--vf .media-block__cap {
  color: var(--text-caption);
}

.media-block--vf .media-block__play {
  border-color: var(--accent);
}

.media-block--vf .media-block__play::before {
  border-color: transparent transparent transparent var(--accent);
}

.media-block--tall {
  min-height: clamp(280px, 45vw, 664px);
}

.media-block::before,
.media-block::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--accent);
  pointer-events: none;
}

.media-block::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.media-block::after {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

.media-block__cap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  padding: 1rem;
}

.media-block__play {
  width: 58px;
  height: 58px;
  border: 2px solid var(--accent);
  display: grid;
  place-items: center;
}

.media-block__play::before {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--accent);
  margin-left: 4px;
}

.hero-benefits {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-benefit {
  padding: 1.25rem 1.2rem;
  border: 1px solid rgba(237, 235, 221, 0.09);
  background: var(--surface-review);
}

.hero-benefit strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  color: var(--bg-cream);
}

.hero-benefit p {
  font-size: 0.875rem;
  color: var(--text-muted-2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 2rem;
  border: 1px solid var(--surface-dark-border);
  background: var(--bg-dark);
}

.hero-stat {
  padding: 1.25rem 1rem;
  border: 1px solid var(--surface-dark-border);
  background: var(--surface-dark);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.hero-stat span {
  font-size: 0.8125rem;
  color: #9d978c;
}

/* Calc */
.calc-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.calc-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
}

.calc-note strong {
  display: block;
  margin-bottom: 0.35rem;
}

.calc-note p {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-top: 4px solid var(--accent);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.field span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark-muted);
}

.field input,
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--text-dark);
  background: var(--input-bg);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
}

.field input:focus,
.field select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.field input.error,
.field select.error {
  border-color: #e04040;
}

.field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
}

.field--checkbox input {
  width: auto;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.field--checkbox span {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.45;
}

.field--checkbox a {
  color: var(--text-dark);
  text-decoration: underline;
}

.contact-channels--form {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-dark);
}

.contact-paths {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-path {
  padding: 0.85rem;
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.35);
}

.contact-path--write {
  border-top: 3px solid #229ed9;
}

.contact-path--browse {
  border-top: 3px solid var(--accent);
}

.contact-path__title {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.contact-path__hint {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-dark-muted);
}

.contact-channels__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.contact-channels__grid--multi {
  grid-template-columns: repeat(3, 1fr);
}

.contact-channels__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: transform 0.15s, filter 0.15s, background 0.15s;
}

.contact-channels__link:active {
  transform: scale(0.98);
}

.contact-channels__link--form {
  flex-direction: column;
  padding: 0.85rem 0.65rem;
  font-size: 0.8125rem;
  text-align: center;
  min-height: 4.5rem;
}

.contact-channels__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.2;
}

.contact-channels__text strong {
  font-size: 0.8125rem;
}

.contact-channels__handle {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
}

.contact-channels__icon {
  flex-shrink: 0;
}

.contact-channels__link--telegram {
  background: #229ed9;
  color: #fff;
  border-color: #229ed9;
}

.contact-channels__link--telegram:hover {
  background: #1b8bc2;
}

.contact-channels__link--telegram-channel {
  background: rgba(34, 158, 217, 0.12);
  color: #229ed9;
  border-color: #229ed9;
}

.contact-channels__link--telegram-channel:hover {
  background: rgba(34, 158, 217, 0.22);
}

.contact-channels__link--instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  color: #fff;
  border-color: #dd2a7b;
}

.contact-channels__link--instagram:hover {
  filter: brightness(1.08);
}

.contact-channels__link--youtube {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}

.contact-channels__link--youtube:hover {
  filter: brightness(1.08);
}

.contact-channels__link--browse {
  background: var(--bg-dark);
  color: var(--text);
  border-color: var(--bg-dark);
}

.contact-channels__link--browse.contact-channels__link--instagram,
.contact-channels__link--browse.contact-channels__link--telegram,
.contact-channels__link--browse.contact-channels__link--youtube {
  background: var(--input-bg);
  color: var(--text-dark);
  border-color: var(--border-dark);
}

.contact-channels__link--browse:hover {
  border-color: var(--accent);
}

.contact-channels__link--max {
  background: #5c6bc0;
  color: #fff;
  border-color: #5c6bc0;
}

.contact-channels--inline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-channels__link--inline {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border-radius: 50%;
}

.contact-channels--float {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-channels__link--float,
.contact-float__tg-toggle {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-float {
  position: fixed;
  right: max(10px, env(safe-area-inset-right));
  bottom: calc(5.5rem + env(safe-area-inset-bottom));
  z-index: 194;
  transition: bottom 0.3s ease;
}

.contact-float__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.contact-float__tg {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.contact-float__menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.5rem);
  min-width: 9.5rem;
  padding: 0.35rem;
  border-radius: 12px;
  background: #16161c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  opacity: 0;
  transform: translateY(4px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.16s ease, transform 0.16s ease;
  pointer-events: none;
}

.contact-float__menu::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background: #16161c;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
}

.contact-float__tg.is-open .contact-float__menu {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.contact-float__menu-item {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #e6e6ee;
  text-decoration: none;
  white-space: nowrap;
}

.contact-float__menu-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.contact-float__tg-toggle {
  cursor: pointer;
  border: none;
  font: inherit;
}

.contact-float__tg.is-open .contact-float__tg-toggle {
  box-shadow: 0 0 0 2px rgba(34, 158, 217, 0.55), 0 8px 24px rgba(0, 0, 0, 0.28);
}

.lead-form__success {
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--text-on-accent);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
}

/* Guarantees */
.guarantees-grid {
  display: grid;
  gap: 1.125rem;
  margin-top: 2rem;
}

.guarantee-card {
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(237, 235, 221, 0.09);
  background: var(--surface-review);
}

.guarantee-card__icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 48px;
  background: var(--accent);
  color: var(--text-on-accent);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.guarantee-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.65rem;
}

.guarantee-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.guarantee-card .btn {
  margin-top: 0.5rem;
}

/* Directions */
.dir-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.direction-card {
  border: 1px solid var(--border-dark);
  background: var(--bg-card);
  overflow: hidden;
}

.direction-card .media-block {
  min-height: 0;
  aspect-ratio: 1 / 1;
  border: none;
  border-bottom: 1px solid rgba(20, 16, 16, 0.08);
}

.direction-card .media-block__video {
  object-fit: cover;
  object-position: center center;
}

.direction-card__body {
  padding: 1.5rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent);
  color: var(--text-on-accent);
  margin-bottom: 0.75rem;
}

.direction-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.direction-card > .direction-card__body > p {
  font-size: 0.9375rem;
  color: var(--text-dark-muted);
  margin-bottom: 1rem;
}

.dir-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding-block: 0.35rem;
}

.dir-list li::before {
  content: "";
  width: 9px;
  height: 8px;
  margin-top: 0.4em;
  background: var(--text-dark);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.ph-link {
  font-size: 0.75rem;
  color: var(--link-disk);
  text-decoration: underline;
  margin-top: 0.25rem;
}

/* Reasons */
.reasons-tabs {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin: 1.5rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reasons-tabs::-webkit-scrollbar {
  display: none;
}

.reasons__tab {
  flex-shrink: 0;
  padding: 0.55rem 1rem;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(237, 235, 221, 0.3);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.reasons__tab.is-active {
  background: var(--accent);
  color: var(--text-on-accent);
  border-color: var(--accent);
}

.reasons-grid {
  display: grid;
  gap: 1rem;
}

.reason-card {
  padding: 1.25rem 1.25rem 1.5rem;
  border: 1px solid var(--border-reason);
  background: var(--surface-dark);
  transition: opacity 0.2s;
}

.reason-card.is-hidden {
  display: none;
}

.reason-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.reason-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.reason-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* CTA strip */
.cta-strip {
  background: var(--accent);
  color: var(--text-on-accent);
  padding-block: clamp(1.5rem, 3vw, 2.75rem);
}

.cta-strip__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.cta-strip__text {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  max-width: 28rem;
  line-height: 1.25;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-strip .btn--ghost {
  background: var(--bg-dark);
  color: var(--text-on-accent);
  border-color: var(--bg-dark);
}

.cta-strip .btn--ghost:hover {
  background: var(--bg-dark-2);
  border-color: var(--bg-dark-2);
}

.cta-strip .btn--outline {
  color: var(--text-on-accent);
  border-color: rgba(255, 255, 255, 0.85);
}

.cta-strip .btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Cases slider */
.cases-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cases-head__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.cases-nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cases-nav button {
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
  background: transparent;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  position: relative;
  z-index: 2;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
  .cases-nav button {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
}

.cases-nav button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-on-accent);
}

.cases-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  scroll-behavior: auto;
  scroll-snap-type: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

@media (min-width: 769px) {
  .cases-track {
    scroll-behavior: auto;
  }
}

.cases-track::-webkit-scrollbar {
  display: none;
}

.case-card {
  flex: 0 0 min(100%, 369px);
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  border: 1px solid rgba(27, 23, 23, 0.1);
  background: var(--bg-card);
  overflow: hidden;
}

@media (max-width: 768px) {
  .case-card {
    scroll-snap-align: center;
  }
}

.case-card .media-block {
  aspect-ratio: 369 / 277;
  min-height: 0;
  border: none;
}

.case-card .media-block__img,
.case-card .media-block__video {
  object-fit: cover;
  object-position: center center;
}

.case-card .media-block__img {
  opacity: 1;
  transition: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.case-card .media-block__video {
  opacity: 1;
  transition: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.case-card .media-block--vf::before,
.case-card .media-block--vf::after {
  display: none;
}

.case-video {
  cursor: pointer;
}

.case-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 50%;
  background: rgba(20, 16, 16, 0.55);
  cursor: pointer;
  touch-action: manipulation;
}

.case-video__play:hover {
  background: rgba(20, 16, 16, 0.75);
}

body.video-player-open {
  overflow: hidden;
}

.video-player {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
}

.video-player[hidden] {
  display: none;
}

.video-player__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.video-player__shell {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 0.75rem 4rem;
}

.video-player__frame {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  max-height: calc(100dvh - 7rem);
}

.video-player__loading {
  position: absolute;
  z-index: 3;
  color: #fff;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}

.video-player__loading[hidden] {
  display: none;
}

.video-player__video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - 7rem);
  object-fit: contain;
  background: #000;
}

.video-player__fs {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

.video-player__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.case-card__body {
  padding: 1.25rem 1.375rem 1.5rem;
}

.case-card__brand {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark-muted);
  margin-bottom: 0.35rem;
}

.case-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.35rem;
}

.case-card p {
  font-size: 0.875rem;
  color: var(--text-case-meta);
}

.case-card__spec {
  margin-bottom: 0.35rem;
}

.case-card__price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 0.25rem;
}

.case-card__more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: underline;
}

/* Steps */
.steps-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.step-item:last-child {
  border-bottom: none;
}

.step-item__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.step-item h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: 0.35rem;
}

.step-item p {
  font-size: 0.9375rem;
  color: var(--text-muted-2);
}

/* Payments */
.pay-grid {
  display: grid;
  gap: 1.125rem;
  margin-top: 2rem;
}

.pay-card {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-dark);
  background: var(--bg-card);
}

.pay-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pay-card strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.35rem;
}

.pay-card p {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

/* Reviews */
.section--hidden {
  display: none !important;
}

.cut--hidden-with-reviews {
  display: none;
}

.nav__link[href="#reviews"],
.mobile-nav__link[href="#reviews"] {
  display: none;
}

.reviews-grid {
  display: grid;
  gap: 1.125rem;
  margin-top: 2rem;
}

.review-card {
  border: 1px solid var(--border-review);
  background: var(--surface-review);
  overflow: hidden;
}

.review-card .media-block {
  min-height: 200px;
  border: none;
  border-bottom: 1px solid var(--surface-dark-border);
}

.review-card__body {
  padding: 1.25rem 1.375rem 1.5rem;
}

.review-card__quote {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.review-card p {
  font-size: 0.9375rem;
  color: #cfc9bd;
  margin-bottom: 0.75rem;
}

.review-card strong {
  display: block;
  font-size: 1rem;
}

.review-card span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Final form */
.final-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.final-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 50%, var(--accent-soft), transparent);
  pointer-events: none;
}

.section--final {
  position: relative;
  overflow: hidden;
}

.stamp {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--accent);
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding-block: 3rem 5rem;
}

.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer__brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
}

.footer__brand p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer__contacts a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer__contacts a:hover {
  color: var(--accent);
}

.footer__legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 36rem;
}

.footer__legal a {
  text-decoration: underline;
}

/* Sticky bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 195;
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.sticky-bar.is-visible {
  transform: translateY(0);
}

.sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--sticky-h);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--inner);
}

.sticky-bar__text {
  font-size: 0.8125rem;
  font-weight: 600;
}

.sticky-bar__save {
  color: var(--accent);
}

.sticky-bar__mobile {
  display: none;
}

.sticky-bar__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.sticky-bar__btn {
  flex-shrink: 0;
  font-size: 0.8125rem;
  padding: 0.65rem 1rem;
}

/* Responsive */
@media (min-width: 640px) {
  .hero-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-stat:nth-child(odd) {
    background: var(--bg-dark);
  }

  .hero-stat:nth-child(even) {
    background: var(--surface-dark);
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .header__phone {
    display: block;
  }

  .calc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .guarantees-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guarantees-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .dir-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .cta-strip__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .pay-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .header__cta {
    display: none;
  }

  .sticky-bar__desktop {
    display: none;
  }

  .sticky-bar__mobile {
    display: inline;
  }

  .sticky-bar__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding-block: 0.55rem 0.65rem;
    min-height: auto;
  }

  .sticky-bar__text {
    text-align: center;
    font-size: 0.6875rem;
    line-height: 1.35;
    flex: none;
    width: 100%;
  }

  .sticky-bar__actions {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .sticky-bar .contact-channels--inline {
    display: flex;
    flex-shrink: 0;
  }

  .sticky-bar__btn {
    flex: 1;
    width: auto;
    min-width: 0;
  }

  .contact-float {
    bottom: calc(5.25rem + env(safe-area-inset-bottom));
  }

  .contact-channels__grid--multi {
    grid-template-columns: 1fr;
  }

  .contact-channels__link--float,
  .contact-float__tg-toggle {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
  }

  .step-item {
    grid-template-columns: 60px 1fr;
  }
}

/* ??? WIWOCARS native quiz (no Marquiz) ??? */
body.wq-open {
  overflow: hidden;
}

.wq-dock {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 196;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 420px);
  transform: translateX(-50%);
  pointer-events: none;
}

.wq-dock > * {
  pointer-events: auto;
}

.wq-teaser {
  width: calc(100% - 1rem);
  margin-bottom: 0.45rem;
  padding: 0.85rem 2.1rem 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: linear-gradient(165deg, #1c1714 0%, #12100e 100%);
  color: #f4efe6;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  transform-origin: bottom center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.wq-teaser[hidden] {
  display: block !important;
  opacity: 0;
  transform: translateY(120%) scale(0.96);
  pointer-events: none;
  visibility: hidden;
}

.wq-teaser.is-in {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wq-teaser.is-out {
  opacity: 0;
  visibility: hidden;
  transform: translateY(110%) scale(0.97);
  pointer-events: none;
}

.wq-teaser__close {
  position: absolute;
  top: 0.35rem;
  right: 0.4rem;
  width: 1.75rem;
  height: 1.75rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #cfc9bd;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.wq-teaser__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.wq-teaser {
  position: relative;
}

.wq-teaser__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e8a0a2;
}

.wq-teaser__list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wq-teaser__list li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--accent);
}

.wq-teaser__list strong {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
}

.wq-teaser__list span {
  font-size: 0.75rem;
  color: #bdb5a8;
}

.wq-fab {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: calc(100% - 1rem);
  max-width: none;
  padding: 0.9rem 1.35rem;
  padding-bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px));
  border: 0;
  border-radius: 14px 14px 0 0;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 2.6vw, 0.9375rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 -6px 28px rgba(204, 20, 25, 0.4);
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  transform: none;
  transition: background 0.2s ease, filter 0.2s ease;
  animation: wq-fab-pulse 2.4s ease-in-out infinite;
}

.wq-fab__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.wq-fab:hover {
  background: var(--accent-hover);
  filter: brightness(1.05);
  transform: none;
}

.wq-fab__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  animation: wq-fab-dot 2.4s ease-in-out infinite;
}

@keyframes wq-fab-pulse {
  0%,
  100% {
    box-shadow: 0 -6px 28px rgba(204, 20, 25, 0.4), 0 0 0 0 rgba(204, 20, 25, 0.45);
  }
  50% {
    box-shadow: 0 -8px 34px rgba(204, 20, 25, 0.55), 0 0 0 10px rgba(204, 20, 25, 0);
  }
}

@keyframes wq-fab-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.85;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wq-fab,
  .wq-fab__dot {
    animation: none;
  }

  .wq-teaser {
    transition: none;
  }
}

body.wq-open .wq-dock {
  visibility: hidden;
  pointer-events: none;
}

.wq {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: end center;
  background: rgba(10, 8, 8, 0.72);
  backdrop-filter: blur(8px);
  padding: 12px;
  padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
}

.wq[hidden] {
  display: none !important;
}

.wq__panel {
  display: flex;
  flex-direction: column;
  width: min(100%, 440px);
  height: min(86dvh, 700px);
  max-height: calc(100dvh - 24px);
  margin: 0;
  background: linear-gradient(180deg, #1a1515 0%, #121010 100%);
  color: var(--text);
  outline: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .wq {
    place-items: center;
    padding: clamp(12px, 2vh, 24px);
  }

  .wq__panel {
    height: min(88dvh, 760px);
    max-height: calc(100dvh - 24px);
  }
}

.wq__top {
  display: grid;
  grid-template-columns: 2.5rem 1fr 2.5rem;
  align-items: center;
  gap: 0.35rem;
  min-height: 3rem;
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.wq__back,
.wq__close {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.wq__back[hidden] {
  visibility: hidden;
  pointer-events: none;
}

.wq__progress {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
}

.wq__progress[hidden] {
  visibility: hidden;
}

.wq__progress-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.wq__progress-bar {
  display: block;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.wq__progress-bar i {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: inherit;
  transition: width 0.25s ease;
}

.wq__body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 0.85rem 1rem;
  padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
  overflow: hidden;
}

.wq__screen {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  animation: wq-in 0.22s ease;
}

@keyframes wq-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.wq__eyebrow {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.wq__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4.2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}

.wq__screen--start .wq__title {
  white-space: normal;
  overflow-wrap: anywhere;
  font-size: clamp(0.95rem, 3.4vw, 1.4rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 100%;
}

.wq__text {
  margin: 0;
  color: var(--text-muted-2);
  font-size: 0.9375rem;
  line-height: 1.4;
}

.wq__bonuses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 0.15rem 0 0;
  padding: 0;
  list-style: none;
}

.wq__bonus {
  display: grid;
  gap: 0.15rem;
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wq__bonus strong {
  font-size: 0.8125rem;
  font-weight: 800;
}

.wq__bonus span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.wq__note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-caption);
  text-align: center;
}

.wq__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  margin-top: 0.25rem;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

.wq__cta:hover {
  background: var(--accent-hover);
}

.wq__cta:disabled {
  opacity: 0.7;
  cursor: wait;
}

.wq__cta--link {
  text-align: center;
}

.wq__ghost {
  width: 100%;
  min-height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.wq__opts {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.wq__opts--dense {
  gap: 0.4rem;
}

.wq__opt {
  display: grid;
  gap: 0.1rem;
  width: 100%;
  text-align: left;
  padding: 0.8rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.wq__opt span {
  font-size: 0.9375rem;
  font-weight: 750;
}

.wq__opt small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.wq__opt:hover,
.wq__opt.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.wq__opt:active {
  transform: scale(0.985);
}

.wq__form {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.1rem;
}

.wq__channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
}

.wq__channel {
  min-height: 2.4rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
}

.wq__channel.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.wq__field {
  display: grid;
  gap: 0.25rem;
}

.wq__field span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.wq__field input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font: inherit;
}

.wq__field input:focus {
  outline: none;
  border-color: var(--accent);
}

.wq__field input.is-error {
  border-color: #e24;
}

.wq__consent {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.wq__consent a {
  color: #fff;
  text-decoration: underline;
}

.wq__consent input {
  margin-top: 0.15rem;
}

.wq__check {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 800;
  margin-inline: auto;
}

.wq__screen--done {
  text-align: center;
  align-items: center;
}

.wq__screen--done .wq__text {
  max-width: 22rem;
}

@media (max-height: 700px) {
  .wq__title {
    font-size: 1.2rem;
  }

  .wq__opt {
    padding: 0.65rem 0.8rem;
  }

  .wq__bonus {
    padding: 0.55rem 0.65rem;
  }

  .wq__body {
    padding-block: 0.65rem;
  }
}

@media (max-width: 380px) {
  .wq-fab {
    font-size: 0.68rem;
    padding-inline: 0.7rem;
    gap: 0.35rem;
  }

  .wq-fab__dot {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
  }

  .wq-teaser {
    padding: 0.75rem 1.9rem 0.75rem 0.8rem;
  }

  .wq-teaser__list strong {
    font-size: 0.75rem;
  }

  .wq__screen--start .wq__title {
    font-size: 0.9rem;
    letter-spacing: -0.035em;
  }

  .wq__bonus strong {
    font-size: 0.75rem;
  }
}
