/* ═══════════════════════════════════════════════════════════════
   BestShine — студия оклейки и локального окраса, Астана
   Концепция: «этаж −1» — тёмный цех под торговым центром,
   фиолетово-синий линейный неон, соты потолочного света,
   свет, скользящий по кузову.
   Шрифты: Tektur (дисплей) + Onest (текст) — казахские глифы есть.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #0b0714;            /* чернильный фиолетово-чёрный */
  --bg-2: #120c1e;          /* фон секций-«подвалов» */
  --bg-3: #191129;          /* приподнятые поверхности */
  --ink: #161022;           /* тёмный текст на белых плашках */
  --txt: #f2effa;           /* жемчужный основной текст */
  --mut: #b3a9c9;           /* приглушённый текст */
  --dim: #7d7295;           /* совсем тихий */
  --neon-a: #a78bfa;        /* фиолетовый неон */
  --neon-b: #38bdf8;        /* ледяной синий */
  --neon-grad: linear-gradient(100deg, #a78bfa, #38bdf8);
  --line: rgba(167, 139, 250, .16);
  --card: rgba(255, 255, 255, .035);
  --radius: 18px;
  --wrap: 1240px;
  --hdr-h: 72px;
  --f-disp: "Tektur", "Segoe UI", sans-serif;
  --f-text: "Onest", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-text);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(18px, 4vw, 48px); }

/* Секции получают отступ под фикс-шапку при переходе по якорю */
section[id] { scroll-margin-top: calc(var(--hdr-h) + 10px); }

::selection { background: rgba(167, 139, 250, .4); }

/* ── Типографика голов секций: ЗАГОЛОВОК И ЛИД ВСЕГДА В ДЛИНУ ── */
.h2 {
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: clamp(30px, 5.2vw, 62px);
  line-height: 1.06;
  letter-spacing: -.01em;
  margin: 14px 0 18px;
}
.lead {
  color: var(--mut);
  font-size: clamp(16px, 1.6vw, 20px);
  margin-bottom: clamp(30px, 5vw, 56px);
}
.overline {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-disp); font-weight: 600;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--neon-a);
}
.ol-dot {
  width: 26px; height: 2px; flex: none;
  background: var(--neon-grad); border-radius: 2px;
}

