﻿:root {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-text-primary: #25242a;
  --color-text-secondary: #6e6871;
  --color-border: #ded9d2;
  --color-accent: #0c7f6c;
  --color-cta-bg: #222e64;
  --color-cta-text: #ffffff;
  --color-wb: #7b2e59;
  --color-wb-hover: #642547;
  --color-rating: #b08b4a;
  --color-sale: #d57a74;
  --color-brand-deep: #222e64;
  --color-accent-plum: #7b2e59;
  --color-accent-emerald: #0c7f6c;
  --color-accent-cobalt: #2d56a8;
  --color-accent-coral: #d57a74;
  --color-accent-gold: #b08b4a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text-primary);
  font-family: "Inter", Arial, sans-serif;
}

body.modal-open {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
}

.header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.header__container {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 90px;
}

.header__logo img {
  display: block;
  max-height: 44px;
  width: auto;
}

.header__phone,
.header__email {
  color: var(--color-text-primary);
  font-size: 16px;
  text-decoration: none;
}

.header__phone {
  margin-left: 50px;
}

.header__email {
  color: var(--color-text-secondary);
}

.header__phone:hover,
.header__email:hover {
  color: var(--color-accent);
}

.header__button {
  margin-left: auto;
  border: 1px solid var(--color-cta-bg);
  background: var(--color-cta-bg);
  color: var(--color-cta-text);
  border-radius: 8px;
  padding: 12px 22px;
  font-size: 15px;
  cursor: pointer;
}

.header__button:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  background-image: url("../img/hero-lux.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.62) 0%, rgba(17, 17, 17, 0.42) 45%, rgba(17, 17, 17, 0.52) 100%);
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero__content {
  width: 100%;
  max-width: none;
  text-align: center;
  padding: 20px 0;
}

.hero__eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  text-wrap: balance;
}

.hero__subtitle {
  margin: 16px auto 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.5;
}

.hero__actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.hero__btn {
  min-width: 188px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero__btn--primary {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: var(--color-text-primary);
}

.hero__btn--primary:hover {
  background: #f2f2f2;
  border-color: #f2f2f2;
}

.hero__btn--secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #ffffff;
}

.hero__btn--secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.benefits {
  padding: 62px 0 74px;
}

.benefits__title {
  margin: 0 0 20px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.1;
  color: var(--color-text-primary);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 18px 16px 16px;
}

.benefit-card__icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(12, 127, 108, 0.25);
  border-radius: 10px;
  color: var(--color-accent);
}

.benefit-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card__name {
  margin: 12px 0 6px;
  font-size: 17px;
  line-height: 1.25;
  color: var(--color-text-primary);
}

.benefit-card__text {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.42;
}

.promo {
  padding: 0 0 76px;
}

.promo__inner {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 30px;
  background: linear-gradient(128deg, #111111 0%, #171717 52%, #2f6f5e 138%);
  color: #ffffff;
}

.promo__inner::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  opacity: 0.45;
  pointer-events: none;
}

