/* ===================== TOKENS ===================== */
:root {
  --bg: #F4F6FD;
  --surface: #FFFFFF;
  --surface-soft: #F4F7FF;
  --text: #070B1D;
  --text-muted: #5B6275;
  --border: #E5E8F3;
  --accent: #1D2BFF;
  --accent-2: #4A57FF;
  --accent-soft: #EEF0FF;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 16px;
  --shadow-soft: 0 24px 60px -30px rgba(30, 33, 80, 0.25);
  --shadow-card: 0 18px 40px -24px rgba(30, 33, 80, 0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px 64px;
}

/* ===================== HEADER ===================== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 80px;
  padding: 0 8px;
}

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

.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text); }
.logo__icon { color: var(--accent); display: flex; }
.logo__icon svg { width: 26px; height: 26px; }
.logo__text { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; }

.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1D2BFF, #4A57FF);
  color: #fff;
  border: none;
  border-radius: 13px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 12px 26px -12px rgba(29, 43, 255, 0.7);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-catalog svg { width: 19px; height: 19px; }
.btn-catalog:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(29, 43, 255, 0.8); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #2A2F45;
  font-size: 15px;
  font-weight: 600;
  transition: color .15s ease;
}
.nav a:hover { color: var(--accent); }
.nav__drop svg { width: 15px; height: 15px; opacity: .7; }

.header__actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: none;
  background: transparent;
  color: #2A2F45;
  border-radius: 12px;
  transition: background .15s ease, color .15s ease;
}
.icon-btn svg { width: 21px; height: 21px; }
.icon-btn:hover { background: var(--accent-soft); color: var(--accent); }

/* ===================== HERO (slider) ===================== */
.accent { color: var(--accent); }

.hero2 {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 16px;
  padding: 46px 0 46px;
  background: var(--bg);
  overflow: hidden;
}
.hero2__inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero2__wave {
  position: absolute;
  left: 0; right: 0; top: 255px;
  width: 100%; height: 300px;
  z-index: 1;
  pointer-events: none;
  background-image: url("assets/hero/wave.png?v=2");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}
.hero2__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  gap: 20px;
  min-height: 468px;
}
.hero2__left { max-width: 560px; }
.hero2__title {
  font-size: clamp(34px, 3.7vw, 52px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #0B1533;
}
.hero2__title span { display: block; }
.hero2__title .accent { margin-top: 6px; }
.hero2__lead {
  margin: 24px 0 0;
  max-width: 480px;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--text-muted);
}
.hero2__cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: nowrap; }
.hero2__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 58px; padding: 0 22px; border-radius: 13px;
  font-size: 16px; font-weight: 700; text-decoration: none; white-space: nowrap;
  transition: transform .16s ease, box-shadow .2s ease;
}
.hero2__btn svg { width: 20px; height: 20px; }
.hero2__btn--primary {
  background: linear-gradient(135deg, #2E5BFF, #4A57FF);
  color: #fff;
  box-shadow: 0 18px 34px -16px rgba(46, 91, 255, 0.7);
}
.hero2__btn--ghost {
  background: #fff; color: var(--accent);
  border: 1.5px solid #C9D7FF;
}
.hero2__btn:hover { transform: translateY(-2px); }

.hero2__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.hero2__stagewrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.hero2__stage {
  position: relative;
  width: 100%;
  height: 460px;
}
.hero2__slide {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  margin: 0 auto;
  width: auto; height: auto;
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  object-position: bottom;
  transform-origin: bottom center;
  filter: drop-shadow(0 20px 15px rgba(15, 23, 42, 0.26));
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}
.hero2__slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* dishwasher ~10% smaller, feet aligned with fridge */
.hero2__slide[data-slide="dishwasher"] {
  max-width: 90%;
  max-height: 90%;
}
/* washer a bit smaller still */
.hero2__slide[data-slide="washer"] {
  max-width: 81%;
  max-height: 81%;
}
/* coffee machine a bit smaller still */
.hero2__slide[data-slide="coffee"] {
  max-width: 74%;
  max-height: 74%;
}
.hero2__chips {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: none;
  width: 198px;
}
.hero2__chip {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: #fff; border: 1px solid var(--border); border-radius: 15px;
  box-shadow: 0 10px 26px -20px rgba(15, 23, 42, .35);
}
.hero2__chip-ic {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px; background: #F4F7FF; color: var(--accent);
}
.hero2__chip-ic svg { width: 22px; height: 22px; }
.hero2__chip-tx { display: flex; flex-direction: column; line-height: 1.3; }
.hero2__chip-tx strong { font-size: 14px; font-weight: 700; color: var(--text); }
.hero2__chip-tx span { font-size: 12.5px; color: var(--text-muted); }

.hero2__controls {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: center; gap: 26px;
}
.hero2__arrow {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; border: 1px solid #E4EAF5; color: var(--text);
  cursor: pointer; transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.hero2__arrow svg { width: 20px; height: 20px; }
.hero2__arrow:hover { background: var(--accent-soft); border-color: #C9D7FF; color: var(--accent); }
.hero2__dots { display: flex; align-items: center; gap: 12px; }
.hero2__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #fff; border: 1.5px solid #C5D0E6; cursor: pointer; padding: 0;
  transition: background .15s ease, border-color .15s ease, width .2s ease;
}
.hero2__dot.is-active { background: var(--accent); border-color: var(--accent); width: 26px; border-radius: 6px; }

/* ---------- Category rail (slider triggers) ---------- */
.catrail {
  position: relative;
  z-index: 5;
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.catrail__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 13px 15px;
  min-height: 100px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  text-align: left; cursor: pointer;
  box-shadow: 0 14px 30px -22px rgba(15, 23, 42, .45);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.catrail__card:hover { transform: translateY(-2px); }
.catrail__card.is-active {
  border-color: rgba(46, 91, 255, .5);
  box-shadow: 0 16px 34px -22px rgba(46, 91, 255, .6);
}
.catrail__tx { display: flex; flex-direction: column; min-width: 0; }
.catrail__tx strong { font-size: 15px; font-weight: 700; color: #101828; line-height: 1.2; }
.catrail__tx span { margin-top: 6px; font-size: 12px; line-height: 1.35; color: var(--text-muted); }
.catrail__tx svg { width: 18px; height: 18px; margin-top: 10px; color: var(--text); }
.catrail__card img { width: 74px; height: 66px; object-fit: contain; }
.catrail__card[data-target="washer"] img { transform: translateY(-4px); }
.catrail__card[data-target="dishwasher"] img { transform: translateY(-9px); }
.catrail__card[data-target="coffee"] img { transform: translateY(-9px); }

@media (max-width: 1024px) {
  .hero2 { padding: 32px 0 24px; }
  .hero2__grid { grid-template-columns: 1fr; gap: 10px; min-height: 0; }
  .hero2__right { margin-top: 8px; }
  .hero2__stage { height: 340px; }
  .hero2__wave { top: 40%; height: 34%; opacity: .9; }
  .catrail { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .hero2 { padding: 26px 0 22px; }
  .hero2__inner { padding: 0 30px; }
  .hero2__wave { top: 30%; height: 20%; }
  .hero2__lead { font-size: 15.5px; margin-top: 18px; }
  .hero2__cta { gap: 12px; margin-top: 22px; flex-direction: column; }
  .hero2__btn { width: 100%; }
  .hero2__right { flex-direction: column; gap: 14px; }
  .hero2__stage { flex: none; height: 250px; width: 100%; }
  .hero2__chips { flex-direction: row; width: 100%; gap: 8px; }
  .hero2__chip {
    flex: 1 1 0; min-width: 0;
    flex-direction: column; align-items: center; text-align: center; gap: 6px;
    padding: 12px 6px;
  }
  .hero2__chip-tx { align-items: center; line-height: 1.25; }
  .hero2__chip-tx strong { font-size: 12.5px; }
  .hero2__chip-tx span { font-size: 11px; }
  .catrail { margin-top: 14px; padding: 0; }
  .catrail__card img { width: 78px; height: 70px; }
}
@media (max-width: 520px) {
  .catrail { grid-template-columns: 1fr; }
}

/* ===================== ASSORTMENT ===================== */
.assortment {
  margin-top: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #FFFFFF 0%, #FBFCFF 100%);
  padding: 34px 38px 36px;
  box-shadow: var(--shadow-soft);
}

.label {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.assortment__title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  background: #FCFDFF;
  border: 1px solid #E3E8F5;
  border-radius: 24px;
  min-height: 296px;
  box-shadow: 0 10px 30px -22px rgba(30, 33, 80, 0.4);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: #D8DCF0;
}
.card__media {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 16px 16px 68px;
}
.card__media img {
  max-height: 100%; max-width: 96%;
  width: auto; height: auto; object-fit: contain;
}
.card--coffee .card__media img { max-height: 80%; max-width: 78%; }
.card__label {
  position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: calc(100% - 96px);
  min-height: 78px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: #FFFFFF;
  border: 1px solid #EDF1FA; border-bottom: 0;
  border-radius: 24px 24px 0 0;
  padding: 16px 20px 14px;
  text-align: center;
  box-shadow: 0 -8px 20px rgba(15, 23, 42, 0.03);
}
.card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.18;
  color: var(--text);
}
.card__sub {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--text-muted);
}

.assortment__footer {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.brands { display: flex; align-items: flex-start; gap: 12px; font-size: 21px; font-weight: 500; line-height: 1.4; color: #111827; }
.brands strong { font-weight: 700; color: #0F172A; }
.brands-sub { display: flex; align-items: flex-start; gap: 12px; margin-top: 12px; font-size: 17px; font-weight: 400; line-height: 1.45; color: #6B7280; }
.brands-ic {
  flex-shrink: 0; width: 30px; height: 30px;
  display: grid; place-items: center; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  margin-top: 1px;
}
.brands-ic svg { width: 18px; height: 18px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  background: var(--surface);
  color: var(--accent);
  border: 1.5px solid #D4D7F0;
  border-radius: 14px;
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 700;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.btn-outline svg { width: 20px; height: 20px; }
.btn-outline:hover { background: var(--accent-soft); border-color: var(--accent); transform: translateY(-2px); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
  .hero__content { max-width: 50%; }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }
  .hero__content { width: 100%; max-width: 100%; padding: 40px 28px 6px; }
  .hero__stage {
    position: relative;
    top: auto; right: auto; bottom: auto; left: auto;
    width: 100%; height: 320px;
  }
  .hero__stage img { width: min(86%, 520px); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(2)::before { display: none; }
  .benefit:nth-child(3) { border-top: 1px solid #E8EBF5; }
  .benefit:nth-child(4) { border-top: 1px solid #E8EBF5; }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page { padding: 14px 30px 40px; }
  .header { height: auto; padding: 6px 4px; flex-wrap: wrap; gap: 14px; }
  .header__actions .icon-btn:nth-child(2),
  .header__actions .icon-btn:nth-child(3) { display: none; }
  .hero { border-radius: 22px; }
  .hero__content { padding: 30px 20px 4px; }
  .hero__stage { height: 260px; }
  .hero__subtitle { font-size: 30px; }
  .btn-primary { width: 100%; }
  .assortment { padding: 28px 20px 32px; border-radius: 22px; }
  .assortment__title { font-size: 34px; }
  .assortment__footer { flex-direction: column; align-items: flex-start; }
  .btn-outline { width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
  /* --- HEADER: single top row — logo left, burger + search + cart right --- */
  .header { flex-wrap: nowrap; gap: 8px; height: auto; padding: 6px 2px; align-items: center; }
  .header__left { display: contents; }
  .logo { margin-right: auto; }
  .logo__text { font-size: 17px; white-space: nowrap; }
  .btn-catalog { font-size: 0; gap: 0; padding: 0; width: 40px; height: 40px; justify-content: center; border-radius: 12px; flex-shrink: 0; }
  .btn-catalog svg { width: 20px; height: 20px; }
  .header__actions { gap: 4px; flex-shrink: 0; }
  .icon-btn { width: 36px; height: 36px; }

  /* --- HERO: text, then image, then button at the bottom --- */
  .hero { flex-direction: column; align-items: stretch; padding: 26px 22px 22px; background: #F4F4FE; }
  .hero__glow { display: none; }
  .hero__content { display: contents; }
  .hero__title { margin-bottom: 10px; }
  .hero__subtitle { font-size: 27px; line-height: 1.2; margin-bottom: 16px; }
  .hero__desc { font-size: 15.5px; margin-bottom: 4px; }
  .hero__stage {
    order: 8; position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    top: auto; left: auto; right: auto; bottom: auto;
    width: 100%; height: 292px; margin: 2px 0 -26px;
  }
  .hero__stage img {
    position: static; top: auto; left: auto; transform: none;
    width: auto; max-width: 100%; max-height: 100%;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 6%, #000 88%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 6%, #000 88%, transparent 100%);
    mask-composite: intersect;
  }
  .btn-primary { order: 9; width: 100%; margin: 0; position: relative; z-index: 2; }

  /* --- BENEFITS: compact 3-in-a-row --- */
  .benefits { grid-template-columns: repeat(3, 1fr); }
  .benefit { flex-direction: column; align-items: center; text-align: center; gap: 7px; padding: 13px 6px; }
  .benefit::before { display: none !important; }
  .benefit__icon { width: 38px; height: 38px; border-radius: 10px; }
  .benefit__icon svg { width: 20px; height: 20px; }
  .benefit__text { align-items: center; line-height: 1.22; }
  .benefit__text strong { font-size: 12px; }
  .benefit__text span { font-size: 10.5px; }

  /* --- ASSORTMENT: bigger photos, label overlaps photo slightly --- */
  .assortment { padding: 26px 15px 28px; }
  .assortment__title { font-size: 30px; }
  .cards { grid-template-columns: 1fr; gap: 14px; }
  .card { min-height: 208px; border-radius: 18px; }
  .card__media { padding: 16px 20px 32px; }
  .card__media img { max-width: 90%; }
  .card__label { width: calc(100% - 72px); min-height: 48px; padding: 12px 16px; border-radius: 16px 16px 0 0; }
  .card__title { font-size: 16px; line-height: 1.2; letter-spacing: -0.01em; }
  .card__sub { font-size: 12px; margin-top: 3px; }

  .brands { font-size: 15px; gap: 10px; }
  .brands strong { font-weight: 700; }
  .brands-sub { font-size: 13px; gap: 10px; margin-top: 10px; }
  .brands-ic { width: 26px; height: 26px; }
  .brands-ic svg { width: 15px; height: 15px; }
}

/* ===================== ABOUT ===================== */
.about {
  margin-top: 18px;
  padding: 40px 44px 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.about__label {
  display: inline-block;
  font-size: 15px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.about__title {
  max-width: 960px;
  font-size: clamp(22px, 2.1vw, 31px);
  line-height: 1.15; letter-spacing: -0.03em; font-weight: 800;
  color: #0F172A; margin-bottom: 28px;
}
.about__title .accent { color: var(--accent); }
.about__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.about-item {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 14px 36px -26px rgba(15, 23, 42, 0.42);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.about-item:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 43, 255, 0.22);
  box-shadow: 0 22px 46px -24px rgba(29, 43, 255, 0.35);
}
.about-item-media {
  width: 100%; display: block;
  object-fit: cover; object-position: center;
  background: #EEF2FF;
}
.about-item--tall .about-item-media { height: 188px; }
.about-item--small .about-item-media { height: 172px; }
.about-item-body { padding: 18px 24px 22px; }
.about-item-text {
  margin: 0;
  font-size: 16.5px; line-height: 1.45; font-weight: 500; color: #253047;
}
.about-item-text.is-long { font-size: 15.5px; line-height: 1.5; }
.about-item-text.is-collapse {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.about-toggle {
  margin-top: 10px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0; border: none; background: none; cursor: pointer;
  font-family: inherit; font-size: 14.5px; font-weight: 700;
  color: var(--accent);
}
.about-toggle svg { width: 16px; height: 16px; transition: transform .2s ease; }
.about-toggle.is-open svg { transform: rotate(180deg); }

@media (max-width: 1024px) {
  .about { padding: 40px 30px 42px; }
  .about-item-text { font-size: 16.5px; }
  .about-item-text.is-long { font-size: 15.5px; }
}
@media (max-width: 767px) {
  .about { padding: 28px 18px; border-radius: 22px; }
  .about__title { font-size: 28px; margin-bottom: 22px; }
  .about__grid { gap: 14px; }
  .about-item { border-radius: 18px; }
  .about-item--tall .about-item-media,
  .about-item--small .about-item-media { height: 148px; }
  .about-item-body { padding: 14px 16px 16px; }
  .about-item-text, .about-item-text.is-long { font-size: 13.5px; line-height: 1.42; }
}
@media (max-width: 560px) {
  .about { padding: 24px 15px; }
  .about__title { font-size: 26px; }
  .about__grid { grid-template-columns: 1fr; gap: 14px; }
  .about-item--tall .about-item-media,
  .about-item--small .about-item-media { height: 176px; }
  .about-item-body { padding: 16px 18px 18px; }
  .about-item-text, .about-item-text.is-long { font-size: 15px; line-height: 1.48; }
}

/* ===================== WHY US ===================== */
.why {
  margin-top: 18px;
  padding: 44px 44px 50px;
  background: radial-gradient(circle at 50% 0%, rgba(29, 43, 255, 0.05), rgba(255, 255, 255, 0) 42%), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.why__label {
  display: inline-block;
  font-size: 15px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.why__title {
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.06; font-weight: 800; letter-spacing: -0.04em;
  color: #0E1328; margin-bottom: 38px;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.why-card {
  display: flex; flex-direction: column; align-items: flex-start;
  min-height: 336px;
  padding: 26px 22px 28px;
  background: linear-gradient(180deg, #FFFFFF, #FBFCFF);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 16px 44px -30px rgba(17, 24, 39, 0.5);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(29, 43, 255, 0.24);
  box-shadow: 0 26px 58px -26px rgba(29, 43, 255, 0.42);
}
.why-card__icon {
  width: 70px; height: 70px; border-radius: 16px;
  background: linear-gradient(135deg, #EEF0FF 0%, #F8F9FF 100%);
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: 24px;
}
.why-card__icon svg { width: 36px; height: 36px; }
.why-card__title {
  font-size: 18px; line-height: 1.25; font-weight: 800; letter-spacing: -0.02em;
  color: #0E1328; margin-bottom: 16px;
}
.why-card__line {
  width: 38px; height: 2px; border-radius: 999px;
  background: rgba(29, 43, 255, 0.28); margin-bottom: 18px;
}
.why-card__text {
  font-size: 14.5px; line-height: 1.55; font-weight: 500; color: #667085; margin: 0;
}

@media (max-width: 1280px) {
  .why__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .why-card { min-height: 340px; }
}
@media (max-width: 860px) {
  .why { padding: 34px 22px 38px; border-radius: 22px; }
  .why__title { font-size: 32px; margin-bottom: 26px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .why-card { min-height: auto; padding: 20px 18px 22px; border-radius: 16px; }
  .why-card__icon { width: 52px; height: 52px; border-radius: 12px; margin-bottom: 16px; }
  .why-card__icon svg { width: 26px; height: 26px; }
  .why-card__title { font-size: 16px; margin-bottom: 10px; }
  .why-card__line { width: 32px; margin-bottom: 12px; }
  .why-card__text { font-size: 13px; line-height: 1.45; }
}
@media (max-width: 380px) {
  .why__grid { gap: 10px; }
  .why-card { padding: 16px 14px 18px; }
  .why-card__title { font-size: 15px; }
}

/* ===================== HOW TO BUY ===================== */
.howbuy {
  margin-top: 18px;
  padding: 46px 44px 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.howbuy__label {
  font-size: 15px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); text-align: center;
}
.howbuy__title {
  margin-top: 14px;
  font-size: clamp(30px, 2.4vw, 42px);
  line-height: 1.12; font-weight: 800; letter-spacing: -0.04em;
  color: #111827; text-align: center;
}
.howbuy__line {
  width: 120px; height: 2px; margin: 22px auto 0;
  background: var(--accent); border-radius: 999px;
}
.howbuy__steps {
  position: relative;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px; margin-top: 84px;
}
.howbuy__steps::before {
  content: ""; position: absolute; left: 11%; right: 11%; top: -24px;
  border-top: 2px dashed #D7DDF0; z-index: 0;
}
.step-card {
  position: relative;
  padding: 22px 22px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 14px 40px -30px rgba(15, 23, 42, 0.5);
  text-align: center;
}
.step-num {
  position: absolute; top: -58px; left: 50%; transform: translateX(-50%);
  width: 66px; height: 66px; display: grid; place-items: center;
  border-radius: 50%; background: #fff; border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  color: var(--accent); font-size: 26px; font-weight: 800; z-index: 2;
}
.step-photo {
  display: block; width: 100%; height: 150px;
  object-fit: cover; border-radius: 16px; margin-bottom: 24px;
}
.step-title {
  font-size: 20px; line-height: 1.28; font-weight: 800; letter-spacing: -0.02em;
  color: #111827;
}
.step-desc {
  margin-top: 18px; font-size: 15px; line-height: 1.55; font-weight: 500; color: #6B7280;
}
.howbuy__cta {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 40px auto 0; width: min(100%, 440px); height: 72px;
  border: none; border-radius: 14px;
  background: linear-gradient(180deg, #2732FF 0%, var(--accent) 100%);
  box-shadow: 0 18px 36px -10px rgba(29, 43, 255, 0.42);
  color: #fff; font-size: 21px; font-weight: 800; cursor: pointer;
  font-family: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}
.howbuy__cta svg { width: 24px; height: 24px; }
.howbuy__cta:hover { transform: translateY(-2px); box-shadow: 0 24px 46px -12px rgba(29, 43, 255, 0.52); }
.howbuy__note {
  margin-top: 18px; display: flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 15px; font-weight: 600; color: #6B7280;
}
.howbuy__note svg { width: 18px; height: 18px; }

@media (max-width: 1180px) {
  .howbuy__steps { grid-template-columns: repeat(2, 1fr); row-gap: 78px; }
  .howbuy__steps::before { display: none; }
}
@media (max-width: 640px) {
  .howbuy { padding: 32px 18px 34px; border-radius: 22px; }
  .howbuy__title { font-size: 30px; }
  .howbuy__line { margin-top: 18px; }
  .howbuy__steps { grid-template-columns: 1fr; gap: 14px; margin-top: 26px; }
  .step-card { padding: 14px 16px 18px; }
  .step-num {
    top: 12px; left: 12px; transform: none;
    width: 44px; height: 44px; font-size: 18px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
  }
  .step-photo { height: 152px; margin-bottom: 16px; }
  .step-title { font-size: 18px; }
  .step-desc { margin-top: 10px; font-size: 14px; line-height: 1.5; }
  .howbuy__cta { height: 60px; font-size: 18px; margin-top: 30px; }
}

/* ===================== DELIVERY & PAYMENT ===================== */
.delivery {
  margin-top: 18px;
  padding: 44px 44px 46px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.delivery__layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 44px;
  align-items: center;
}
.delivery__title {
  margin: 0 0 34px;
  font-size: clamp(30px, 2.6vw, 44px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0F172A;
}
.delivery__groups {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.delivery__group {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}
.delivery__icon { width: 58px; height: 58px; flex-shrink: 0; }
.delivery__icon img { width: 100%; height: 100%; display: block; }
.delivery__group-title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F172A;
}
.delivery__list { margin: 0; padding: 0; list-style: none; }
.delivery__list li {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  color: #1F2937;
}
.delivery__list li + li { margin-top: 6px; }
.delivery__visual {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  display: block;
}

@media (max-width: 900px) {
  .delivery__layout { grid-template-columns: 1fr; gap: 28px; }
  .delivery__visual { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 767px) {
  .delivery { padding: 26px 20px 28px; border-radius: 22px; }
  .delivery__title { font-size: 30px; margin-bottom: 24px; }
  .delivery__groups { gap: 24px; }
  .delivery__group { grid-template-columns: 50px 1fr; gap: 14px; }
  .delivery__icon { width: 50px; height: 50px; }
  .delivery__group-title { font-size: 19px; }
  .delivery__list li { font-size: 15.5px; }
  .delivery__visual { max-width: 380px; }
}

/* ===================== WARRANTY & SERVICE ===================== */
.warranty {
  margin-top: 18px;
  padding: 44px 44px 46px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.warranty__title {
  margin: 0 0 34px;
  font-size: clamp(30px, 2.6vw, 44px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0F172A;
}
.warranty__list { display: flex; flex-direction: column; gap: 26px; }
.warranty__item { display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: center; }
.warranty__icon { width: 58px; height: 58px; flex-shrink: 0; }
.warranty__icon img { width: 100%; height: 100%; display: block; }
.warranty__text {
  margin: 0;
  max-width: 920px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
  color: #121826;
}

@media (max-width: 767px) {
  .warranty { padding: 26px 20px 28px; border-radius: 22px; }
  .warranty__title { font-size: 30px; margin-bottom: 22px; }
  .warranty__list { gap: 20px; }
  .warranty__item { grid-template-columns: 50px 1fr; gap: 14px; }
  .warranty__icon { width: 50px; height: 50px; }
  .warranty__text { font-size: 15.5px; line-height: 1.5; }
}

/* ===================== FAQ ===================== */
.faq {
  margin-top: 18px;
  padding: 44px 44px 46px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.faq__layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}
.faq__title {
  margin: 0 0 26px;
  font-size: clamp(30px, 2.6vw, 44px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0F172A;
}
.faq__art { margin-top: 8px; }
.faq__art svg { width: 100%; max-width: 400px; height: auto; display: block; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--surface);
  border: 1.5px solid #D5DBEF;
  border-radius: 16px;
  padding: 2px 22px;
  box-shadow: 0 6px 20px -16px rgba(15, 23, 42, 0.35);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item:hover {
  border-color: rgba(36, 56, 255, 0.4);
}
.faq__item[open] {
  border-color: rgba(36, 56, 255, 0.55);
  box-shadow: 0 16px 36px -20px rgba(36, 56, 255, 0.45);
}
.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0F172A;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  flex-shrink: 0;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  color: var(--accent);
}
.faq__item[open] .faq__q::after { content: "−"; }
.faq__a {
  margin: 0;
  padding: 0 0 20px;
  max-width: 660px;
  font-size: 15.5px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .faq { padding: 26px 20px 28px; border-radius: 22px; }
  .faq__layout { grid-template-columns: 1fr; gap: 20px; }
  .faq__title { font-size: 30px; margin-bottom: 14px; }
  .faq__art { display: flex; justify-content: center; }
  .faq__art svg { max-width: 210px; }
  .faq__item { padding: 2px 16px; }
  .faq__q { font-size: 15.5px; padding: 15px 0; gap: 12px; }
  .faq__q::after { font-size: 24px; }
  .faq__a { font-size: 14.5px; padding-bottom: 16px; }
}

/* ===== Block 9 — Contacts / CTA ===== */
.contact {
  margin-top: 18px;
  padding: 52px 52px 54px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 56px;
  align-items: center;
}
.contact__eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent-soft);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact__title {
  margin: 20px 0 0;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.contact__title span { color: var(--accent); }
.contact__desc {
  margin: 22px 0 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--text-muted);
}
.contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 14px 26px 14px 14px;
  background: #FBFCFF;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.contact__phone-icon {
  width: 56px;
  height: 56px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__phone-icon img { width: 100%; height: 100%; display: block; }
.contact__phone-text span {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}
.contact__phone-text strong {
  display: block;
  margin-top: 2px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

.contact__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 1px solid var(--border);
  padding-left: 52px;
}
.contact__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  order: 2;
  gap: 14px;
  height: 88px;
  border-radius: 18px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.contact__btn img { width: 40px; height: 40px; display: block; }
.contact__btn:hover { transform: translateY(-2px); }
.contact__btn--primary {
  background: linear-gradient(180deg, #2E43FF 0%, #1626F0 100%);
  color: #fff;
  box-shadow: 0 18px 34px -14px rgba(29, 50, 255, 0.45);
}
.contact__btn--secondary {
  background: var(--surface);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.contact__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  order: 1;
  margin-bottom: 4px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
}
.contact__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 132px;
  padding: 18px 8px;
  background: #FBFCFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
}
.contact__feature-icon { width: 44px; height: 44px; flex: none; display: flex; align-items: center; justify-content: center; }
.contact__feature-icon img { width: 100%; height: 100%; display: block; }
.contact__feature p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--text-muted);
}

@media (max-width: 1023px) {
  .contact__layout { grid-template-columns: 1fr; gap: 36px; }
  .contact__right { border-left: none; padding-left: 0; }
}
@media (max-width: 767px) {
  .contact { padding: 26px 20px 30px; border-radius: 22px; }
  .contact__title { font-size: 30px; }
  .contact__desc { font-size: 15.5px; margin-top: 16px; }
  .contact__phone { margin-top: 22px; padding: 12px 20px 12px 12px; gap: 12px; }
  .contact__phone-icon { width: 48px; height: 48px; }
  .contact__phone-text strong { font-size: 24px; }
  .contact__right { gap: 12px; }
  .contact__btn { height: 70px; font-size: 19px; gap: 12px; }
  .contact__btn img { width: 32px; height: 32px; }
  .contact__features { gap: 10px; padding-bottom: 20px; }
  .contact__feature { min-height: 118px; padding: 16px 6px; }
  .contact__feature p { font-size: 13px; }
}

/* links that render as buttons */
a.btn-catalog, a.btn-outline, a.howbuy__cta, a.catrail__card { text-decoration: none; }
a.btn-outline { display: inline-flex; align-items: center; }
a.card { text-decoration: none; color: inherit; display: block; }

/* header action badges (favourites / compare / cart) */
.header__actions .icon-btn { position: relative; }
.hdr-badge{position:absolute;top:3px;right:3px;min-width:16px;height:16px;padding:0 4px;border-radius:8px;background:#1557FF;color:#fff;font-size:10.5px;font-weight:800;line-height:1;display:none;align-items:center;justify-content:center}
.hdr-badge.on{display:inline-flex}
