/* ============================================================
   VEXTRACTE — главная v2
   Редизайн: «Ценность — VEXTRACTE», секции ТРЕНДЫ + свойства.
   Mobile-first + fluid type (clamp).
   Шрифты: Bebas Neue — заголовки/акценты, Involve — текст/подписи.
   ============================================================ */

/* ---------- self-hosted fonts ---------- */
@font-face {
  font-family: 'Bebas Neue';
  src: url('../assets/fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue';
  src: url('../assets/fonts/BebasNeue-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Involve';
  src: url('../assets/fonts/Involve-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Involve';
  src: url('../assets/fonts/Involve-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Involve';
  src: url('../assets/fonts/Involve-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Involve';
  src: url('../assets/fonts/Involve-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  /* palette */
  --bg1:        #f2edff;
  --bg2:        #e8e7fb;
  --white:      #ffffff;
  --ink:        #1b1d3a;
  --ink-soft:   #5b5e82;
  --ink-mut:    #8b8ea8;
  --purple:     #6980ff;
  --purple-2:   #5461f0;
  --violet:     #9a8bf5;

  /* ingredient card gradient */
  --card-1:     #6f79f3;
  --card-2:     #8f6ef0;

  --line:       rgba(27, 29, 58, .10);

  /* banner accents */
  --green:   #2f7d3a;
  --purple-b:#9a63c9;
  --orange:  #f2951a;

  /* layout */
  --maxw: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 26px;
  --radius-sm: 18px;

  --shadow-soft: 0 20px 50px -24px rgba(60, 50, 120, .35);
  --shadow-card: 0 30px 60px -28px rgba(60, 50, 120, .45);

  --ff:      'Involve', 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ff-head: 'Bebas Neue', 'Involve', 'Manrope', system-ui, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff);
  color: var(--ink);
  background:
    radial-gradient(120% 60% at 82% 0%, rgba(233, 190, 240, .40) 0%, rgba(233, 190, 240, 0) 55%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 34%, var(--bg2) 100%);
  background-attachment: fixed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input { font: inherit; }
h1, h2, h3, h4 { line-height: 1.05; font-weight: 800; letter-spacing: -.02em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: 13px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(84, 97, 240, .8);
}
.btn--primary:hover { background: var(--purple-2); transform: translateY(-2px); }
.btn--ghost {
  background: rgba(255, 255, 255, .16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .6);
  backdrop-filter: blur(4px);
  font-size: 13px;
  padding: 10px 18px;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .3); }

.chev { font-size: .8em; opacity: .7; }

/* pill tag */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, .55);
  margin-bottom: 22px;
}
.sec-arrow { color: var(--purple); font-weight: 700; }

/* ============================================================
   HEADER
   ============================================================ */
.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-block: 14px;
  background: rgba(242, 237, 255, .8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(27, 29, 58, .05);
}
.hdr__inner { display: flex; align-items: center; gap: 16px; }
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo img { height: 24px; width: auto; display: block; }

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  flex-wrap: nowrap;
}
.nav__link {
  padding: 8px 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 100px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav__link:hover { color: var(--ink); background: rgba(255, 255, 255, .6); }
/* Активный пункт меню — фирменный лиловый акцент. */
.nav__link.is-active {
  color: var(--purple);
  background: rgba(105, 128, 255, .12);
  font-weight: 700;
}
.nav__link.is-active:hover { color: var(--purple); background: rgba(105, 128, 255, .18); }
.nav__link--push { margin-left: auto; }
.nav__pill {
  padding: 9px 18px;
  background: var(--purple);
  color: #fff;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
  margin-right: 6px;
  white-space: nowrap;
}
.nav__pill:hover { background: var(--purple-2); }
/* Активная вкладка «Каталог» — усиленный акцент + кольцо. */
.nav__pill.is-active { background: var(--purple-2); box-shadow: 0 0 0 3px rgba(105, 128, 255, .25); }
.pill-arrow { font-size: .85em; }
/* Телефон в шапке — между «Контактами» и кнопкой консультации. */
.hdr__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.hdr__phone svg { width: 17px; height: 17px; color: var(--purple); flex-shrink: 0; }
.hdr__phone:hover { color: var(--purple); background: rgba(105, 128, 255, .1); }
.hdr__cta { flex-shrink: 0; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-block: clamp(30px, 5vw, 64px) clamp(30px, 5vw, 60px); }
.hero__inner { position: relative; }
.hero__title {
  font-family: var(--ff-head);
  font-size: clamp(56px, 10.2vw, 134px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .9;
  background: linear-gradient(178deg, var(--violet) 0%, var(--purple) 62%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 74%;
}
/* Спозиционированный потомок выпадает из background-clip:text родителя
   (баг Chrome), поэтому у span — собственный градиент, а у знака ® в хиро —
   собственный цвет. */
.hero__title > span {
  display: inline-block;
  position: relative;
  background: linear-gradient(178deg, var(--violet) 0%, var(--purple) 62%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Знак ® у надписей vextracte: 20% кегля, нижняя граница на 2px ВЫШЕ
   верхней границы слова, левый край на 4px правее слова.
   Абсолютное позиционирование от контейнера-слова (.reg-word / span хиро). */
.reg-word { position: relative; display: inline-block; }
.reg-mark {
  position: absolute;
  left: calc(100% + 4px);
  bottom: calc(100% + 2px);
  font-size: .2em;
  line-height: 1;
}
.hero__title .reg-mark { color: var(--purple); }

.search-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin-top: clamp(26px, 3.4vw, 44px);
  /* .search имеет backdrop-filter → создаёт свой stacking-context и «топит»
     выпадашку под следующие секции. Поднимаем всю обёртку над контентом
     страницы (но ниже sticky-шапки z-index:100), чтобы подсказки были сверху. */
  z-index: 50;
}
.search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .5);
  border: 1.5px solid rgba(105, 128, 255, .5);
  border-radius: 18px;
  padding: 7px 12px 7px 24px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(6px);
  width: 100%;
}
.search__icon { color: var(--purple); display: flex; flex-shrink: 0; }
.search__label { font-weight: 700; color: var(--ink); font-size: 16px; flex-shrink: 0; }
.search__input {
  flex: 1;
  border: none; outline: none; background: none;
  font-size: 16px;
  color: var(--ink);
  min-width: 0;
}
.search__input::placeholder {
  color: #a3a7e0;
  text-transform: uppercase;
  letter-spacing: .01em;
  font-weight: 600;
}
.search__btn {
  flex-shrink: 0;
  height: 38px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple); color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: background .18s, transform .18s;
}
.search__btn svg { flex-shrink: 0; }
.search__btn:hover { background: var(--purple-2); transform: translateY(-1px); }
.search__btn-short { display: none; }
/* Мобильные и планшеты: без лупы, короткая кнопка «Найти» */
@media (max-width: 1024px) {
  .search__icon { display: none; }
  .search__btn-full { display: none; }
  .search__btn-short { display: inline; }
  .search__input::placeholder { font-size: 8px; }
}

/* ============================================================
   SEARCH STRIP + SUGGEST DROPDOWN (каталог / товар)
   ============================================================ */
.search-strip {
  position: relative;
  z-index: 90; /* выше main/контента, ниже sticky-шапки (z-index:100) */
  background: rgba(242, 237, 255, .7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 29, 58, .06);
  padding: 14px 0;
}
.search-strip__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid rgba(105, 128, 255, .35);
  border-radius: 14px;
  padding: 7px 7px 7px 18px;
  box-shadow: var(--shadow-soft);
}
.search-strip__icon { width: 22px; height: 22px; color: var(--purple); flex-shrink: 0; }
.search-strip__input { flex: 1; border: none; outline: none; background: none; font-size: 15px; color: var(--ink); min-width: 0; }
.search-strip__input::placeholder { color: var(--ink-mut); }
.search-strip__btn {
  flex-shrink: 0;
  height: 40px;
  padding: 0 22px;
  background: var(--purple);
  color: #fff;
  border-radius: 10px;
  font-family: var(--ff-head);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .15s;
}
.search-strip__btn:hover { background: var(--purple-2); }

.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid rgba(27, 29, 58, .1);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 6px;
  max-height: 72vh;
  overflow-y: auto;
  z-index: 200;
  display: none;
}
.search-dropdown.is-open { display: block; }
.sd-section { padding: 8px 4px; }
.sd-section + .sd-section { border-top: 1px solid rgba(27, 29, 58, .08); }
.sd-section__title { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink-mut); font-weight: 700; padding: 4px 10px 8px; }
.sd-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 10px; }
.sd-chip { background: #efeafe; border: 1px solid rgba(27, 29, 58, .1); border-radius: 999px; padding: 6px 14px; font-size: 13px; color: var(--ink); cursor: pointer; transition: border-color .12s, color .12s, background .12s; }
.sd-chip:hover { border-color: var(--purple); color: var(--purple); background: #fff; }
.sd-item { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 11px; color: var(--ink); transition: background .12s; }
.sd-item:hover, .sd-item.is-active { background: #efeafe; }
.sd-item__icon { width: 38px; height: 38px; border-radius: 11px; background: rgba(105, 128, 255, .12); color: var(--purple); display: grid; place-items: center; flex-shrink: 0; }
.sd-item__icon svg { width: 19px; height: 19px; }
.sd-item__body { display: flex; flex-direction: column; min-width: 0; }
.sd-item__name { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.25; }
.sd-item__name mark { background: rgba(105, 128, 255, .22); color: var(--purple-2); border-radius: 3px; padding: 0 1px; }
.sd-item__meta { font-size: 12px; color: var(--ink-mut); }
.sd-show-all { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 12px; margin-top: 4px; border-top: 1px solid rgba(27, 29, 58, .08); color: var(--purple); font-weight: 600; font-size: 14px; }
.sd-show-all:hover { color: var(--purple-2); }
.sd-show-all svg { width: 16px; height: 16px; }
.sd-empty { padding: 26px 16px; text-align: center; }
.sd-empty strong { display: block; color: var(--ink); margin-bottom: 6px; font-size: 15px; }
.sd-empty p { color: var(--ink-mut); font-size: 13px; }

@media (max-width: 620px) {
  .search-strip__btn { padding: 0 16px; font-size: 14px; }
  .search-strip__input { font-size: 14px; }
}

/* hero media cluster (top-right) */
.hero__media {
  position: absolute;
  top: -4px;
  right: 0;
  width: min(46vw, 500px);
  height: 340px;
}
.hero__thumb { position: absolute; filter: drop-shadow(0 22px 38px rgba(60, 50, 120, .3)); }
.hero__thumb img { display: block; width: 100%; height: auto; }
.thumb--green { width: 196px; top: 0;    right: -26px; z-index: 2; }
.thumb--pink  { width: 128px; top: 24px; right: 198px; z-index: 3; }
.thumb--blue  { width: 208px; bottom: 0; right: 14px;  z-index: 4; }
.hero__tags {
  position: absolute;
  top: 158px; right: 60px;
  min-width: 292px;
  background: rgba(255, 255, 255, .74);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 16px;
  padding: 13px 17px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.4;
  z-index: 5;
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   GREEN BAND
   ============================================================ */
.band {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
}
.band__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20, 46, 15, .74) 0%, rgba(20, 46, 15, .34) 46%, rgba(20, 46, 15, .04) 78%);
}
.band__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding-block: clamp(40px, 6vw, 66px);
}
.band__text {
  color: #fff;
  font-size: clamp(22px, 3.3vw, 36px);
  font-weight: 300;
  letter-spacing: -.01em;
  line-height: 1.18;
  max-width: 22ch;
}
.gc-wrap { position: relative; max-width: 360px; transition: transform .2s; }
.gc-wrap:hover { transform: translateY(-3px); }
.glass-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 264px;
  padding: 28px 28px 48px;
  color: #fff;
  transition: filter .2s;
  /* Форма карточки — готовая картинка с вырезами (Subtract.png), тянется под
     размер блока. Заменяет прежний blur-фон и mask-вырезы. */
  background: url('/assets/img/v2/constructor-card-v2.png') center / 100% 100% no-repeat;
}
.glass-card:hover { filter: brightness(.98) saturate(1.05); }
.glass-card h3 { font-size: 22px; font-weight: 600; line-height: 1.15; margin-bottom: 12px; color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.35); }
.glass-card p { font-size: 14px; opacity: 1; line-height: 1.45; color: rgba(255,255,255,.92); text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.glass-card__btn {
  position: absolute;
  top: 2px; right: 2px;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--purple); color: #fff;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 20px -8px rgba(84, 97, 240, .9);
  transition: background .2s, transform .2s;
}
.glass-card__btn:hover { background: var(--purple-2); transform: scale(1.06); }