.promo__eyebrow {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.promo__title {
  margin: 12px 0 0;
  max-width: 22ch;
  font-size: clamp(28px, 3.1vw, 46px);
  line-height: 1.05;
}

.promo__text {
  margin: 14px 0 0;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.45;
}

.promo__meta {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.promo-timer {
  display: grid;
  gap: 8px;
}

.promo-timer__label {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.promo-timer__items {
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-timer__item {
  min-width: 56px;
  padding: 9px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 10px;
  text-align: center;
}

.promo-timer__item strong {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.promo-timer__item em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.76);
  text-transform: uppercase;
}

.promo__cta {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 12px 24px;
  border-radius: 11px;
  background: var(--color-wb);
  border: 1px solid var(--color-wb);
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.promo__cta:hover {
  background: var(--color-wb-hover);
  border-color: var(--color-wb-hover);
}

.promo--no-timer .promo__meta {
  justify-content: flex-start;
}

.categories {
  padding: 76px 0 88px;
}

.categories__eyebrow {
  margin: 0 0 22px;
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.categories__title {
  margin: 0 0 22px;
}

.categories__full {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: #ffffff;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: clamp(360px, 42vw, 800px);
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
  border-right: 1px solid var(--color-border);
  transition: transform 0.24s ease;
}

.category-card:last-child {
  border-right: 0;
}

.category-card--mint {
  background: #dce8dd;
}

.category-card--rose {
  background: #efd5d5;
}

.category-card--pearl {
  background: #ece8ea;
}

.category-card--sand {
  background: #e9dec2;
}

.category-card:hover {
  transform: translateY(-3px);
}

.category-card:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: -3px;
}

.category-card__image {
  margin: auto;
  width: min(78%, 340px);
  max-height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(30, 30, 30, 0.16));
  transition: transform 0.28s ease;
}

.category-card__content {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.18);
}

.category-card__name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.category-card__result {
  display: none;
}

.category-card__cta {
  display: none;
}

.category-card:hover .category-card__image {
  transform: translateY(-4px) scale(1.03);
}

.trust {
  padding: 0 0 86px;
}

.trust__head {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.trust__title {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
  color: var(--color-text-primary);
}

.trust__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.trust-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  white-space: nowrap;
}

.trust-summary__stars {
  color: var(--color-rating);
  letter-spacing: 0.02em;
}

.trust-summary__value {
  font-size: 18px;
  line-height: 1;
}

.trust-summary__meta {
  color: var(--color-text-secondary);
  font-size: 13px;
}

.trust__actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.trust__all-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid var(--color-wb);
  background: var(--color-wb);
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(123, 46, 89, 0.28);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.trust__all-link:hover {
  background: var(--color-wb-hover);
  border-color: var(--color-wb-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(100, 37, 71, 0.3);
}

.trust__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-card {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 14px;
  padding: 16px;
}

.trust-card__text {
  margin: 0;
  color: var(--color-text-primary);
  font-size: 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trust-card__footer {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.trust-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.trust-card__stars {
  color: var(--color-rating);
}

.trust-card__value {
  font-weight: 600;
  color: var(--color-text-primary);
}

.trust-card__author {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.trust-card__role {
  display: block;
  margin-top: 2px;
  color: var(--color-text-secondary);
  font-size: 13px;
}

.trust-card__source {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  color: var(--color-wb);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.trust-card__source:hover {
  color: var(--color-wb-hover);
  text-decoration: underline;
}

.pain-solution {
  padding: 14px 0 96px;
  background:
    radial-gradient(circle at 8% 14%, rgba(123, 46, 89, 0.08), transparent 30%),
    radial-gradient(circle at 92% 84%, rgba(45, 86, 168, 0.08), transparent 30%),
    linear-gradient(180deg, #fbf9fd 0%, #f2edf7 100%);
}

.compare__title {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.12;
  color: var(--color-text-primary);
}

.compare-split-wrap {
  display: grid;
  gap: 14px;
}

.compare-split {
  --split: 52%;
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  min-height: 420px;
  height: min(74vh, 760px);
}

.compare-split__image {
  position: absolute;
  inset: 0;
}

.compare-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.compare-split__image--after {
  clip-path: inset(0 0 0 var(--split));
}

.compare-split__chips {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.compare-split__chip {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(17, 17, 17, 0.32);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-split__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  transform: translateX(-1px);
  background: rgba(255, 255, 255, 0.86);
  z-index: 4;
  pointer-events: none;
}

.compare-split__handle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(17, 17, 17, 0.62);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.compare-split__handle::before,
.compare-split__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
}

.compare-split__handle::before {
  left: 9px;
  transform: translateY(-50%) rotate(-135deg);
}

.compare-split__handle::after {
  right: 9px;
}

.compare-split__range {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}

.compare-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.compare-note {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 14px;
  background: #ffffff;
}

.compare-note--before {
  background: linear-gradient(180deg, #fff6f6 0%, #fffafb 100%);
}

.compare-note--after {
  background: linear-gradient(180deg, #f4fff8 0%, #f9fffc 100%);
}

.compare-note__title {
  margin: 0;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.1;
  color: var(--color-text-primary);
}

.compare-note__list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.compare-note__list li {
  position: relative;
  padding-left: 14px;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.4;
}

.compare-note__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-plum);
}

.compare-note--after .compare-note__list li::before {
  background: var(--color-accent-emerald);
}

.compare__actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.compare__cta {
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid var(--color-cta-bg);
  background: var(--color-cta-bg);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.compare__cta:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.faq {
  padding: 0 0 94px;
}

.faq__title {
  margin: 0 0 16px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
  color: var(--color-text-primary);
}

.faq__list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 12px;
  overflow: clip;
}

.faq-item__trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--color-text-primary);
  text-align: left;
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-item__trigger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.faq-item__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #8f8f8f;
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, opacity 0.22s ease, background-color 0.22s ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon::before,
.faq-item.is-open .faq-item__icon::after {
  background: var(--color-accent);
}

.faq-item.is-open .faq-item__icon::after {
  opacity: 0;
}

.faq-item__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, opacity 0.22s ease;
}

.faq-item__inner {
  padding: 0 18px 16px;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.5;
}

.contact {
  padding: 0 0 86px;
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: start;
}

.contact__content {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.contact__title {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.1;
  color: var(--color-text-primary);
}

.contact__text {
  margin: 10px 0 0;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.5;
}

.contact__quick {
  margin-top: 4px;
  display: grid;
  gap: 10px;
}

.contact__quick-item {
  margin: 0;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #ffffff;
  text-decoration: none;
}

.contact__quick-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.contact__quick-value {
  color: var(--color-text-primary);
  font-size: 15px;
  line-height: 1.35;
}

a.contact__quick-item:hover .contact__quick-value {
  color: var(--color-accent);
}

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 22px;
  display: grid;
  gap: 10px;
}

.contact-form__label {
  color: var(--color-text-primary);
  font-size: 14px;
  font-weight: 600;
}

.contact-form__input {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--color-text-primary);
  padding: 10px 12px;
  font: inherit;
  font-size: 15px;
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(12, 127, 108, 0.16);
}

.contact-form__input.is-invalid,
.callback-modal__input.is-invalid {
  border-color: #c62f3e;
  box-shadow: 0 0 0 3px rgba(198, 47, 62, 0.14);
}

.contact-form__button {
  margin-top: 4px;
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--color-cta-bg);
  border-radius: 10px;
  background: var(--color-cta-bg);
  color: #ffffff;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form__button:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.contact-form__button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.form-error {
  margin-top: -4px;
  color: #b22535;
  font-size: 12px;
  line-height: 1.3;
}

.form-captcha {
  margin-top: 4px;
}

.form-captcha.is-invalid {
  border-radius: 10px;
  box-shadow: 0 0 0 3px rgba(198, 47, 62, 0.14);
}

.form-status {
  margin: 2px 0 0;
  min-height: 18px;
  font-size: 13px;
  line-height: 1.35;
}

.form-status--success {
  color: #12603f;
}

.form-status--error {
  color: #b22535;
}

.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 18px;
}

.callback-modal[hidden] {
  display: none;
}

.callback-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 18, 32, 0.62);
  backdrop-filter: blur(2px);
}

.callback-modal__dialog {
  position: relative;
  width: min(100%, 460px);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-surface);
  padding: 24px 22px 20px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.callback-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-text-primary);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.callback-modal__title {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 30px);
  line-height: 1.1;
  color: var(--color-text-primary);
}

.callback-modal__text {
  margin: 10px 0 0;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.5;
}

.callback-modal__form {
  margin-top: 14px;
  display: grid;
  gap: 9px;
}

.callback-modal__label {
  color: var(--color-text-primary);
  font-size: 13px;
  font-weight: 600;
}

.callback-modal__input {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--color-text-primary);
  padding: 10px 12px;
  font: inherit;
  font-size: 15px;
}

.callback-modal__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(12, 127, 108, 0.16);
}

.callback-modal__submit {
  margin-top: 6px;
}