/* ── Кнопки ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 15px 28px; border-radius: 12px;
  font-family: var(--f-disp); font-weight: 700; font-size: 15px;
  letter-spacing: .02em; cursor: pointer; border: 0;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
}
.btn-neon {
  background: var(--neon-grad); color: #0c0817;
  box-shadow: 0 6px 26px rgba(124, 108, 255, .38);
}
.btn-neon:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(124, 108, 255, .55); }
.btn-ghost {
  background: transparent; color: var(--txt);
  box-shadow: inset 0 0 0 1.5px rgba(179, 169, 201, .4);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--neon-a); color: #fff; transform: translateY(-2px); }

/* ═══════════ ШАПКА (без backdrop-filter — сознательно) ═══════════ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 70; /* выше оверлея меню — бургер должен оставаться кликабельным */
  height: var(--hdr-h);
  background: linear-gradient(180deg, rgba(11, 7, 20, .92), rgba(11, 7, 20, .78));
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.header.is-scrolled { background: rgba(11, 7, 20, .96); border-bottom-color: var(--line); }
.hdr-in {
  max-width: var(--wrap); margin: 0 auto; height: 100%;
  padding: 0 clamp(18px, 4vw, 48px);
  display: flex; align-items: center; gap: 28px;
}
.logo { display: flex; align-items: center; gap: 10px; position: relative; z-index: 72; }
.logo-hex { width: 24px; height: 24px; }
.logo-txt {
  font-family: var(--f-disp); font-weight: 800; font-size: 20px; letter-spacing: .01em;
}
.logo-txt em {
  font-style: normal;
  background: var(--neon-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.nav { display: flex; gap: clamp(16px, 2vw, 30px); margin-left: auto; }
.nav a {
  font-size: 14.5px; font-weight: 500; color: var(--mut);
  transition: color .25s; position: relative; padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--neon-grad); border-radius: 2px; transition: width .3s;
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }

.hdr-right { display: flex; align-items: center; gap: 14px; position: relative; z-index: 72; }

/* Переключатель языка — стандарт студии */
.lang { display: flex; gap: 0; background: rgba(255, 255, 255, .16); border-radius: 10px; padding: 3px; }
.lang button {
  border: 0; background: transparent; border-radius: 7px; cursor: pointer;
  padding: 6px 13px; font-size: 12px; font-weight: 700; letter-spacing: .06em;
  font-family: var(--f-text);
  color: rgba(255, 255, 255, .8); transition: background .25s, color .25s;
}
.lang button:hover { color: #fff; }
.lang button.is-active { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(0, 0, 0, .18); }
.lang button:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }

.hdr-wa {
  font-family: var(--f-disp); font-weight: 700; font-size: 13.5px;
  padding: 10px 18px; border-radius: 10px;
  background: var(--neon-grad); color: #0c0817;
  box-shadow: 0 4px 18px rgba(124, 108, 255, .35);
  transition: transform .25s, box-shadow .25s;
}
.hdr-wa:hover { transform: translateY(-1px); box-shadow: 0 7px 24px rgba(124, 108, 255, .5); }

/* Бургер: появляется на том же пороге, что и оверлей меню — 1080px */
.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: rgba(255, 255, 255, .08); border: 0; border-radius: 10px; cursor: pointer;
}
.burger span {
  display: block; height: 2px; width: 100%; border-radius: 2px;
  background: var(--txt); transition: transform .3s, opacity .3s;
}
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════ МОБИЛЬНОЕ МЕНЮ: полноэкранный оверлей ═══════════ */
.mnav {
  position: fixed; inset: 0; z-index: 65;
  background:
    radial-gradient(90% 60% at 80% 0%, rgba(124, 92, 246, .18), transparent 60%),
    #0d0918;
  display: flex; flex-direction: column; justify-content: center; gap: 40px;
  padding: calc(var(--hdr-h) + 20px) clamp(22px, 7vw, 44px) 40px;
  opacity: 0; visibility: hidden; transform: translateY(-14px);
  transition: opacity .35s, transform .35s, visibility .35s;
}
body.menu-open .mnav { opacity: 1; visibility: visible; transform: none; }
body.menu-open { overflow: hidden; }
.mnav-links { display: flex; flex-direction: column; gap: 6px; }
.mnav-links a {
  font-family: var(--f-disp); font-weight: 800;
  font-size: clamp(30px, 8vw, 44px); line-height: 1.28;
  color: var(--txt); transition: color .25s;
}
.mnav-links a:hover { color: var(--neon-a); }
.mnav-foot { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.mnav-tel { font-family: var(--f-disp); font-weight: 700; font-size: 20px; color: var(--mut); }
.mnav-ig { color: var(--dim); font-size: 14px; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--hdr-h) + clamp(30px, 6vh, 70px)) 0 90px;
  overflow: hidden;
}
/* Неоновые пятна */
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(46% 38% at 12% 8%, rgba(124, 92, 246, .22), transparent 70%),
    radial-gradient(40% 45% at 88% 78%, rgba(56, 189, 248, .13), transparent 70%),
    radial-gradient(30% 30% at 70% 12%, rgba(124, 92, 246, .12), transparent 70%);
}
/* Соты потолочного света — фирменный мотив из фото клиента */
.hero-hex, .plenka-hex, .okras-hex, .contact-hex {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cpath d='M28 0 56 16v32L28 64 0 48V16Z M28 64 56 80v32H0V80Z' fill='none' stroke='rgba(167,139,250,0.07)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 97px;
  -webkit-mask-image: radial-gradient(70% 60% at 60% 30%, #000 20%, transparent 75%);
  mask-image: radial-gradient(70% 60% at 60% 30%, #000 20%, transparent 75%);
}

.hero-in {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(24px, 3.4vw, 48px); align-items: center;
}

.hero-h1 {
  font-family: var(--f-disp); font-weight: 900;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.04; letter-spacing: -.015em;
  margin: 18px 0 20px;
  /* «Свет скользит по заголовку» — фирменный шиммер */
  background: linear-gradient(105deg, #f2effa 0%, #f2effa 38%, #b7a7ff 47%, #7fd7ff 53%, #f2effa 62%, #f2effa 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: sweep 7s ease-in-out infinite;
}
@keyframes sweep {
  0%, 55% { background-position: 110% 0; }
  85%, 100% { background-position: -60% 0; }
}

.hero-lead { color: var(--mut); font-size: clamp(16px, 1.7vw, 19px); max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-stats {
  display: flex; gap: clamp(24px, 3.4vw, 52px); flex-wrap: wrap;
  margin-top: clamp(30px, 5vh, 52px); padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-stats dt {
  font-family: var(--f-disp); font-weight: 800;
  font-size: clamp(24px, 2.6vw, 34px); line-height: 1.1;
  background: var(--neon-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-stats dd { color: var(--dim); font-size: 13.5px; margin-top: 4px; max-width: 150px; }

/* Витраж из вертикальных панелей.
   Панели заходят друг на друга — так каждая шире трети колонки,
   а вся группа по-прежнему укладывается в 100% ширины. */
.hero-panels {
  display: flex; align-items: center; justify-content: center;
  align-self: start; margin-top: 6px;
}
.hp {
  position: relative; flex: 0 0 auto; width: 35%;
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 9 / 16;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .5);
  isolation: isolate;
}
.hp img, .hp video { width: 100%; height: 100%; object-fit: cover; }
/* Блик, скользящий по панелям */
.hp::after {
  content: ""; position: absolute; inset: -30%; z-index: 1;
  background: linear-gradient(115deg, transparent 42%, rgba(213, 200, 255, .22) 50%, transparent 58%);
  transform: translateX(-120%);
  animation: panelsweep 6.5s ease-in-out infinite;
}
.hp-1 { z-index: 1; margin-right: -7%; transform: translateY(44px) rotate(-4deg); }
.hp-1::after { animation-delay: .6s; }
.hp-2 { z-index: 3; width: 44%; transform: translateY(-18px) rotate(.5deg); }
.hp-2::after { animation-delay: 1.5s; }
.hp-3 { z-index: 2; margin-left: -7%; transform: translateY(52px) rotate(4deg); }
.hp-3::after { animation-delay: 2.4s; }
@keyframes panelsweep {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}

.hero-down {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 2; display: flex; align-items: center; gap: 10px;
  color: var(--dim); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  font-family: var(--f-disp); transition: color .3s;
}
.hero-down svg { width: 12px; height: 18px; animation: downhint 2.2s ease-in-out infinite; }
.hero-down:hover { color: var(--neon-a); }
@keyframes downhint {
  0%, 100% { transform: translateY(0); opacity: .8; }
  50% { transform: translateY(5px); opacity: 1; }
}

/* ═══════════ БЕГУЩАЯ ЛЕНТА ═══════════ */
.marquee-clip { overflow: hidden; }
.marquee {
  overflow: hidden; padding: 20px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transform: rotate(-1.4deg); margin: 0 -20px;
  background: var(--bg-2);
}
.marquee-track {
  display: flex; gap: 34px; width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--f-disp); font-weight: 800; font-size: 22px;
  letter-spacing: .04em; text-transform: uppercase; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(179, 169, 201, .55);
}
.marquee-track i { color: var(--neon-a); font-style: normal; font-size: 16px; align-self: center; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════ ДВА ОСНОВНЫХ НАПРАВЛЕНИЯ (сразу под героем) ═══════════
   Две крупные карточки-двери: фото на всю плашку, текст поверх градиента.
   Подача намеренно тяжелее карточек прайса — это первое, что видит клиент. */
.naprav { padding: clamp(52px, 8vw, 96px) 0 clamp(10px, 2vw, 24px); position: relative; }

.np-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 26px); margin-top: clamp(22px, 3vw, 34px);
}

.np-card {
  position: relative; display: flex; flex-direction: column; isolation: isolate;
  min-height: clamp(340px, 42vw, 500px);
  border-radius: calc(var(--radius) + 6px); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .45);
  transition: transform .5s cubic-bezier(.2, .7, .3, 1), border-color .4s, box-shadow .5s;
}
.np-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%;
  transform: scale(1.02); transition: transform 1s cubic-bezier(.2, .7, .3, 1);
}
/* Затемнение: снизу почти в фон секции, сверху почти прозрачно */
.np-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(11, 7, 20, .96) 8%, rgba(11, 7, 20, .78) 34%, rgba(11, 7, 20, .18) 68%, rgba(11, 7, 20, .35) 100%),
    radial-gradient(80% 60% at 20% 100%, rgba(124, 92, 246, .3), transparent 70%);
}
.np-card-2::before { background-image:
    linear-gradient(to top, rgba(11, 7, 20, .96) 8%, rgba(11, 7, 20, .78) 34%, rgba(11, 7, 20, .18) 68%, rgba(11, 7, 20, .35) 100%),
    radial-gradient(80% 60% at 20% 100%, rgba(56, 189, 248, .28), transparent 70%); }