/* ============================================================
   DISCOVER — 01 ТРЕНДЫ + 02 СВОЙСТВА (+ blob)
   ============================================================ */
.discover {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 8vw, 104px);
}
.discover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 63%;
  transform: translateY(-50%);
  width: clamp(600px, 62vw, 940px);
  aspect-ratio: 598 / 1100;
  background: url('../assets/img/v2/blob.png') center / contain no-repeat;
  pointer-events: none;
  z-index: 0;
}

.sec-num {
  display: block;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 8px;
}
.sec-title {
  font-size: clamp(30px, 5vw, 58px);
  text-transform: uppercase;
  color: var(--ink);
}
.sec-title--xl { font-size: clamp(34px, 6vw, 70px); }
.sec-lead {
  margin-top: 16px;
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--ink-soft);
  max-width: 40ch;
}
.sec-lead--wide { max-width: 52ch; }

.trends {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.trends__intro { padding-top: 8px; }
/* Блок «01 Тренды»: номер и заголовок укрупнены для композиции
   (только здесь; «02 Функциональные свойства» не трогаем) */
.trends__intro .sec-num   { font-size: clamp(96px, 13vw, 160px); }
.trends__intro .sec-title { font-size: clamp(60px, 10vw, 116px); }

/* ingredient cards */
.ing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ing-card {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  background: linear-gradient(135deg, var(--card-1) 0%, var(--card-2) 100%);
  border-radius: var(--radius-sm);
  overflow: hidden;
  color: #fff;
  min-height: 116px;
  box-shadow: 0 18px 34px -22px rgba(90, 80, 200, .7);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ing-card:hover { transform: translateY(-3px); box-shadow: 0 26px 44px -22px rgba(90, 80, 200, .85); }
.ing-card__body { padding: 16px 6px 16px 18px; }
.ing-card__title { font-size: clamp(15px, 1.5vw, 18px); text-transform: uppercase; letter-spacing: -.01em; }
.ing-card__desc { margin-top: 7px; font-size: 11.5px; line-height: 1.35; opacity: .82; }
.ing-card__img {
  width: clamp(88px, 9vw, 116px);
  flex-shrink: 0;
  height: auto;
  align-self: stretch;
  object-fit: cover;
}

/* see-all link */
.see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(22px, 3vw, 34px);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color .15s, gap .15s;
}
.see-all svg { color: var(--purple); }
.see-all:hover { color: var(--ink); gap: 12px; }
.see-all--right { display: flex; width: max-content; margin-left: auto; }

/* 02 heading block — номер/заголовок/стрелка в масштабе блока «01 Тренды» */
.props-intro {
  position: relative;
  z-index: 1;
  margin-top: clamp(44px, 6vw, 84px);
  max-width: 900px;
  margin-left: clamp(0px, 24%, 320px);
  text-align: left;
}
.props-intro .sec-num   { font-size: clamp(96px, 13vw, 160px); }
.props-intro .sec-title { font-size: clamp(60px, 10vw, 116px); }
.arrow-dl {
  display: inline-block;
  margin-top: 22px;
  /* тот же шрифт/жирность, что у стрелки ↗ в заголовке «Тренды» (.sec-arrow) */
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(60px, 10vw, 116px);
  color: var(--purple);
  line-height: 1;
}

/* ============================================================
   FUNCTIONAL PROPERTIES / BANNERS (full-width rows)
   ============================================================ */
.props { padding-bottom: clamp(30px, 5vw, 56px); }
.fbanners { display: grid; gap: 16px; }
.fbanner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: clamp(150px, 18vw, 196px);
  display: flex;
  align-items: center;
  padding: clamp(26px, 4vw, 52px);
  color: #fff;
  transition: transform .22s ease;
}
.fbanner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fbanner::after { content: ""; position: absolute; inset: 0; }
.fbanner:hover { transform: translateY(-4px); }
.fbanner--green::after  { background: linear-gradient(90deg, var(--green) 6%, rgba(47, 125, 58, .72) 42%, rgba(47, 125, 58, 0) 76%); }
.fbanner--purple::after { background: linear-gradient(90deg, var(--purple-b) 6%, rgba(154, 99, 201, .7) 42%, rgba(154, 99, 201, 0) 76%); }
.fbanner--orange::after { background: linear-gradient(90deg, var(--orange) 6%, rgba(242, 149, 26, .7) 42%, rgba(242, 149, 26, 0) 76%); }
.fbanner__content { position: relative; z-index: 1; }
.fbanner__title {
  font-size: clamp(26px, 3.7vw, 46px);
  text-transform: uppercase;
  letter-spacing: -.02em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .15);
}
.fbanner .btn { margin-top: 16px; }