.footer {
  margin-top: 12px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.footer__top {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__logo img {
  display: block;
  max-height: 40px;
  width: auto;
}

.footer__contacts {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer__contact {
  color: var(--color-text-primary);
  font-size: 15px;
  text-decoration: none;
}

.footer__contact:hover {
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding: 14px 0 18px;
}

.footer__copy {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 13px;
}

.products {
  padding: 0 0 96px;
}

.products__head {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.products__title {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-primary);
}

.products__controls {
  display: none;
  align-items: center;
  gap: 8px;
}

.products__control {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-primary);
  border-radius: 999px;
  font-size: 18px;
  cursor: pointer;
}

.products__control:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.products__control:disabled {
  opacity: 0.4;
  cursor: default;
}

.products__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card__image-link {
  display: block;
  aspect-ratio: 1 / 1;
  background: #f1f1ed;
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.03);
}

.product-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text-primary);
  min-height: calc(1.35em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__rating {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.product-card__stars {
  color: var(--color-rating);
  letter-spacing: 0.02em;
}

.product-card__rating-value {
  color: var(--color-text-primary);
  font-weight: 600;
}

.product-card__benefit {
  margin: 10px 0 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.45;
  min-height: calc(1.45em * 3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__cta {
  margin-top: auto;
  min-height: 46px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--color-wb);
  border: 1px solid var(--color-wb);
  color: var(--color-cta-text);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.product-card__cta:hover {
  background: var(--color-wb-hover);
  border-color: var(--color-wb-hover);
}

.text-rating {
  color: var(--color-rating);
}

.text-sale {
  color: var(--color-sale);
}

@media (max-width: 768px) {
  .header__container {
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0;
  }

  .header__phone {
    margin-left: 0;
  }

  .header__button {
    margin-left: 0;
  }

  .hero {
    min-height: 620px;
  }

  .hero__content {
    padding: 16px 0;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__btn {
    width: 100%;
    min-width: 0;
  }

  .categories {
    padding: 52px 0 64px;
  }

  .benefits {
    padding: 48px 0 56px;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .promo {
    padding: 0 0 62px;
  }

  .promo__inner {
    padding: 24px 18px;
  }

  .promo__text {
    font-size: 16px;
  }

  .promo__cta {
    width: 100%;
  }

  .categories__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .trust {
    padding: 0 0 62px;
  }

  .trust__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust__actions {
    justify-content: stretch;
  }

  .trust__all-link {
    width: 100%;
  }

  .pain-solution {
    padding: 0 0 64px;
  }

  .compare-split {
    min-height: 320px;
    height: min(58vh, 480px);
  }

  .compare-split__chips {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .compare-notes {
    grid-template-columns: 1fr;
  }

  .compare-note {
    padding: 14px;
  }

  .compare-note__title {
    font-size: 19px;
  }

  .compare__cta {
    width: 100%;
  }

  .faq {
    padding: 0 0 70px;
  }

  .faq-item__trigger {
    font-size: 16px;
    padding: 15px 14px;
  }

  .faq-item__inner {
    padding: 0 14px 14px;
    font-size: 14px;
  }

  .contact {
    padding: 0 0 62px;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact__content,
  .contact-form {
    padding: 18px 14px;
  }

  .footer__top {
    min-height: 0;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer__contacts {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .category-card {
    height: clamp(320px, 76vw, 520px);
  }

  .category-card__content {
    min-height: 62px;
    padding: 10px 14px;
  }

  .category-card__name {
    font-size: 14px;
  }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-split {
    min-height: 380px;
    height: min(62vh, 620px);
  }

  .products {
    padding: 0 0 84px;
  }

  .products__controls {
    display: inline-flex;
  }

  .trust__viewport {
    overflow: hidden;
  }

  .trust__track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .trust__track::-webkit-scrollbar {
    height: 6px;
  }

  .trust__track::-webkit-scrollbar-thumb {
    background: #d0d0cc;
    border-radius: 999px;
  }

  .trust-card {
    flex: 0 0 calc(50% - 6px);
    scroll-snap-align: start;
  }

  .products__viewport {
    overflow: hidden;
  }

  .products__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .products__track::-webkit-scrollbar {
    height: 6px;
  }

  .products__track::-webkit-scrollbar-thumb {
    background: #d0d0cc;
    border-radius: 999px;
  }

  .product-card {
    flex: 0 0 calc(50% - 7px);
    scroll-snap-align: start;
  }
}

@media (max-width: 680px) {
  .products {
    padding: 0 0 64px;
  }

  .trust-card {
    flex-basis: 84%;
  }

  .product-card {
    flex-basis: 84%;
  }
}

@media (max-width: 520px) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }
}

/* Premium theme overrides */
body.theme-lux {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-text-primary: #25242a;
  --color-text-secondary: #6e6871;
  --color-border: #ded9d2;
  --color-accent: #0c7f6c;
  --color-cta-bg: #222e64;
  --color-cta-text: #ffffff;
  --color-gold: #b08b4a;
  --color-gold-soft: #d4b27a;
  --shadow-soft: 0 14px 34px rgba(24, 28, 50, 0.1);
  --shadow-strong: 0 22px 56px rgba(24, 28, 50, 0.18);
  --space-section-desktop: 88px;
  --space-section-mobile: 58px;
  --space-title-gap: 24px;
  background: #ffffff;
  color: var(--color-text-primary);
  overflow-x: hidden;
}

body.theme-lux::before {
  content: none;
}

body.theme-lux .hero__title,
body.theme-lux .benefits__title,
body.theme-lux .promo__title,
body.theme-lux .products__title,
body.theme-lux .trust__title,
body.theme-lux .compare__title,
body.theme-lux .faq__title,
body.theme-lux .contact__title {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

body.theme-lux .container {
  padding: 0 20px;
}

body.theme-lux a,
body.theme-lux button {
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease, opacity 0.24s ease;
}

body.theme-lux .header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(245, 243, 240, 0.88);
  border-bottom: 1px solid rgba(34, 46, 100, 0.16);
  backdrop-filter: blur(12px);
}

body.theme-lux .header__container {
  min-height: 94px;
  padding: 10px 0;
}

body.theme-lux .header__logo img {
  max-height: 46px;
  filter: drop-shadow(0 8px 18px rgba(18, 14, 10, 0.18));
}

body.theme-lux .header__phone,
body.theme-lux .header__email {
  font-size: 15px;
  font-weight: 500;
}

body.theme-lux .header__button {
  border-radius: 999px;
  padding: 12px 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  border-color: rgba(123, 46, 89, 0.36);
  background: linear-gradient(135deg, #1c2758 0%, #222e64 52%, #7b2e59 100%);
  box-shadow: 0 12px 28px rgba(24, 28, 50, 0.28);
}

body.theme-lux .header__button:hover {
  transform: translateY(-1px);
  border-color: rgba(123, 46, 89, 0.55);
  background: linear-gradient(135deg, #17214a 0%, #1d2860 56%, #6a274d 100%);
  box-shadow: 0 16px 32px rgba(24, 28, 50, 0.34);
}

body.theme-lux .hero {
  min-height: 760px;
  margin: 0;
  border-radius: 0;
  background-position: center 44%;
  box-shadow: var(--shadow-strong);
}

body.theme-lux .hero::before {
  background:
    linear-gradient(102deg, rgba(18, 24, 51, 0.56) 0%, rgba(18, 24, 51, 0.4) 46%, rgba(18, 24, 51, 0.26) 100%),
    radial-gradient(circle at 70% 18%, rgba(123, 46, 89, 0.14), rgba(123, 46, 89, 0) 30%);
}

body.theme-lux .hero__content {
  max-width: 980px;
  margin: 0 auto;
}

body.theme-lux .hero__eyebrow {
  color: rgba(248, 246, 242, 0.92);
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 600;
}

body.theme-lux .hero__title {
  font-size: 70px;
  line-height: 0.92;
  color: #f8f6f2;
  text-wrap: balance;
}

body.theme-lux .hero__subtitle {
  max-width: 820px;
  color: rgba(248, 246, 242, 0.86);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.62;
}

body.theme-lux .hero__actions {
  margin-top: 36px;
  gap: 12px;
}

body.theme-lux .hero__btn {
  min-height: 52px;
  border-radius: 999px;
  min-width: 202px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.theme-lux .hero__btn--primary {
  border-color: rgba(45, 86, 168, 0.38);
  background: linear-gradient(135deg, #ffffff 0%, #edf3ff 100%);
  color: #2d56a8;
  box-shadow: 0 10px 22px rgba(45, 86, 168, 0.2);
}

body.theme-lux .hero__btn--primary:hover {
  transform: translateY(-2px);
  border-color: #8ab0ff;
  background: linear-gradient(135deg, #4b7de4 0%, #6f9cff 100%);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(79, 122, 231, 0.46);
}

body.theme-lux .hero__btn--secondary {
  border-color: rgba(123, 46, 89, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, #f8eef4 100%);
  color: #7b2e59;
  box-shadow: 0 10px 22px rgba(123, 46, 89, 0.2);
}

body.theme-lux .hero__btn--secondary:hover {
  transform: translateY(-2px);
  border-color: #e8a8cd;
  background: linear-gradient(135deg, #b94a89 0%, #da6ca5 100%);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(185, 74, 137, 0.44);
}

body.theme-lux .benefits,
body.theme-lux .categories,
body.theme-lux .products,
body.theme-lux .trust,
body.theme-lux .promo,
body.theme-lux .pain-solution,
body.theme-lux .faq,
body.theme-lux .contact {
  position: relative;
}

body.theme-lux .products,
body.theme-lux .categories,
body.theme-lux .trust,
body.theme-lux .promo,
body.theme-lux .pain-solution,
body.theme-lux .benefits,
body.theme-lux .faq {
  padding: var(--space-section-desktop) 0;
}

body.theme-lux .benefits__title,
body.theme-lux .products__title,
body.theme-lux .trust__title,
body.theme-lux .compare__title,
body.theme-lux .faq__title,
body.theme-lux .contact__title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.98;
}

body.theme-lux .benefits {
  isolation: isolate;
}

body.theme-lux .benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 241, 234, 0.9) 58%, rgba(255, 255, 255, 0.92) 100%),
    radial-gradient(circle at 10% 8%, rgba(45, 86, 168, 0.14), transparent 34%),
    radial-gradient(circle at 92% 10%, rgba(123, 46, 89, 0.16), transparent 32%),
    url("../img/category-body.jpg") center 34% / cover no-repeat;
  border: none;
  z-index: -1;
}

body.theme-lux .benefits .container {
  position: relative;
  z-index: 1;
}

body.theme-lux .benefits__title {
  margin: 0 0 26px;
  max-width: 16ch;
}

body.theme-lux .benefits__grid {
  gap: 18px;
  counter-reset: benefit-card;
}

body.theme-lux .benefit-card {
  --benefit-accent: #2d56a8;
  --benefit-accent-tint: rgba(45, 86, 168, 0.16);
  --benefit-accent-border: rgba(45, 86, 168, 0.42);
  --benefit-accent-soft-bg: rgba(45, 86, 168, 0.14);
  --benefit-accent-shadow: rgba(45, 86, 168, 0.24);
  position: relative;
  overflow: hidden;
  min-height: 188px;
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 14px;
  align-content: start;
  border-radius: 22px;
  border-color: rgba(34, 46, 100, 0.12);
  padding: 22px 20px 20px;
  counter-increment: benefit-card;
  background:
    radial-gradient(circle at 84% 0%, var(--benefit-accent-tint), transparent 44%),
    linear-gradient(180deg, #ffffff 0%, #f8f4ee 100%);
  box-shadow: 0 14px 34px rgba(24, 28, 50, 0.1);
}

body.theme-lux .benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--benefit-accent) 0%, rgba(255, 255, 255, 0.9) 100%);
  opacity: 0.85;
}

body.theme-lux .benefit-card::after {
  content: counter(benefit-card, decimal-leading-zero);
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(34, 46, 100, 0.14);
  line-height: 1;
}

body.theme-lux .benefit-card:nth-child(2) {
  --benefit-accent: #7b2e59;
  --benefit-accent-tint: rgba(123, 46, 89, 0.16);
  --benefit-accent-border: rgba(123, 46, 89, 0.44);
  --benefit-accent-soft-bg: rgba(123, 46, 89, 0.14);
  --benefit-accent-shadow: rgba(123, 46, 89, 0.26);
}

body.theme-lux .benefit-card:nth-child(3) {
  --benefit-accent: #0c7f6c;
  --benefit-accent-tint: rgba(12, 127, 108, 0.16);
  --benefit-accent-border: rgba(12, 127, 108, 0.44);
  --benefit-accent-soft-bg: rgba(12, 127, 108, 0.14);
  --benefit-accent-shadow: rgba(12, 127, 108, 0.24);
}

body.theme-lux .benefit-card:nth-child(4) {
  --benefit-accent: #b08b4a;
  --benefit-accent-tint: rgba(176, 139, 74, 0.18);
  --benefit-accent-border: rgba(176, 139, 74, 0.46);
  --benefit-accent-soft-bg: rgba(176, 139, 74, 0.16);
  --benefit-accent-shadow: rgba(176, 139, 74, 0.26);
}

body.theme-lux .benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--benefit-accent-border);
  box-shadow: 0 20px 44px rgba(24, 28, 50, 0.18);
}

body.theme-lux .benefit-card__icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  border-color: var(--benefit-accent-border);
  background: linear-gradient(160deg, #ffffff 0%, var(--benefit-accent-soft-bg) 100%);
  color: var(--benefit-accent);
  box-shadow: 0 8px 18px var(--benefit-accent-shadow);
}

body.theme-lux .benefit-card__name {
  grid-column: 2;
  margin: 0 42px 8px 0;
  font-size: 19px;
  line-height: 1.24;
}

body.theme-lux .benefit-card__text {
  grid-column: 2;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #5f5b65;
}

body.theme-lux .promo__inner {
  border-radius: 26px;
  border: 1px solid rgba(123, 46, 89, 0.22);
  padding: 34px 34px 32px;
  background:
    radial-gradient(circle at 78% 12%, rgba(123, 46, 89, 0.24), rgba(123, 46, 89, 0) 36%),
    linear-gradient(125deg, #1a2453 0%, #222e64 56%, #0c7f6c 126%);
  box-shadow: var(--shadow-strong);
}

body.theme-lux .promo__eyebrow {
  letter-spacing: 0.14em;
  font-size: 11px;
}

body.theme-lux .promo__title {
  margin-top: 14px;
  max-width: 20ch;
}

body.theme-lux .promo__cta {
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(123, 46, 89, 0.26);
}

body.theme-lux .promo__text {
  margin-top: 16px;
}

body.theme-lux .promo__meta {
  margin-top: 24px;
}

body.theme-lux .categories__title {
  margin: 0 0 var(--space-title-gap);
}

body.theme-lux .categories__eyebrow {
  color: #6e6871;
  letter-spacing: 0.14em;
  font-size: 11px;
}

body.theme-lux .category-card {
  border-radius: 0;
  box-shadow: none;
  border-right-color: rgba(34, 46, 100, 0.16);
}

body.theme-lux .category-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

body.theme-lux .category-card__name {
  font-size: 15px;
  letter-spacing: 0.14em;
}

body.theme-lux .category-card__result {
  display: none;
}

body.theme-lux .category-card__cta {
  display: none;
}

body.theme-lux .products__head {
  margin-bottom: var(--space-title-gap);
}

body.theme-lux .products__control {
  border-color: rgba(34, 46, 100, 0.24);
  background: #f8f6fb;
}

body.theme-lux .product-card {
  border-radius: 18px;
  border-color: rgba(34, 46, 100, 0.16);
  box-shadow: 0 12px 28px rgba(24, 28, 50, 0.1);
}

body.theme-lux .product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

body.theme-lux .product-card__body {
  padding: 18px;
}

body.theme-lux .product-card__title {
  font-size: 17px;
}

body.theme-lux .product-card__cta {
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(123, 46, 89, 0.25);
}

body.theme-lux .trust__head {
  margin-bottom: var(--space-title-gap);
}

body.theme-lux .trust-summary {
  border-color: rgba(34, 46, 100, 0.18);
  background: #faf8fd;
  box-shadow: 0 8px 20px rgba(24, 28, 50, 0.08);
}

body.theme-lux .trust__all-link {
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.theme-lux .trust-card {
  border-radius: 16px;
  border-color: rgba(34, 46, 100, 0.14);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(24, 28, 50, 0.07);
}

body.theme-lux .pain-solution {
  background:
    radial-gradient(circle at 10% 12%, rgba(123, 46, 89, 0.12), transparent 30%),
    radial-gradient(circle at 88% 86%, rgba(45, 86, 168, 0.12), transparent 32%),
    linear-gradient(180deg, #f7f4fb 0%, #eee8f5 100%);
}

body.theme-lux .compare-split,
body.theme-lux .compare-note {
  border-radius: 18px;
  border-color: rgba(34, 46, 100, 0.16);
  box-shadow: 0 14px 30px rgba(24, 28, 50, 0.1);
}

body.theme-lux .compare-split {
  background: #ffffff;
}

body.theme-lux .compare-note--before {
  background: linear-gradient(180deg, #fff6fa 0%, #fffbfd 100%);
}

body.theme-lux .compare-note--after {
  background: linear-gradient(180deg, #f5fff9 0%, #fbfffd 100%);
}

body.theme-lux .compare-split__line {
  background: rgba(255, 255, 255, 0.92);
}

body.theme-lux .compare-split__handle {
  border-color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, #222e64 0%, #7b2e59 100%);
  box-shadow: 0 12px 28px rgba(24, 28, 50, 0.42);
}

body.theme-lux .compare-split__chip {
  border-color: rgba(255, 255, 255, 0.66);
  background: rgba(34, 46, 100, 0.46);
}

body.theme-lux .compare-note__title {
  color: #222e64;
}

body.theme-lux .compare-note__list li {
  color: #6e6871;
}

body.theme-lux .compare__title {
  margin: 0 0 var(--space-title-gap);
}

body.theme-lux .compare-split-wrap {
  gap: 18px;
}

body.theme-lux .compare__actions {
  margin-top: 18px;
}

body.theme-lux .compare__cta {
  min-height: 50px;
  border-radius: 999px;
  padding: 12px 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

body.theme-lux .faq {
  isolation: isolate;
}

body.theme-lux .faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(45, 86, 168, 0.12), transparent 30%),
    radial-gradient(circle at 88% 24%, rgba(123, 46, 89, 0.14), transparent 32%),
    linear-gradient(180deg, #f8f4ee 0%, #f3eee6 100%);
  z-index: -1;
}

body.theme-lux .faq .container {
  position: relative;
  z-index: 1;
}

body.theme-lux .faq__title {
  margin: 0 0 var(--space-title-gap);
}

body.theme-lux .faq__list {
  max-width: 980px;
  margin: 0 auto;
  gap: 12px;
}

body.theme-lux .faq-item {
  position: relative;
  border-radius: 20px;
  border-color: rgba(34, 46, 100, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(251, 248, 243, 0.94) 100%);
  box-shadow: 0 12px 28px rgba(24, 28, 50, 0.09);
}

body.theme-lux .faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #2d56a8 0%, #7b2e59 100%);
  opacity: 0.42;
  transition: width 0.24s ease, opacity 0.24s ease;
}

body.theme-lux .faq-item:hover {
  border-color: rgba(45, 86, 168, 0.26);
  box-shadow: 0 16px 34px rgba(24, 28, 50, 0.14);
}

body.theme-lux .faq-item:hover::before,
body.theme-lux .faq-item.is-open::before {
  width: 6px;
  opacity: 0.9;
}

body.theme-lux .faq-item.is-open {
  border-color: rgba(45, 86, 168, 0.32);
  box-shadow: 0 18px 36px rgba(24, 28, 50, 0.15);
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f1ea 100%);
}

body.theme-lux .faq-item__trigger {
  padding: 19px 22px;
  font-size: 18px;
  line-height: 1.34;
}

body.theme-lux .faq-item__trigger:focus-visible {
  outline: 2px solid rgba(45, 86, 168, 0.45);
  outline-offset: 2px;
}

body.theme-lux .faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(45, 86, 168, 0.28);
  background: linear-gradient(145deg, #ffffff 0%, #f0f4ff 100%);
  box-shadow: 0 8px 18px rgba(24, 28, 50, 0.12);
}

body.theme-lux .faq-item__icon::before,
body.theme-lux .faq-item__icon::after {
  width: 12px;
  background: #2d56a8;
}

body.theme-lux .faq-item.is-open .faq-item__icon {
  border-color: rgba(123, 46, 89, 0.48);
  background: linear-gradient(145deg, #7b2e59 0%, #9a3f72 100%);
}

body.theme-lux .faq-item.is-open .faq-item__icon::before,
body.theme-lux .faq-item.is-open .faq-item__icon::after {
  background: #ffffff;
}

body.theme-lux .faq-item__content {
  border-top: none;
  background: transparent;
}

body.theme-lux .faq-item__inner {
  padding: 0 22px 22px;
  font-size: 15px;
  line-height: 1.56;
}

body.theme-lux .contact {
  padding: var(--space-section-desktop) 0 98px;
}

body.theme-lux .contact__layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
}

body.theme-lux .contact__content,
body.theme-lux .contact-form {
  border-radius: 18px;
  border-color: rgba(34, 46, 100, 0.14);
  box-shadow: var(--shadow-soft);
  background:
    radial-gradient(circle at 100% 0%, rgba(123, 46, 89, 0.12), transparent 32%),
    #fffefd;
}

body.theme-lux .contact__content {
  max-width: 460px;
  justify-self: start;
  padding: 24px;
  gap: 14px;
}

body.theme-lux .contact-form {
  padding: 24px;
  gap: 12px;
}

body.theme-lux .contact__text {
  font-size: 17px;
  line-height: 1.56;
  margin-top: 6px;
}

body.theme-lux .contact__quick {
  margin-top: 10px;
  gap: 8px;
}

body.theme-lux .contact__quick-item {
  padding: 11px 13px;
  border-radius: 13px;
  border-color: rgba(34, 46, 100, 0.18);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f4ee 100%);
}

body.theme-lux .contact__quick-label {
  color: #6e6871;
}

body.theme-lux .contact__quick-value {
  color: #222e64;
}

body.theme-lux a.contact__quick-item:hover {
  border-color: rgba(45, 86, 168, 0.34);
  box-shadow: 0 8px 16px rgba(24, 28, 50, 0.1);
}

body.theme-lux a.contact__quick-item:hover .contact__quick-value {
  color: #2d56a8;
}

body.theme-lux .contact__quick-item--muted {
  border-style: dashed;
  border-color: rgba(34, 46, 100, 0.24);
  background: rgba(255, 255, 255, 0.7);
}

body.theme-lux .contact-form__label {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.theme-lux .contact-form__input {
  border-radius: 12px;
  border-color: rgba(34, 46, 100, 0.2);
  background: #fffdff;
}

body.theme-lux .contact-form__button {
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

body.theme-lux .callback-modal__dialog {
  border-radius: 20px;
  border-color: rgba(34, 46, 100, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(123, 46, 89, 0.12), transparent 32%),
    #fffefd;
  box-shadow: 0 28px 64px rgba(13, 16, 35, 0.38);
}

body.theme-lux .callback-modal__close {
  border-color: rgba(34, 46, 100, 0.2);
  background: linear-gradient(160deg, #ffffff 0%, #f6f3f8 100%);
  color: #222e64;
}

body.theme-lux .callback-modal__close:hover {
  border-color: rgba(123, 46, 89, 0.36);
  color: #7b2e59;
}

body.theme-lux .callback-modal__title {
  color: #222e64;
}

body.theme-lux .callback-modal__label {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.theme-lux .callback-modal__input {
  border-radius: 12px;
  border-color: rgba(34, 46, 100, 0.2);
  background: #fffdff;
}

body.theme-lux .contact-form__input.is-invalid,
body.theme-lux .callback-modal__input.is-invalid {
  border-color: rgba(177, 42, 69, 0.78);
  box-shadow: 0 0 0 3px rgba(177, 42, 69, 0.14);
}

body.theme-lux .form-error {
  color: #9f2748;
  letter-spacing: 0.01em;
}

body.theme-lux .form-captcha.is-invalid {
  box-shadow: 0 0 0 3px rgba(177, 42, 69, 0.15);
}

body.theme-lux .form-status {
  font-size: 12px;
  letter-spacing: 0.01em;
}

body.theme-lux .form-status--success {
  color: #1b6a58;
}

body.theme-lux .form-status--error {
  color: #9f2748;
}

body.theme-lux .callback-modal__submit {
  width: 100%;
}

/* Use product-card CTA style as a unified base across all site CTAs */
body.theme-lux .header__button,
body.theme-lux .hero__btn--primary,
body.theme-lux .hero__btn--secondary,
body.theme-lux .promo__cta,
body.theme-lux .product-card__cta,
body.theme-lux .trust__all-link,
body.theme-lux .compare__cta,
body.theme-lux .contact-form__button,
body.theme-lux .category-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--color-wb);
  background: var(--color-wb);
  color: var(--color-cta-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(123, 46, 89, 0.25);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

body.theme-lux .header__button:hover,
body.theme-lux .hero__btn--primary:hover,
body.theme-lux .hero__btn--secondary:hover,
body.theme-lux .promo__cta:hover,
body.theme-lux .product-card__cta:hover,
body.theme-lux .trust__all-link:hover,
body.theme-lux .compare__cta:hover,
body.theme-lux .contact-form__button:hover,
body.theme-lux .category-card__cta:hover {
  transform: translateY(-1px);
  background: var(--color-wb-hover);
  border-color: var(--color-wb-hover);
  color: var(--color-cta-text);
  box-shadow: 0 12px 24px rgba(123, 46, 89, 0.32);
}

body.theme-lux .header__button:focus-visible,
body.theme-lux .hero__btn--primary:focus-visible,
body.theme-lux .hero__btn--secondary:focus-visible,
body.theme-lux .promo__cta:focus-visible,
body.theme-lux .product-card__cta:focus-visible,
body.theme-lux .trust__all-link:focus-visible,
body.theme-lux .compare__cta:focus-visible,
body.theme-lux .contact-form__button:focus-visible,
body.theme-lux .category-card__cta:focus-visible {
  outline: 2px solid rgba(123, 46, 89, 0.42);
  outline-offset: 2px;
}

body.theme-lux .footer {
  margin-top: 0;
  border-top: 1px solid rgba(34, 46, 100, 0.18);
  background:
    radial-gradient(circle at 70% -20%, rgba(123, 46, 89, 0.14), transparent 38%),
    linear-gradient(180deg, #f3efea 0%, #e6e0d8 100%);
}

body.theme-lux .footer__top {
  min-height: 108px;
}

body.theme-lux .footer__logo img {
  max-height: 44px;
}

body.theme-lux .footer__contact {
  font-size: 14px;
  letter-spacing: 0.03em;
}

body.theme-lux .footer__copy {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.theme-lux .hero__content,
body.theme-lux .benefits__grid > *,
body.theme-lux .promo__inner,
body.theme-lux .categories__grid > *,
body.theme-lux .products__head,
body.theme-lux .trust__head,
body.theme-lux .compare__title,
body.theme-lux .faq__title,
body.theme-lux .contact__layout {
  animation: lux-fade-up 0.7s ease both;
}

body.theme-lux .benefits__grid > *:nth-child(2),
body.theme-lux .categories__grid > *:nth-child(2),
body.theme-lux .categories__grid > *:nth-child(4) {
  animation-delay: 0.08s;
}

@keyframes lux-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.theme-lux .hero__content,
  body.theme-lux .benefits__grid > *,
  body.theme-lux .promo__inner,
  body.theme-lux .categories__grid > *,
  body.theme-lux .products__head,
  body.theme-lux .trust__head,
  body.theme-lux .compare__title,
  body.theme-lux .faq__title,
  body.theme-lux .contact__layout {
    animation: none;
  }
}

@media (max-width: 1100px) {
  body.theme-lux .hero {
    margin: 0;
    border-radius: 0;
    min-height: 700px;
  }

  body.theme-lux .hero__title {
    font-size: clamp(40px, 8vw, 66px);
  }

  body.theme-lux .compare-note__title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  body.theme-lux .container {
    padding: 0 16px;
  }

  body.theme-lux .header {
    background: rgba(245, 243, 240, 0.96);
    backdrop-filter: blur(8px);
  }

  body.theme-lux .header__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "logo phone"
      "email email"
      "button button";
    align-items: center;
    gap: 10px 14px;
    min-height: 0;
    padding: 20px 20px 14px;
  }

  body.theme-lux .header__logo {
    grid-area: logo;
  }

  body.theme-lux .header__logo img {
    max-height: 36px;
  }

  body.theme-lux .header__phone {
    grid-area: phone;
    margin-left: 0;
    justify-self: end;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    color: #222e64;
    padding: 2px 0;
  }

  body.theme-lux .header__email {
    grid-area: email;
    margin-left: 0;
    font-size: 13px;
    line-height: 1.35;
    color: #6e6871;
    overflow-wrap: anywhere;
    padding-bottom: 2px;
  }

  body.theme-lux .header__button {
    grid-area: button;
    width: 100%;
    min-height: 44px;
    padding: 11px 14px;
    margin-top: 2px;
  }

  body.theme-lux .benefits::before {
    inset: 0;
    border-radius: 0;
  }

  body.theme-lux .benefit-card {
    min-height: 0;
    padding: 18px 16px;
    grid-template-columns: 42px 1fr;
    column-gap: 12px;
  }

  body.theme-lux .benefit-card::after {
    font-size: 24px;
    top: 12px;
    right: 12px;
  }

  body.theme-lux .benefit-card__icon {
    width: 42px;
    height: 42px;
  }

  body.theme-lux .benefit-card__name {
    margin-right: 34px;
    font-size: 18px;
  }

  body.theme-lux .hero {
    margin: 0;
    border-radius: 0;
    min-height: 560px;
  }

  body.theme-lux .hero__content {
    padding: 24px 0;
  }

  body.theme-lux .hero__title {
    font-size: clamp(34px, 10vw, 56px);
    line-height: 0.96;
  }

  body.theme-lux .hero__subtitle {
    font-size: 15px;
  }

  body.theme-lux .hero__actions {
    margin-top: 22px;
    gap: 10px;
  }

  body.theme-lux .products__controls,
  body.theme-lux .trust__controls {
    display: inline-flex;
  }

  body.theme-lux .products__viewport,
  body.theme-lux .trust__viewport {
    overflow: hidden;
  }

  body.theme-lux .products__track,
  body.theme-lux .trust__track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  body.theme-lux .products__track::-webkit-scrollbar,
  body.theme-lux .trust__track::-webkit-scrollbar {
    height: 6px;
  }

  body.theme-lux .products__track::-webkit-scrollbar-thumb,
  body.theme-lux .trust__track::-webkit-scrollbar-thumb {
    background: rgba(34, 46, 100, 0.24);
    border-radius: 999px;
  }

  body.theme-lux .product-card,
  body.theme-lux .trust-card {
    flex: 0 0 calc(100% - 2px);
    min-height: 0;
    scroll-snap-align: start;
  }

  body.theme-lux .hero__btn,
  body.theme-lux .promo__cta,
  body.theme-lux .category-card__cta,
  body.theme-lux .product-card__cta,
  body.theme-lux .trust__all-link,
  body.theme-lux .compare__cta,
  body.theme-lux .contact-form__button {
    width: 100%;
  }

  body.theme-lux .benefits,
  body.theme-lux .categories,
  body.theme-lux .products,
  body.theme-lux .trust,
  body.theme-lux .promo,
  body.theme-lux .pain-solution,
  body.theme-lux .faq {
    padding: var(--space-section-mobile) 0;
  }

  body.theme-lux .contact {
    padding: var(--space-section-mobile) 0 74px;
  }

  body.theme-lux .benefits__title,
  body.theme-lux .products__title,
  body.theme-lux .trust__title,
  body.theme-lux .compare__title,
  body.theme-lux .faq__title,
  body.theme-lux .contact__title {
    font-size: clamp(30px, 9vw, 44px);
  }

  body.theme-lux .products__head,
  body.theme-lux .trust__head,
  body.theme-lux .compare__title,
  body.theme-lux .faq__title {
    margin-bottom: 18px;
  }

  body.theme-lux .promo__inner {
    padding: 24px 18px;
  }

  body.theme-lux .category-card {
    height: clamp(250px, 74vw, 340px);
  }

  body.theme-lux .category-card__image {
    width: min(72%, 260px);
    max-height: 68%;
  }

  body.theme-lux .compare-split {
    min-height: 280px;
    height: min(52vh, 360px);
  }

  body.theme-lux .compare-split__chips {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  body.theme-lux .compare-split__chip {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 10px;
  }

  body.theme-lux .compare-split__handle {
    width: 38px;
    height: 38px;
  }

  body.theme-lux .faq__list {
    gap: 10px;
  }

  body.theme-lux .faq-item {
    border-radius: 16px;
  }

  body.theme-lux .faq-item__trigger {
    padding: 16px 16px 16px 18px;
    font-size: 16px;
  }

  body.theme-lux .faq-item__icon {
    width: 28px;
    height: 28px;
  }

  body.theme-lux .faq-item__inner {
    padding: 0 18px 16px;
    font-size: 14px;
  }

  body.theme-lux .contact__content {
    max-width: none;
    padding: 18px 16px;
    gap: 10px;
  }

  body.theme-lux .contact-form {
    padding: 18px 16px;
    gap: 10px;
  }

  body.theme-lux .contact__layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.theme-lux .contact__quick-item {
    padding: 10px 12px;
  }

  body.theme-lux .contact__quick-value {
    overflow-wrap: anywhere;
  }

  body.theme-lux .callback-modal {
    padding: 12px;
  }

  body.theme-lux .callback-modal__dialog {
    padding: 20px 16px 16px;
    border-radius: 16px;
  }

  body.theme-lux .callback-modal__title {
    font-size: clamp(22px, 7.4vw, 28px);
  }

  body.theme-lux .callback-modal__text {
    font-size: 14px;
  }

  body.theme-lux .callback-modal__close {
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
  }

  body.theme-lux .callback-modal__submit {
    min-height: 44px;
  }
}

.form-consents {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
}

.form-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  color: rgba(16, 24, 40, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.form-consent__input {
  margin: 2px 0 0;
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent);
}

.form-consent a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent a:hover {
  text-decoration-thickness: 2px;
}

.form-consent.is-invalid {
  color: #b22535;
}

.form-consent.is-invalid .form-consent__input {
  outline: 2px solid rgba(198, 47, 62, 0.4);
  outline-offset: 2px;
}

.form-consents--modal .form-consent {
  color: rgba(27, 31, 42, 0.72);
}

.footer__legal {
  display: flex;
  gap: 12px 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__legal-link {
  font-size: 13px;
  color: rgba(17, 24, 39, 0.78);
  text-decoration: none;
}

.footer__legal-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.theme-lux .footer__legal-link {
  color: rgba(63, 56, 49, 0.84);
}

@media (max-width: 820px) {
  .footer__legal {
    justify-content: flex-start;
  }
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(26, 33, 48, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 30px rgba(10, 15, 24, 0.34);
}

.cookie-banner__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: #f8d9b5;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__button {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  min-height: 40px;
  font-size: 13px;
  font-weight: 700;
  color: #1b2231;
  background: #f8d9b5;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.cookie-banner__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(248, 217, 181, 0.4);
}

.cookie-banner[hidden] {
  display: none !important;
}

@media (max-width: 820px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    align-items: flex-start;
    flex-direction: column;
    padding: 12px;
    gap: 10px;
  }

  .cookie-banner__button {
    width: 100%;
  }
}