/* Неоновая линия, которая прочерчивается по низу при наведении */
.np-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: 3;
  background: var(--neon-grad); transform: scaleX(0); transform-origin: left;
  transition: transform .6s cubic-bezier(.2, .7, .3, 1);
}
.np-card:hover, .np-card:focus-visible { transform: translateY(-6px); border-color: rgba(167, 139, 250, .45); box-shadow: 0 30px 70px rgba(0, 0, 0, .55); }
.np-card:hover img, .np-card:focus-visible img { transform: scale(1.09); }
.np-card:hover::after, .np-card:focus-visible::after { transform: scaleX(1); }

/* Блик, скользящий по карточке при наведении */
.np-shine {
  position: absolute; inset: -40%; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, transparent 43%, rgba(213, 200, 255, .18) 50%, transparent 57%);
  transform: translateX(-120%); transition: transform 0s;
}
.np-card:hover .np-shine { transform: translateX(120%); transition: transform 1.1s ease-in-out; }

.np-in {
  position: relative; z-index: 3; margin-top: auto;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  padding: clamp(22px, 2.6vw, 34px);
}
/* Крупный номер направления — над текстовой плашкой, в поле фотографии */
.np-num {
  position: absolute; bottom: 100%; right: clamp(22px, 2.6vw, 34px);
  margin-bottom: 6px;
  font-family: var(--f-disp); font-weight: 900; font-size: clamp(56px, 7vw, 96px);
  line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(242, 239, 250, .26);
}
.np-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(167, 139, 250, .16); border: 1px solid rgba(167, 139, 250, .4);
  font-family: var(--f-disp); font-weight: 600; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase; color: #d9cdff;
}
.np-badge-live { background: rgba(56, 189, 248, .14); border-color: rgba(56, 189, 248, .42); color: #c2ecff; }
.np-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #38bdf8; flex: none;
  box-shadow: 0 0 0 0 rgba(56, 189, 248, .7); animation: nppulse 2.1s ease-out infinite;
}
@keyframes nppulse {
  0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, .6); }
  70% { box-shadow: 0 0 0 12px rgba(56, 189, 248, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}
.np-t {
  font-family: var(--f-disp); font-weight: 900;
  font-size: clamp(25px, 2.9vw, 40px); line-height: 1.05; letter-spacing: -.01em;
  margin-top: 2px;
}
.np-d { color: var(--mut); font-size: clamp(14px, 1.2vw, 16px); line-height: 1.5; }
.np-foot {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 18px;
  margin-top: 8px; padding-top: 14px; width: 100%;
  border-top: 1px solid rgba(242, 239, 250, .12);
}
.np-price {
  font-family: var(--f-disp); font-weight: 800; font-size: clamp(17px, 1.8vw, 22px);
  background: var(--neon-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.np-go {
  margin-left: auto; color: var(--txt); font-size: 14px; font-weight: 600;
  transition: color .3s, transform .3s;
}
.np-card:hover .np-go { color: var(--neon-b); transform: translateX(4px); }

@media (max-width: 860px) {
  .np-grid { grid-template-columns: minmax(0, 1fr); }
  .np-card { min-height: 320px; }
  .np-num { font-size: 62px; }
  .np-go { margin-left: 0; }
}
@media (max-width: 420px) {
  .np-card { min-height: 290px; }
}

/* ═══════════ СЕКЦИЯ «САУРАН» ═══════════ */
.sauran { padding: clamp(70px, 11vw, 130px) 0 clamp(60px, 8vw, 100px); position: relative; }

.sa-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(26px, 4vw, 60px); align-items: stretch;
}

/* Этажный указатель */
.sa-floors {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(22px, 3vw, 38px);
  display: flex; flex-direction: column; gap: 0;
}
.floor { display: flex; align-items: center; gap: 18px; padding: 18px 0; }
/* Номера этажей — в одинаковых плашках: «0» и «−1» разной ширины,
   и без общего бокса «−1» визуально тяжелее нуля вдвое. */
.floor-num {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  width: 88px; height: 70px; border-radius: 14px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, .03);
  font-family: var(--f-disp); font-weight: 900;
  font-size: clamp(30px, 3.2vw, 38px); line-height: 1; letter-spacing: -.02em;
  color: var(--mut);
}
.floor-m1 .floor-num {
  border-color: rgba(167, 139, 250, .45);
  background: rgba(167, 139, 250, .12);
  color: #c9b8ff;
  box-shadow: 0 0 24px rgba(140, 120, 250, .28), inset 0 0 18px rgba(140, 120, 250, .15);
}
.floor-txt { display: flex; flex-direction: column; gap: 3px; }
.floor-txt strong { font-family: var(--f-disp); font-weight: 700; font-size: clamp(17px, 1.8vw, 21px); }
.floor-txt span { color: var(--dim); font-size: 14px; }

/* Шахта «лифта» между этажами */
/* Шахта тянется на всю свободную высоту карточки — «−1» садится вниз,
   и в блоке не остаётся пустого поля между этажами и цитатами. */
.floor-shaft {
  position: relative; flex: 1 1 auto; min-height: 56px; margin-left: 44px;
  border-left: 2px dashed rgba(167, 139, 250, .35);
}
.floor-cab {
  position: absolute; left: -7px; top: 0;
  width: 12px; height: 16px; border-radius: 3px;
  background: var(--neon-grad);
  box-shadow: 0 0 14px rgba(140, 120, 250, .8);
  animation: cab 3s ease-in-out infinite;
}
@keyframes cab {
  0%, 15% { top: 0; }
  50%, 65% { top: calc(100% - 16px); }
  100% { top: 0; }
}

.sa-quotes { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.sa-quote {
  font-family: var(--f-disp); font-weight: 600;
  font-size: clamp(15px, 1.6vw, 18px); line-height: 1.4;
  background: var(--neon-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.sa-photo { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 100%; }
.sa-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.sa-photo figcaption {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-size: 12.5px; color: rgba(242, 239, 250, .85);
  background: rgba(11, 7, 20, .55); padding: 7px 12px; border-radius: 8px;
}
.sa-photo::before { content: ""; display: block; padding-top: 118%; }

/* Таймлайн дня */
.sa-timeline {
  list-style: none; margin-top: clamp(34px, 5vw, 60px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 24px);
}
.sa-timeline li {
  position: relative; padding: 22px 20px 20px;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  transition: transform .3s, border-color .3s;
}
.sa-timeline li:hover { transform: translateY(-4px); border-color: rgba(167, 139, 250, .4); }
.tl-time {
  display: inline-block; font-family: var(--f-disp); font-weight: 800; font-size: 15px;
  background: var(--neon-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.sa-timeline strong { display: block; font-family: var(--f-disp); font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.sa-timeline p { color: var(--dim); font-size: 13.5px; line-height: 1.55; }

/* ═══════════ ПЛЁНКА — ГЛАВНОЕ НАПРАВЛЕНИЕ ═══════════
   Витрина, а не прайс: фото на всю карточку, текст поверх градиента.
   Намеренно отличается от карточек услуг (фото сверху, текст под ним) —
   так плёнка читается как главный блок, а не как ещё один ряд цен. */
.plenka { padding: clamp(70px, 10vw, 120px) 0; position: relative; overflow: hidden; }
.plenka-hex { opacity: .4; -webkit-mask-image: radial-gradient(65% 60% at 75% 25%, #000 10%, transparent 78%); mask-image: radial-gradient(65% 60% at 75% 25%, #000 10%, transparent 78%); }

.pl-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
  margin-top: clamp(26px, 3.4vw, 44px);
}
.pl-card {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: var(--radius); border: 1px solid var(--line);
  aspect-ratio: 3 / 4; display: flex; align-items: flex-end;
  transition: transform .4s, border-color .4s, box-shadow .4s;
}
.pl-card:hover {
  transform: translateY(-8px);
  border-color: rgba(167, 139, 250, .5);
  box-shadow: 0 24px 52px rgba(0, 0, 0, .5);
}
.pl-card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.3, .8, .3, 1);
}
.pl-card:hover img { transform: scale(1.07); }
/* Затемнение снизу — под текст; вверху остаётся чистое фото */
.pl-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(9, 6, 18, .94) 12%, rgba(9, 6, 18, .66) 44%, rgba(9, 6, 18, .08) 78%);
}
/* Неоновая полоса растёт снизу при наведении */
.pl-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--neon-grad); transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.3, .8, .3, 1);
}
.pl-card:hover::after { transform: scaleX(1); }

.pl-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 7px; }
.pl-num {
  font-family: var(--f-disp); font-weight: 800; font-size: 12.5px; letter-spacing: .16em;
  background: var(--neon-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pl-body h3 {
  font-family: var(--f-disp); font-weight: 700;
  font-size: clamp(17px, 1.75vw, 22px); line-height: 1.2;
}
.pl-body p { color: var(--mut); font-size: 14px; line-height: 1.5; }

.pl-cta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px 22px;
  margin-top: clamp(24px, 3vw, 38px);
}
.pl-note { color: var(--dim); font-size: 14px; }

/* ═══════════ УСЛУГИ ═══════════ */
.uslugi { padding: clamp(70px, 10vw, 120px) 0; background: var(--bg-2); position: relative; }

.us-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}
.us-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; isolation: isolate;
  transition: transform .35s, border-color .35s, box-shadow .35s;
  scroll-margin-top: calc(var(--hdr-h) + 10px); /* якоря карточек — под шапку */
}
.us-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 250, .45);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .45);
}
.us-card figure { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.us-big figure { aspect-ratio: auto; flex: 1; min-height: 300px; }
.us-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.us-card:hover figure img { transform: scale(1.05); }
/* Блик по фото на hover */
.us-card figure::after {
  content: ""; position: absolute; inset: -30%;
  background: linear-gradient(115deg, transparent 42%, rgba(213, 200, 255, .2) 50%, transparent 58%);
  transform: translateX(-130%); transition: transform 0s;
}
.us-card:hover figure::after { transform: translateX(130%); transition: transform .9s ease; }

.us-big { grid-row: span 2; }

.us-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: none; }
.us-body h3 { font-family: var(--f-disp); font-weight: 700; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.25; }
.us-body p { color: var(--dim); font-size: 14px; line-height: 1.55; }
.us-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 10px; }
.price {
  font-family: var(--f-disp); font-weight: 800; font-size: clamp(16px, 1.6vw, 19px);
  background: var(--neon-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  white-space: nowrap;
}
.us-go {
  font-family: var(--f-disp); font-weight: 700; font-size: 13.5px; white-space: nowrap;
  color: var(--mut); transition: color .25s;
}
.us-go:hover { color: #fff; }

/* Всё, что не плёнка — компактная строка без фото: намеренно тише
   карточек оклейки. Окрас в этой строке выделен рамкой (он в рекламе). */
.us-extra { margin-top: clamp(20px, 2.6vw, 32px); }
.us-extra-h {
  font-family: var(--f-disp); font-weight: 700; font-size: 12.5px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--dim);
  margin-bottom: 14px;
}
.us-extra-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}
.ux-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 20px 22px 20px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  scroll-margin-top: calc(var(--hdr-h) + 10px);
  transition: transform .35s, border-color .35s;
}
.ux-card:hover { transform: translateY(-4px); border-color: rgba(167, 139, 250, .45); }
/* Окрас — единственная услуга вне плёнки, на которую идёт реклама */
.ux-lead { border-color: rgba(167, 139, 250, .45); background: rgba(167, 139, 250, .07); }
.ux-ico {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; margin-bottom: 4px;
  border-radius: 12px; color: var(--neon-a);
  background: rgba(167, 139, 250, .12); border: 1px solid rgba(167, 139, 250, .25);
}
.ux-ico svg { width: 21px; height: 21px; }
.ux-card h3 { font-family: var(--f-disp); font-weight: 700; font-size: clamp(15.5px, 1.5vw, 18px); line-height: 1.3; }
.ux-card p { color: var(--dim); font-size: 13.5px; line-height: 1.55; }
.ux-card { min-width: 0; }
/* Цена — nowrap; в казахской версии «сұраныс бойынша» + «есептеу →» не влезают
   в четверть строки, поэтому подвал карточки переносится. */