/* ============================================================
   IN PRODUCT
   ============================================================ */
.inprod { padding-block: clamp(30px, 5vw, 54px) clamp(56px, 8vw, 100px); }
.prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.prod-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: clamp(220px, 26vw, 300px);
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.prod-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.prod-card:hover img { transform: scale(1.05); }
.prod-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 30, 45, 0) 30%, rgba(20, 30, 45, .68) 100%); }
.prod-card__title {
  position: relative; z-index: 1;
  padding: clamp(22px, 3vw, 36px);
  font-size: clamp(24px, 3.4vw, 40px);
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .35);
}

/* ============================================================
   FOOTER (blue textured bg)
   ============================================================ */
.footer {
  position: relative;
  overflow: hidden;
  color: #e7e9ff;
  padding-block: clamp(48px, 6vw, 72px) 28px;
  isolation: isolate;
}
.footer__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.footer::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(26, 32, 130, .22) 0%, rgba(22, 28, 110, .46) 100%);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.footer .logo img { height: 30px; }
.footer__brand p { margin-top: 14px; font-size: 14px; max-width: 34ch; opacity: .8; }
.footer__col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer__col a { display: block; font-size: 14px; color: #cdd2ff; padding: 5px 0; transition: color .15s; }
.footer__col a:hover { color: #fff; }
.footer__col a.footer__cta {
  display: inline-flex; width: auto; margin-top: 14px;
  padding: 13px 22px; font-size: 15px; color: #fff;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .5);
}
.footer__col a.footer__cta:hover { background: rgba(255, 255, 255, .28); color: #fff; }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 24px; font-size: 13px; opacity: .7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav { display: none; }
  .hdr__phone { margin-left: auto; }
  .burger { display: flex; }
  .hdr { position: relative; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    padding: 16px var(--gutter) 22px;
    box-shadow: var(--shadow-card);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 90;
  }
  .nav.is-open .nav__link { padding: 12px 14px; font-size: 15px; }
  .nav.is-open .nav__link--push { margin-left: 0; }
  .nav.is-open .nav__pill { margin: 0 0 8px; align-self: flex-start; }
}

@media (max-width: 900px) {
  .hero__title { max-width: 100%; }
  .hero__media { display: none; }
  .band__inner { grid-template-columns: 1fr; }
  .band__text { max-width: 100%; }
  .glass-card { max-width: 100%; }
  .trends { grid-template-columns: 1fr; }
  .search-wrap { max-width: 100%; }
  .props-intro { margin-left: 0; max-width: 100%; }
  .discover::before { opacity: .35; left: -40%; }
}

@media (max-width: 620px) {
  :root { --radius: 20px; }
  .hdr__cta { display: none; }
  .hdr__inner { justify-content: space-between; }
  /* На узких экранах номер не влезает — оставляем кликабельную иконку-трубку */
  .hdr__phone { padding: 8px; gap: 0; }
  .hdr__phone-num { display: none; }
  .hdr__phone svg { width: 22px; height: 22px; }
  .ing-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .fbanner__title { text-shadow: 0 2px 12px rgba(0, 0, 0, .4); }
  .fbanner--green::after  { background: linear-gradient(90deg, var(--green) 18%, rgba(47, 125, 58, .55) 100%); }
  .fbanner--purple::after { background: linear-gradient(90deg, var(--purple-b) 18%, rgba(154, 99, 201, .55) 100%); }
  .fbanner--orange::after { background: linear-gradient(90deg, var(--orange) 18%, rgba(242, 149, 26, .55) 100%); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

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

/* ============================================================
   ТИПОГРАФИКА — Bebas Neue для заголовков/акцентов
   (основной текст и подписи наследуют Involve от body)
   ============================================================ */
.sec-num,
.sec-title,
.fbanner__title,
.prod-card__title,
.ing-card__title {
  font-family: var(--ff-head);
  font-weight: 400;
  letter-spacing: .02em;
}
/* Bebas — капсовый и узкий: чуть крупнее и с трекингом для читаемости */
.sec-title { letter-spacing: .015em; }
.fbanner__title { letter-spacing: .015em; font-size: clamp(30px, 4.2vw, 54px); }
.prod-card__title { font-size: clamp(28px, 3.8vw, 46px); letter-spacing: .015em; }
.ing-card__title { font-size: clamp(17px, 1.7vw, 21px); letter-spacing: .03em; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