.ux-card .us-foot { margin-top: auto; padding-top: 12px; flex-wrap: wrap; row-gap: 6px; }

/* ═══════════ ОКРАС ПОД ТОЛЩИНОМЕР ═══════════ */
.okras { padding: clamp(70px, 10vw, 130px) 0; position: relative; overflow: hidden; }
.okras-hex { opacity: .35; -webkit-mask-image: radial-gradient(60% 55% at 25% 40%, #000 10%, transparent 75%); mask-image: radial-gradient(60% 55% at 25% 40%, #000 10%, transparent 75%); }

.ok-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(28px, 4vw, 64px); align-items: stretch;
}

/* Шкала толщиномера */
.gauge {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px 18px; margin-bottom: 26px;
}
.gauge-head { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 16px; }
.gauge-label { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); font-family: var(--f-disp); }
.gauge-ok {
  font-family: var(--f-disp); font-weight: 700; font-size: 13.5px;
  color: #7ef0c0; opacity: 0; transform: translateY(4px);
  transition: opacity .5s .9s, transform .5s .9s;
}
.gauge.is-on .gauge-ok { opacity: 1; transform: none; }
.gauge-scale { position: relative; height: 46px; }
.gauge-ticks {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg,
    rgba(179, 169, 201, .4) 0 1px, transparent 1px 10%);
  background-size: 100% 100%;
  -webkit-mask-image: linear-gradient(180deg, transparent 0 30%, #000 30%);
  mask-image: linear-gradient(180deg, transparent 0 30%, #000 30%);
}
/* «Заводской диапазон» — зелёная зона в середине шкалы */
.gauge-zone {
  position: absolute; left: 38%; width: 30%; top: 30%; bottom: 0;
  background: linear-gradient(180deg, rgba(126, 240, 192, .16), rgba(126, 240, 192, .04));
  border-left: 1px solid rgba(126, 240, 192, .5);
  border-right: 1px solid rgba(126, 240, 192, .5);
  border-radius: 4px;
}
.gauge-needle {
  position: absolute; top: 0; bottom: 0; left: 4%;
  width: 3px; border-radius: 2px;
  background: var(--neon-grad);
  box-shadow: 0 0 12px rgba(140, 120, 250, .8);
  transition: left 1.4s cubic-bezier(.3, .9, .3, 1);
}
.gauge.is-on .gauge-needle { left: 52%; }
.gauge-foot { display: flex; justify-content: space-between; color: var(--dim); font-size: 11.5px; margin-top: 8px; letter-spacing: .08em; }

.ok-points { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px; }
.ok-points li {
  padding: 18px; border-radius: 14px;
  background: var(--card); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
  transition: transform .3s, border-color .3s;
}
.ok-points li:hover { transform: translateY(-3px); border-color: rgba(167, 139, 250, .4); }
.ok-points strong {
  font-family: var(--f-disp); font-weight: 700; font-size: 16.5px;
  background: var(--neon-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ok-points span { color: var(--dim); font-size: 13.5px; line-height: 1.55; }
.ok-cta { margin-top: 26px; }

/* Вертикальное видео 9:16 нельзя растягивать по высоте текстовой колонки —
   иначе на десктопе оно вырастает до ~820px. Кадрируем в 4:5 с потолком по высоте. */
.ok-photo { position: relative; border-radius: var(--radius); overflow: hidden; align-self: center; }
.ok-photo video { width: 100%; height: auto; aspect-ratio: 4 / 5; max-height: 540px; object-fit: cover; }
.ok-photo figcaption {
  position: absolute; left: 16px; bottom: 14px;
  font-size: 12.5px; color: rgba(242, 239, 250, .85);
  background: rgba(11, 7, 20, .55); padding: 7px 12px; border-radius: 8px;
}

/* ═══════════ РАБОТЫ: горизонтальная лента ═══════════ */
.raboty { padding: clamp(70px, 10vw, 120px) 0 clamp(60px, 8vw, 90px); background: var(--bg-2); }
.raboty .lead { margin-bottom: clamp(24px, 3vw, 40px); }

.ra-strip-wrap { position: relative; }
.ra-strip {
  display: flex; gap: clamp(12px, 1.6vw, 20px);
  overflow-x: auto; padding: 6px clamp(18px, 4vw, 48px) 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.ra-strip::-webkit-scrollbar { display: none; }
.ra-strip.is-drag { cursor: grabbing; scroll-snap-type: none; }
.ra-item {
  position: relative; flex: none;
  width: clamp(230px, 24vw, 330px);
  border-radius: 16px; overflow: hidden;
  scroll-snap-align: center;
  isolation: isolate;
}
.ra-item { aspect-ratio: 3 / 4; }
.ra-item img, .ra-item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
}
.ra-item:hover img, .ra-item:hover video { transform: scale(1.045); }
.ra-item figcaption {
  position: absolute; left: 12px; bottom: 10px; z-index: 2;
  font-family: var(--f-disp); font-weight: 600; font-size: 12.5px;
  color: rgba(242, 239, 250, .92);
  background: rgba(11, 7, 20, .55); padding: 6px 11px; border-radius: 8px;
}
.ra-item::after {
  content: ""; position: absolute; inset: 55% 0 0 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(11, 7, 20, .55));
}

.ra-nav {
  display: flex; align-items: center; gap: 12px;
  max-width: var(--wrap); margin: 14px auto 0; padding: 0 clamp(18px, 4vw, 48px);
}
.ra-btn {
  width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--card); color: var(--txt); font-size: 18px; cursor: pointer;
  transition: border-color .25s, transform .25s, color .25s;
}
.ra-btn:hover { border-color: var(--neon-a); color: var(--neon-a); transform: translateY(-2px); }
.ra-ig { margin-left: auto; color: var(--mut); font-size: 14px; transition: color .25s; }
.ra-ig:hover { color: #fff; }

/* ═══════════ КОНТАКТЫ ═══════════ */
.contact { padding: clamp(70px, 10vw, 130px) 0; position: relative; overflow: hidden; }
.contact-hex { opacity: .3; -webkit-mask-image: radial-gradient(60% 60% at 80% 20%, #000 10%, transparent 75%); mask-image: radial-gradient(60% 60% at 80% 20%, #000 10%, transparent 75%); }

.ct-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 64px); align-items: start;
}
.ct-info { display: flex; flex-direction: column; gap: 22px; }
.ct-row { display: flex; flex-direction: column; gap: 5px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.ct-key { font-family: var(--f-disp); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); }
.ct-val { font-size: clamp(16px, 1.7vw, 19px); line-height: 1.5; }
.ct-tel { font-family: var(--f-disp); font-weight: 700; font-size: clamp(20px, 2.2vw, 26px); transition: color .25s; }
.ct-tel:hover { color: var(--neon-a); }
.ct-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }

.ct-form {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(22px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 18px;
}
.f-field { display: flex; flex-direction: column; gap: 7px; }
.f-field label { font-size: 13px; font-weight: 600; color: var(--mut); letter-spacing: .03em; }
.f-field input, .f-field select, .f-field textarea {
  font-family: var(--f-text); font-size: 15.5px; color: var(--txt);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(179, 169, 201, .25); border-radius: 11px;
  padding: 13px 15px; transition: border-color .25s, background .25s;
}
.f-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%23b3a9c9' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.f-field select option { background: var(--bg-3); color: var(--txt); }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
  outline: none; border-color: var(--neon-a); background: rgba(255, 255, 255, .08);
}
.f-field textarea { resize: vertical; min-height: 74px; }
.f-submit { width: 100%; }
.f-note { color: var(--dim); font-size: 12.5px; text-align: center; }

/* ═══════════ ПОДВАЛ ═══════════ */
.footer { border-top: 1px solid var(--line); padding: clamp(34px, 5vw, 56px) 0 26px; background: var(--bg-2); }
.footer-in {
  display: grid; grid-template-columns: 1.2fr 1fr auto;
  gap: clamp(22px, 4vw, 50px); align-items: start;
}
.foot-brand p { color: var(--dim); font-size: 13.5px; margin-top: 8px; max-width: 300px; }
.foot-info { display: flex; flex-direction: column; gap: 8px; color: var(--mut); font-size: 14.5px; }
.foot-info a { transition: color .25s; }
.foot-info a:hover { color: var(--neon-a); }
.foot-links { display: flex; gap: 18px; }
.foot-links a { color: var(--mut); font-size: 14.5px; transition: color .25s; }
.foot-links a:hover { color: #fff; }
.foot-copy { text-align: center; color: var(--dim); font-size: 12.5px; margin-top: 34px; }

/* ═══════════ ОВЕРЛЕЙ «СПАСИБО» ═══════════ */
.thanks {
  position: fixed; inset: 0; z-index: 80;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8, 5, 15, .8); padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.thanks.is-open { opacity: 1; visibility: visible; }
.thanks-card {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 20px; padding: 40px 36px; max-width: 420px; width: 100%;
  text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center;
  transform: translateY(14px); transition: transform .35s;
}
.thanks.is-open .thanks-card { transform: none; }
.thanks-card svg { width: 56px; height: 56px; }
.thanks-card h3 { font-family: var(--f-disp); font-weight: 800; font-size: 26px; }
.thanks-card p { color: var(--mut); font-size: 15px; }

/* ═══════════ ПОЯВЛЕНИЕ ПРИ СКРОЛЛЕ ═══════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-img { opacity: 0; clip-path: inset(8% 8% 8% 8% round 18px); transition: opacity .8s ease, clip-path .9s cubic-bezier(.3, .8, .3, 1); }
.reveal-img.is-in { opacity: 1; clip-path: inset(0 0 0 0 round 18px); }

/* ═══════════ АДАПТИВ ═══════════ */

@media (max-width: 1200px) {
  .us-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pl-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .us-extra-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Порог меню = порог бургера = 1080px (считан по казахским подписям) */
@media (max-width: 1080px) {
  .nav { display: none; }
  .hdr-wa { display: none; }
  .burger { display: flex; }
  .hdr-right { margin-left: auto; }
}

@media (max-width: 960px) {
  .hero { padding-bottom: 70px; }
  .hero-in { grid-template-columns: 1fr; gap: 40px; }
  .hero-panels { align-self: auto; margin: 0 auto; width: 100%; max-width: 620px; }
  .hp-1 { transform: translateY(14px) rotate(-2.5deg); }
  .hp-3 { transform: translateY(20px) rotate(2.5deg); }
  .hero-lead { max-width: none; }

  .sa-grid { grid-template-columns: 1fr; }
  .sa-photo::before { padding-top: 92%; }
  .sa-timeline { grid-template-columns: repeat(2, 1fr); }


  .ok-grid { grid-template-columns: 1fr; }
  .ok-photo { max-width: 480px; }

  .ct-grid { grid-template-columns: 1fr; }
  .footer-in { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 640px) {
  :root { --hdr-h: 62px; }
  .hdr-in { gap: 14px; }
  .logo-txt { font-size: 17px; }
  .logo-hex { width: 20px; height: 20px; }
  .lang button { padding: 6px 11px; }

  .hero { min-height: auto; padding-bottom: 84px; }
  .hero-stats { gap: 20px; }
  .hero-stats dd { max-width: 120px; }
  /* На телефоне витраж — одна видео-панель + две подложки по краям */
  .hero-panels { max-width: none; }
  .hp { width: 33%; }
  .hp-1, .hp-3 { transform: none; opacity: .8; }
  .hp-1 { margin-right: -6%; }
  .hp-3 { margin-left: -6%; }
  .hp-2 { width: 46%; transform: none; }

  .marquee-track span { font-size: 17px; }
  .marquee-track { gap: 22px; }

  .floor-num { width: 66px; height: 56px; font-size: 27px; border-radius: 12px; }
  .floor-shaft { margin-left: 33px; }
  .floor { gap: 14px; padding: 15px 0; }
  .sa-timeline { grid-template-columns: 1fr; }

  .us-grid { grid-template-columns: 1fr; }
  .us-big figure { min-height: 0; aspect-ratio: 4 / 3; }
  .us-extra-grid { grid-template-columns: 1fr; }

  /* Плёнка на телефоне остаётся в две колонки — четыре высокие карточки
     подряд превратили бы блок в бесконечную ленту. */
  .pl-card { aspect-ratio: 4 / 5; }
  .pl-body { padding: 14px 14px 16px; }
  .pl-body p { font-size: 13px; }

  .ok-points { grid-template-columns: 1fr; }

  .ra-item { width: min(72vw, 300px); }

  .ct-btns .btn { flex: 1 1 44%; padding: 14px 10px; }
}

/* ═══════════ ПЛАВАЮЩАЯ КНОПКА WHATSAPP ═══════════
   Видна всегда, на любом скролле и на всех ширинах.
   z-index 66: выше контента, ниже шапки (70) и оверлея «Спасибо» (80).
   При открытом меню прячется, чтобы не висеть поверх пунктов. */
.wa-fab {
  position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px);
  z-index: 66;
  display: inline-flex; align-items: center; gap: 10px;
  height: 58px; padding: 0 22px 0 18px;
  border-radius: 999px;
  background: var(--neon-grad); color: #0c0817;
  font-family: var(--f-disp); font-weight: 700; font-size: 14.5px; letter-spacing: .01em;
  box-shadow: 0 10px 30px rgba(124, 108, 255, .45), 0 0 0 1px rgba(255, 255, 255, .14) inset;
  transition: transform .25s, box-shadow .25s, opacity .25s, visibility .25s;
}
.wa-fab:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(124, 108, 255, .6), 0 0 0 1px rgba(255, 255, 255, .2) inset; }
.wa-fab:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.wa-fab-ico { width: 26px; height: 26px; flex: 0 0 auto; position: relative; z-index: 2; }
.wa-fab-txt { position: relative; z-index: 2; white-space: nowrap; }

/* Пульсирующее кольцо — подсказка «сюда можно нажать» */
.wa-fab-ring {
  position: absolute; inset: 0; border-radius: inherit;
  border: 2px solid rgba(167, 139, 250, .75);
  animation: waPulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1);    opacity: .8; }
  70%  { transform: scale(1.16); opacity: 0; }
  100% { transform: scale(1.16); opacity: 0; }
}

body.menu-open .wa-fab { opacity: 0; visibility: hidden; }

@media (max-width: 640px) {
  /* На телефоне — компактный круг, чтобы не закрывать контент */
  .wa-fab { height: 56px; width: 56px; padding: 0; justify-content: center; }
  .wa-fab-txt { display: none; }
  .wa-fab-ico { width: 28px; height: 28px; }
}

/* ═══════════ ДОСТУПНОСТЬ: reduced motion ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-h1 { animation: none; background-position: 50% 0; }
  .hp::after, .marquee-track, .floor-cab, .hero-down svg { animation: none; }
  .reveal, .reveal-img { opacity: 1; transform: none; clip-path: none; transition: none; }
  .gauge-needle { transition: none; }
  .gauge-ok { transition: none; }
  .wa-fab-ring { animation: none; opacity: .5; }
  * { animation-duration: .01ms !important; }
}
