/* ==========================================================================
   SV Service — багатосторінковий сайт
   Чистий CSS, змінні кольорів, mobile-first
   ========================================================================== */

/* theme-active.css (admin) is unlayered and overrides tokens in @layer theme-default. */
@layer theme-default;
@import url("theme-active.css");

/* ---------- Design tokens (середній тон — між темним і світлим) ---------- */
@layer theme-default {
:root {
  /* Backgrounds — м’який navy, світліший за оригінал */
  --bg-deep: #152536;
  --bg-base: #1A3048;
  --bg-elevated: #243B55;
  --bg-card: rgba(255, 255, 255, 0.07);
  --bg-card-hover: rgba(255, 255, 255, 0.11);

  /* Accents */
  --accent-cyan: #00D4FF;
  --accent-cyan-bright: #00E5FF;
  --accent-coral: #FF6B4A;
  --accent-coral-soft: #FF7A5C;
  --accent-rgb: 0, 212, 255;
  --accent-mid: #0099CC;
  --site-theme: default;

  /* Text */
  --text-white: #F2F7FC;
  --text-muted: #9BB0C9;
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: rgba(255, 255, 255, 0.88);

  /* Borders */
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-coral) 100%);
  --grad-btn: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-mid) 50%, var(--accent-coral) 100%);
  --grad-instagram: linear-gradient(90deg, #00d4ff 0%, #5851db 32%, #c13584 62%, #ff6b4a 100%);
  --grad-glow: radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.14) 0%, transparent 55%);

  /* Effects */
  --glow-cyan: 0 0 24px rgba(0, 212, 255, 0.28);
  --glow-coral: 0 0 24px rgba(255, 107, 74, 0.22);
  --shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.22);
  --blur-card: blur(10px);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 72px;

  /* Typography */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --section-space: clamp(4rem, 8vw, 7rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

@layer theme-default {
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-white);
  background: var(--bg-deep);
  background-image:
    var(--grad-glow),
    radial-gradient(ellipse at 100% 30%, rgba(255, 107, 74, 0.07) 0%, transparent 42%),
    radial-gradient(ellipse at 0% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
    linear-gradient(180deg, #1A3048 0%, var(--bg-deep) 45%, #122030 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* ---------- Layout helpers ---------- */
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
  position: relative;
}

/* Головна: інші секції з тим самим «піднятим» відступом, що й Команда */
body.is-home .section:not(.team) {
  padding-top: clamp(1.35rem, 2.8vw, 2.15rem);
  padding-bottom: clamp(2.25rem, 4.5vw, 3.75rem);
}

body.is-home .section:not(.team) .section__head {
  margin-bottom: clamp(1.35rem, 2.5vw, 1.85rem);
}

body.is-home .works__head {
  margin-bottom: clamp(1.35rem, 2.5vw, 1.85rem);
}

body.is-home .cta-band {
  padding-block: clamp(2.25rem, 4.5vw, 3.75rem);
}

.section__head {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section__head--left {
  text-align: left;
  margin-inline: 0;
}

.section__eyebrow {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section__head .section__title,
.team__head .section__title,
.works__head .section__title {
  position: relative;
  display: inline-block;
  margin-bottom: 0.85rem;
}

.section__title--nowrap {
  white-space: nowrap;
}

.section__title--split {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.section__title--split .section__title-line {
  display: block;
  white-space: nowrap;
}

.section__head:has(.section__title--nowrap),
.section__head:has(.section__title--split),
.section__head:has(.section__lead--nowrap) {
  max-width: none;
}

.section__head .section__title--nowrap,
.section__head .section__title--split {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.section__head .section__title.section__title--split .section__title-line {
  display: block;
  width: auto;
  max-width: 100%;
}

.section__lead--nowrap {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .section__lead--nowrap {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .section__title--nowrap {
    white-space: normal;
  }

  /* Keep designed 2 lines — near regular section title size */
  .section__title--split {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.65rem, 6vw, 2.25rem);
    letter-spacing: -0.02em;
  }

  .section__title--split .section__title-line {
    display: block;
    white-space: nowrap;
    max-width: 100%;
  }

  html[lang="ru"] .section__title--split {
    font-size: clamp(1.5rem, 5.6vw, 2.15rem);
    letter-spacing: -0.022em;
  }

  /* “Чому обирають / Клімат Харків” — larger on mobile (short 2 lines) */
  .section.why .section__title--split {
    font-size: clamp(1.95rem, 7.2vw, 2.6rem);
    letter-spacing: -0.025em;
  }

  html[lang="ru"] .section.why .section__title--split {
    font-size: clamp(1.8rem, 6.8vw, 2.45rem);
    letter-spacing: -0.028em;
  }
}

.section__head .section__title::after,
.team__head .section__title::after,
.works__head .section__title::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 3px;
  margin: 0.85rem auto 0;
  border-radius: 2px;
  background: var(--grad-brand);
}

.section__head--left .section__title::after {
  margin-left: 0;
  margin-right: auto;
}

.section__lead {
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.works .section__lead {
  white-space: nowrap;
}

.team .section__lead {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .works .section__lead,
  .team .section__lead {
    white-space: normal;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn--primary {
  background: var(--grad-btn);
  background-size: 180% 180%;
  color: var(--text-on-dark);
  box-shadow: var(--glow-cyan);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.5), 0 8px 24px rgba(0, 0, 0, 0.35);
  background-position: 100% 50%;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 212, 255, 0.4);
  color: var(--text-white);
  backdrop-filter: var(--blur-card);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  background: rgba(0, 212, 255, 0.1);
}

.hero .btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text-on-dark);
}

.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #FFFFFF;
  color: var(--text-on-dark);
}

.hero .btn--primary {
  color: var(--text-on-dark);
}

.btn--block {
  width: 100%;
}

/* ---------- Cards (glass) ---------- */
.card {
  background: var(--bg-card);
  backdrop-filter: var(--blur-card);
  -webkit-backdrop-filter: var(--blur-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: var(--glow-cyan), var(--shadow-soft);
  transform: translateY(-4px);
}

.card__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
}

.card__text {
  color: var(--text-muted);
  font-size: 0.975rem;
  margin-bottom: 1.25rem;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-cyan);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}

.card__link:hover {
  gap: 0.75rem;
  color: var(--accent-cyan-bright);
}

/* ---------- Logo (вентилятор) ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.logo__mark {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--grad-brand);
  box-shadow: var(--glow-cyan);
  filter: saturate(1.2) brightness(1.05);
  position: relative;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

/* Іконка вентилятора */
.logo__mark::before {
  content: "";
  width: 28px;
  height: 28px;
  background: var(--bg-deep);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='15' rx='8.5' ry='15' fill='black'/%3E%3Cellipse cx='32' cy='15' rx='8.5' ry='15' fill='black' transform='rotate(120 32 32)'/%3E%3Cellipse cx='32' cy='15' rx='8.5' ry='15' fill='black' transform='rotate(240 32 32)'/%3E%3Ccircle cx='32' cy='32' r='7.5' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='15' rx='8.5' ry='15' fill='black'/%3E%3Cellipse cx='32' cy='15' rx='8.5' ry='15' fill='black' transform='rotate(120 32 32)'/%3E%3Cellipse cx='32' cy='15' rx='8.5' ry='15' fill='black' transform='rotate(240 32 32)'/%3E%3Ccircle cx='32' cy='32' r='7.5' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  position: relative;
  z-index: 1;
  animation: fanSpin 6s linear infinite;
}

.logo__mark::after {
  display: none;
}

.logo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.05em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.05;
  white-space: nowrap;
  filter: saturate(1.2) brightness(1.05);
}

.logo__text > span {
  display: block;
}

.header .logo__text {
  transform: scaleX(1.2);
  transform-origin: left center;
}

.footer .logo__text {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.35em;
  line-height: 1;
  transform: none;
}

.footer .logo__text > span {
  display: inline;
}

@keyframes fanSpin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .logo__mark::before {
    animation: none;
  }
}

@media (min-width: 960px) {
  .logo {
    font-size: 1.45rem;
    gap: 0.95rem;
  }

  .logo__mark {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .logo__mark::before {
    width: 30px;
    height: 30px;
  }
}

/* ==========================================================================
   HEADER — у ширині .container, як блоки контенту
   [Логотип + меню] ........................ [Мова + телефон]
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  overflow: visible;
  background: rgba(21, 37, 54, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  height: 100%;
  gap: 0.65rem;
}

.header__inner > .logo {
  flex-shrink: 0;
  z-index: 1;
}

.nav {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.65rem;
}

.nav a,
.nav__item > span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover,
.nav__item > span:hover {
  color: #FFFFFF;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header__aside {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
  flex-shrink: 0;
  order: 2;
}

.header__contacts {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  line-height: 1.25;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-cyan);
  transition: color 0.25s var(--ease);
  white-space: nowrap;
}

.header__phone:hover {
  color: var(--accent-cyan-bright);
}

.header__hours {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  margin-top: 0.15rem;
}

.header__hours i {
  color: var(--accent-coral);
  font-size: 0.7rem;
}

/* Instagram — у кольорах активної теми + пульс */
.header__instagram {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 0;
  overflow: hidden;
  background-color: var(--accent-mid);
  background-image: linear-gradient(
    145deg,
    var(--accent-cyan-bright) 0%,
    var(--accent-cyan) 55%,
    var(--accent-mid) 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #fff;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.35);
  filter: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.3s var(--ease);
  animation: headerIgPulse 2.2s ease-out infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.header__instagram:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.45);
  animation: none;
}

@keyframes headerIgPulse {
  0%,
  100% {
    box-shadow:
      0 4px 14px rgba(var(--accent-rgb), 0.35),
      0 0 0 0 rgba(var(--accent-rgb), 0.4);
  }
  50% {
    box-shadow:
      0 6px 18px rgba(var(--accent-rgb), 0.5),
      0 0 0 10px rgba(var(--accent-rgb), 0);
  }
}

.header__booking {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  width: auto;
  min-width: 40px;
  height: auto;
  min-height: 40px;
  margin: 0;
  padding: 0.15rem 0.2rem;
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.18) 0%, rgba(0, 153, 204, 0.12) 100%);
  color: var(--accent-cyan);
  font: inherit;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 212, 255, 0.14);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.header__booking-icon {
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  line-height: 1;
}

.header__booking-label {
  max-width: 3.4rem;
  font-family: var(--font-display);
  font-size: 0.48rem;
  font-weight: 600;
  line-height: 1.05;
  text-align: center;
  color: var(--accent-cyan);
  white-space: normal;
}

@media (max-width: 959px) {
  .header__booking-label {
    font-size: 0.44rem;
    max-width: 2.75rem;
  }
}

.header__booking:hover,
.header__booking:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.28) 0%, rgba(0, 153, 204, 0.18) 100%);
  box-shadow: 0 6px 18px rgba(0, 212, 255, 0.24);
  outline: none;
}

@media (min-width: 900px) {
  .header__booking {
    display: none;
  }
}

body.is-blog-section [data-booking-side],
body.is-blog-section [data-site-booking-rail] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .header__instagram,
  .header__instagram:hover,
  .header__booking,
  .header__booking:hover {
    transition: none;
    transform: none;
  }
}

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.05);
}

.lang-switch a {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  color: var(--text-muted);
  transition: color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.lang-switch a:hover {
  color: var(--text-white);
}

.lang-switch a.is-active {
  color: var(--text-on-dark);
  background: linear-gradient(135deg, var(--accent-mid) 0%, var(--accent-cyan) 100%);
  box-shadow: 0 2px 10px rgba(var(--accent-rgb), 0.3);
  filter: none;
}

.header .logo__mark,
.header .logo__text {
  filter: saturate(1.2) brightness(1.22);
}

.header .lang-switch {
  filter: none;
  background: rgba(0, 0, 0, 0.26);
  border-color: rgba(var(--accent-rgb), 0.28);
}

.header .lang-switch a.is-active {
  filter: none;
}

.lang-switch--footer {
  margin-top: 0.5rem;
}

/* CSS-only mobile menu */
.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 210;
  flex-shrink: 0;
  order: 3;
  position: relative;
}

.nav-burger span {
  display: block;
  height: 2px;
  width: 22px;
  margin-inline: auto;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle:checked + .nav-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle:checked + .nav-burger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked + .nav-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle:checked ~ .nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 200;
  width: 100%;
  max-height: calc(100dvh - var(--header-h));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 1rem max(1rem, calc((100% - var(--container)) / 2)) 1.75rem;
  background: rgba(21, 37, 54, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: var(--shadow-soft);
  gap: 0;
  animation: fadeDown 0.35s var(--ease);
}

@media (max-width: 959px) {
  .header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.35rem;
  }

  .header__inner > .logo {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  /* scaleX(1.2) + longer RU «Климат Харьков» pushes the page sideways on mobile */
  .header .logo__text {
    transform: none;
    min-width: 0;
  }

  .header__aside {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-width: 0;
    margin-left: 0;
    order: unset;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .nav-burger {
    grid-column: 3;
    grid-row: 1;
    order: unset;
    flex-shrink: 0;
  }

  body.nav-open,
  body:has(.nav-toggle:checked) {
    overflow: hidden;
  }

  body.nav-open .contact-fab,
  body.nav-open .scroll-top,
  body.nav-open .blog-tiktok,
  body.nav-open .service-toc-toggle,
  body:has(.nav-toggle:checked) .contact-fab,
  body:has(.nav-toggle:checked) .scroll-top,
  body:has(.nav-toggle:checked) .blog-tiktok,
  body:has(.nav-toggle:checked) .service-toc-toggle {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 379px) {
  .header__instagram {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .header__booking {
    min-width: 36px;
    min-height: 36px;
    padding: 0.1rem 0.12rem;
  }

  .header__booking-icon {
    font-size: 0.95rem;
  }

  .header__booking-label {
    font-size: 0.44rem;
    max-width: 3rem;
  }

  .header__aside {
    gap: 0.4rem;
  }

  .logo__text {
    font-size: 0.95rem;
  }
}

@media (min-width: 960px) {
  :root {
    --header-h: 88px;
  }

  .nav-burger {
    display: none;
  }

  .header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    justify-content: unset;
    column-gap: 1.15rem;
    gap: unset;
  }

  /* Лого зліва, меню по центру між лого і правим блоком, контакти/мова праворуч */
  .header__inner > .logo {
    grid-column: 1;
    order: unset;
  }

  .nav {
    display: flex;
    grid-column: 2;
    justify-self: center;
    justify-content: center;
    flex: unset;
    width: max-content;
    max-width: 100%;
    order: unset;
    margin: 0;
    gap: 0.25rem 1.15rem;
    transform: translateX(0.2rem);
    padding-right: 0.55rem;
  }

  .header__aside {
    grid-column: 3;
    order: unset;
    margin-left: 0;
    gap: 1rem;
  }

  .header__contacts {
    display: flex;
  }

  /* RU: longer labels — keep logo column compact */
  html[lang="ru"] .header__inner {
    grid-template-columns: 9.4rem minmax(0, 1fr) auto;
  }

  html[lang="ru"] .header__inner > .logo {
    transform: translateX(-0.35rem);
  }

  html[lang="ru"] .header .logo__text {
    transform: scaleX(1.06);
    transform-origin: left center;
  }
}

/* ==========================================================================
   HERO — full-bleed, brand-first
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding-top: clamp(4rem, 10vw, 6rem);
  padding-bottom: clamp(8vh, 14vw, 18vh);
  overflow: hidden;
}

@media (max-width: 879px) {
  .hero {
    align-items: flex-start;
    padding-top: 1.5rem;
    padding-bottom: clamp(5vh, 10vw, 12vh);
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1631545806609-6b1f2c0b8a0f?w=1920&h=1080&fit=crop&q=80")
    center / cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 26, 46, 0.25) 0%, rgba(11, 26, 46, 0.55) 45%, rgba(11, 26, 46, 0.82) 100%),
    linear-gradient(90deg, rgba(11, 26, 46, 0.7) 0%, rgba(11, 26, 46, 0.25) 55%, rgba(11, 26, 46, 0.4) 100%);
}

.hero__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(0, 212, 255, 0.2) 0%, transparent 42%),
    radial-gradient(circle at 20% 80%, rgba(255, 107, 74, 0.12) 0%, transparent 35%);
  pointer-events: none;
  animation: coolPulse 7s ease-in-out infinite alternate;
}

/* Потік холодного повітря — до тексту → згасання → після тексту знову */
.hero__air {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 14%,
    transparent 24%,
    transparent 56%,
    rgba(0, 0, 0, 0.45) 64%,
    #000 70%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 14%,
    transparent 24%,
    transparent 56%,
    rgba(0, 0, 0, 0.45) 64%,
    #000 70%,
    #000 100%
  );
}

@media (min-width: 900px) {
  .hero__air {
    -webkit-mask-image: linear-gradient(
      90deg,
      #000 0%,
      #000 17%,
      transparent 27%,
      transparent 54%,
      rgba(0, 0, 0, 0.4) 60%,
      #000 66%,
      #000 100%
    );
    mask-image: linear-gradient(
      90deg,
      #000 0%,
      #000 17%,
      transparent 27%,
      transparent 54%,
      rgba(0, 0, 0, 0.4) 60%,
      #000 66%,
      #000 100%
    );
  }
}

@media (max-width: 559px) {
  .hero__air {
    -webkit-mask-image: linear-gradient(
      90deg,
      #000 0%,
      #000 7%,
      transparent 18%,
      transparent 82%,
      rgba(0, 0, 0, 0.5) 90%,
      #000 95%,
      #000 100%
    );
    mask-image: linear-gradient(
      90deg,
      #000 0%,
      #000 7%,
      transparent 18%,
      transparent 82%,
      rgba(0, 0, 0, 0.5) 90%,
      #000 95%,
      #000 100%
    );
  }
}

.hero__air span {
  position: absolute;
  left: -25%;
  height: 2px;
  width: 45%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 229, 255, 0) 5%,
    rgba(0, 229, 255, 0.55) 45%,
    rgba(255, 255, 255, 0.35) 70%,
    transparent 100%
  );
  filter: blur(0.5px);
  opacity: 0;
  animation: airFlow 7.5s ease-in-out infinite;
}

.hero__air span:nth-child(1) { top: 8%;  width: 40%; animation-delay: 0s; }
.hero__air span:nth-child(2) { top: 22%; width: 48%; animation-delay: 1.1s; }
.hero__air span:nth-child(3) { top: 38%; width: 55%; animation-delay: 2.3s; }
.hero__air span:nth-child(4) { top: 55%; width: 46%; animation-delay: 3.4s; }
.hero__air span:nth-child(5) { top: 72%; width: 50%; animation-delay: 4.6s; }
.hero__air span:nth-child(6) { top: 88%; width: 42%; animation-delay: 5.5s; }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 54rem;
}

.hero__heading {
  display: contents;
}

.hero__brand {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 10vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 0 28px rgba(0, 212, 255, 0.35));
  animation: fadeUp 0.8s var(--ease) both;
}

.hero__title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.8vw, 3.65rem);
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  animation: fadeUp 0.85s var(--ease) 0.12s both;
}

.hero__subtitle {
  color: var(--accent-cyan-bright);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.4vw, 2rem);
  font-weight: 500;
  max-width: 40rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.85s var(--ease) 0.22s both;
}

.hero__prices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin: 0 0 2.25rem;
  padding: 0;
  max-width: 36rem;
  animation: fadeUp 0.9s var(--ease) 0.32s both;
}

.hero__prices li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__prices li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__prices-label {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 500;
  color: var(--text-on-dark-muted);
}

.hero__prices-value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 700;
  white-space: nowrap;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.9s var(--ease) 0.42s both;
}

.hero__actions .btn {
  font-size: 1.15rem;
  padding: 1.1rem 2rem;
}

@media (min-width: 560px) {
  .hero__prices {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 48rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero__prices li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 1.15rem 1.25rem;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero__prices li:first-child {
    border-top: none;
    padding-left: 0;
  }

  .hero__prices li:last-child {
    border-right: none;
    padding-right: 0;
  }
}

@keyframes airFlow {
  0% {
    transform: translateX(0) scaleX(0.7);
    opacity: 0;
  }
  18% { opacity: 0.85; }
  55% { opacity: 0.5; }
  100% {
    transform: translateX(160%) scaleX(1.15);
    opacity: 0;
  }
}

@keyframes coolPulse {
  from { opacity: 0.75; }
  to { opacity: 1; }
}
/* ==========================================================================
   SERVICES
   ========================================================================== */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.services__grid .service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 0.9rem;
  row-gap: 0.85rem;
  align-items: center;
}

.services__grid .service-card__icon {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.services__grid .service-card .card__title {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  align-self: center;
}

.services__grid .service-card .card__text {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
}

.services__grid .service-card .card__link {
  grid-column: 1 / -1;
  grid-row: 3;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.28);
  color: var(--accent-cyan);
  font-size: 1.25rem;
  transition: box-shadow 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.service-card:hover .service-card__icon {
  color: var(--accent-coral-soft);
  border-color: rgba(255, 107, 74, 0.4);
  box-shadow: var(--glow-coral);
}

@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services-rating {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.85rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.28);
  background: rgba(12, 22, 34, 0.55);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.services-rating__label {
  color: var(--text-white);
  font-size: 0.98rem;
}

.services-rating__stars {
  display: inline-flex;
  gap: 0.14rem;
  color: rgba(0, 212, 255, 0.28);
  font-size: 1rem;
}

.services-rating__stars .is-on {
  color: var(--accent-cyan);
}

.services-rating__num {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
}

.services-rating__num [data-pages-rating-avg] {
  color: var(--text-white);
  font-weight: 700;
}

/* ==========================================================================
   WHY US — editorial rail
   ========================================================================== */
.why {
  border-block: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.06), transparent 40%),
    rgba(18, 32, 48, 0.92);
}

.why__head {
  margin-bottom: 2.25rem;
  max-width: none;
}

.why__head .section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  white-space: normal;
}

@media (min-width: 768px) {
  .why__head .section__title {
    white-space: nowrap;
  }
}

.why__rail {
  display: grid;
  gap: 0;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(12, 22, 34, 0.45);
}

.why-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.35rem 1.4rem;
  border: 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
  transition: background 0.3s var(--ease);
}

.why-item:last-child {
  border-bottom: 0;
}

.why-item:hover {
  background: rgba(0, 212, 255, 0.06);
  border-top-color: transparent;
}

.why-item__num {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.08);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-cyan);
  -webkit-background-clip: initial;
  background-clip: initial;
}

.why-item__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.why-item__text {
  margin: 0;
  grid-column: 2;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.why-item__body {
  min-width: 0;
}

/* Home rail: title aligned with number */
.why__rail .why-item {
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.9rem;
  row-gap: 0.55rem;
  align-items: center;
}

.why__rail .why-item__body {
  display: contents;
}

.why__rail .why-item__num {
  grid-column: 1;
  grid-row: 1;
}

.why__rail .why-item__title {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  align-self: center;
}

.why__rail .why-item__text {
  grid-column: 1 / -1;
  grid-row: 2;
}

@media (min-width: 900px) {
  .why__rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .why__rail--trio {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why__rail--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .why__rail .why-item {
    min-width: 0;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.55rem 0.85rem;
    padding: 1.5rem 1.25rem 1.4rem;
    border-bottom: 0;
    border-right: 1px solid rgba(0, 212, 255, 0.12);
  }

  .why__rail .why-item:last-child {
    border-right: 0;
  }

  .why__rail--five .why-item {
    padding: 1.25rem 0.85rem 1.2rem;
  }

  .why__rail--five .why-item__num {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 0.72rem;
  }

  .why__rail--five .why-item__title {
    font-size: 0.95rem;
    white-space: normal;
  }

  .why__rail--five .why-item__text {
    font-size: 0.85rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .why__rail--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why__rail--five .why-item:nth-child(3n) {
    border-right: 0;
  }

  .why__rail--five .why-item:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(0, 212, 255, 0.12);
  }
}

/* ==========================================================================
   TEAM
   ========================================================================== */
.team {
  position: relative;
  padding-top: clamp(1.35rem, 2.8vw, 2.15rem);
  padding-bottom: clamp(2.25rem, 4.5vw, 3.75rem);
  background:
    radial-gradient(ellipse 70% 50% at 10% 20%, rgba(0, 212, 255, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(255, 107, 74, 0.06), transparent 50%),
    linear-gradient(180deg, rgba(12, 22, 34, 0.2) 0%, transparent 100%);
  overflow: hidden;
}

.team::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 212, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 90%);
  pointer-events: none;
}

.team .container {
  position: relative;
  z-index: 1;
}

.team__head {
  max-width: 42rem;
  margin: 0 auto 1.35rem;
  text-align: center;
}

.team__head .team__rating {
  margin-top: 0.15rem;
  margin-bottom: 0.35rem;
}

.team__head:has(.team__rating) .section__lead {
  margin-top: 0;
}

.team__head:has(.team__rating) .section__title {
  margin-bottom: 0;
}

.team__head:has(.team__rating) .section__title::after {
  display: none;
}

.team__head:has(.team__rating) {
  margin-bottom: clamp(0.85rem, 1.8vw, 1.15rem);
}

.team__rating {
  display: flex;
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 1.35rem);
}

.team-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0;
  border: 0;
  background: none;
  text-decoration: none;
  transition: opacity 0.3s var(--ease);
}

.team-rating__score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 1.85rem);
  color: var(--accent-coral);
  line-height: 1;
}

.team-rating__stars {
  display: inline-flex;
  gap: 0.14rem;
  color: #F4C430;
  font-size: clamp(0.88rem, 1.55vw, 1.05rem);
  line-height: 1;
}

.team-rating__google {
  display: inline-flex;
  align-items: center;
  margin-left: 0.15rem;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1;
}

.team-rating__google i {
  background: conic-gradient(from 0deg, #EA4335 0 25%, #FBBC05 25% 50%, #34A853 50% 75%, #4285F4 75% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.team-rating:hover {
  opacity: 0.88;
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

/* Mobile: swipe slider instead of stacked cards */
@media (max-width: 559.98px) {
  .team__grid {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -1rem;
    padding: 0.35rem 1rem 0.25rem;
  }

  .team__grid::-webkit-scrollbar {
    display: none;
  }

  .team__grid > .team-card {
    flex: 0 0 min(78vw, 17.5rem);
    width: min(78vw, 17.5rem);
    max-width: none;
    margin-top: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .team-card:hover {
    transform: none;
  }
}

.team-card {
  position: relative;
  text-align: left;
  padding: 0.65rem;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(14, 26, 40, 0.72);
  border: 1px solid rgba(0, 212, 255, 0.14);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(0, 212, 255, 0.08);
}

.team-card__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.55rem;
  aspect-ratio: 4 / 5;
  background: var(--bg-elevated);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform-origin: center 28%;
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
  filter: saturate(0.9) contrast(1.06);
}

.team-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 16, 28, 0.72) 100%);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .team-card:hover .team-card__photo img {
    transform: scale(1.06);
    filter: saturate(1.05) contrast(1.08);
  }
}

.team-card__meta {
  position: relative;
  padding: 0 0.35rem 0.15rem 0.9rem;
  margin-left: 0.1rem;
}

.team-card__meta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
  color: var(--text-white);
}

.team-card__role {
  margin: 0;
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.team-ig {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0.95rem 1.15rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(0, 212, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(214, 36, 159, 0.12), rgba(0, 212, 255, 0.08)),
    rgba(14, 26, 40, 0.78);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.team-ig:hover {
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.team-ig__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 12px;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: #fff;
  font-size: 1.2rem;
}

.team-ig__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.team-ig__handle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-white);
}

.team-ig__label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.team-ig__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-cyan);
  white-space: nowrap;
}

.team-ig__cta i {
  font-size: 0.75rem;
  transition: transform 0.25s var(--ease);
}

.team-ig:hover .team-ig__cta i {
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .team-ig {
    flex-wrap: wrap;
  }

  .team-ig__cta {
    width: 100%;
    padding-left: calc(2.5rem + 1rem);
  }
}

@media (min-width: 560px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1.35rem;
  }

  .team-card:nth-child(even) {
    margin-top: 1.25rem;
  }
}

@media (min-width: 960px) {
  .team__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .team-card:nth-child(even) {
    margin-top: 0;
  }

  .team-card:nth-child(2),
  .team-card:nth-child(4) {
    margin-top: 1.15rem;
  }
}

.team .ig-inspire {
  margin-top: 1.5rem;
}

/* ==========================================================================
   WORKS / GALLERY
   ========================================================================== */
.works {
  position: relative;
  background:
    radial-gradient(ellipse 60% 45% at 85% 15%, rgba(0, 212, 255, 0.07), transparent 55%),
    linear-gradient(180deg, rgba(18, 32, 48, 0.55) 0%, rgba(12, 22, 34, 0.2) 100%);
}

/* Сторінка Роботи: галерея ближче до page-hero */
.page-hero + .section.works {
  padding-top: clamp(1rem, 2.5vw, 1.5rem);
}

.page-hero:has(+ .section.works) {
  padding-top: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

@media (max-width: 879px) {
  .page-hero:has(+ .section.works) {
    padding-top: 1rem;
  }

  .page-hero:has(+ .section.works) .breadcrumb {
    margin-bottom: 0.75rem;
  }
}

.works__head {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.works__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.works__item {
  position: relative;
  margin: 0;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.14);
  background: var(--bg-elevated);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  isolation: isolate;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.works__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 58%, rgba(6, 14, 24, 0.82) 100%);
  opacity: 0.9;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.works__item:hover {
  border-color: rgba(0, 212, 255, 0.38);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(0, 212, 255, 0.1);
  transform: translateY(-4px);
}

.works__item:hover::before {
  opacity: 1;
}

.works__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.75s var(--ease);
}

.works__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  padding: 0.85rem 0.9rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-on-dark, #fff);
  transform: translateY(4px);
  opacity: 0.95;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.works__tag {
  display: none;
}

.works__item:hover img {
  transform: scale(1.07);
}

.works__item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 700px) {
  .works__item::before {
    background: linear-gradient(180deg, transparent 45%, rgba(6, 14, 24, 0.88) 100%);
  }

  .works__item figcaption {
    padding: 1.15rem 1.1rem 1rem;
    font-size: 0.88rem;
  }

  .works__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .works__item--wide {
    grid-column: span 2;
    aspect-ratio: 21 / 9;
  }
}

@media (min-width: 1000px) {
  .works__gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .works__item--wide {
    grid-column: span 2;
  }

  .works__item:not(.works__item--wide) {
    aspect-ratio: 1;
  }

  .works__gallery--home .works__item {
    aspect-ratio: 4 / 3;
    grid-column: auto;
  }
}

.works__gallery--page {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.works__gallery--page .works__item {
  grid-column: auto;
  aspect-ratio: 4 / 3;
}

.works__item--mobile-extra {
  display: none;
}

@media (max-width: 699px) {
  .works__item--mobile-extra {
    display: block;
  }
}

.works__like {
  appearance: none;
  border: 0;
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.32rem 0.5rem;
  border-radius: 999px;
  background: rgba(12, 22, 34, 0.72);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  backdrop-filter: blur(8px);
  font-size: 1.12rem;
  color: rgba(var(--accent-rgb), 0.55);
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.works__like.is-on,
.works__like:hover,
.works__like:focus-visible {
  color: var(--accent-cyan);
  background: rgba(var(--accent-rgb), 0.16);
  border-color: var(--accent-cyan);
}

.works__like:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}

.works__like.is-pop {
  animation: works-like-pop 0.35s var(--ease);
}

.works__like-count {
  font-size: 0.82rem;
  font-weight: 700;
  min-width: 0.7rem;
  text-align: center;
  color: inherit;
}

@keyframes works-like-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

@media (min-width: 1000px) {
  .works__gallery--page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.works-tiktok-wrap {
  margin-top: 2.5rem;
}

.works-tiktok__title {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
}

.works-tiktok-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  padding: 0.9rem 0.85rem 0.8rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(0, 212, 255, 0.14);
  background: var(--bg-elevated);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  box-sizing: border-box;
}

.works-tiktok-profile__avatar {
  flex: 0 0 auto;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
}

.works-tiktok-profile__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.works-tiktok-profile__body {
  flex: 1 1 auto;
  min-width: 0;
}

.works-tiktok-profile__head {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.works-tiktok-profile__name {
  display: block;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-white);
  white-space: nowrap;
}

.works-tiktok-profile__name a {
  color: inherit;
  text-decoration: none;
}

.works-tiktok-profile__sep {
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(242, 247, 252, 0.32);
}

.works-tiktok-profile__handle {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(242, 247, 252, 0.58);
  white-space: nowrap;
  text-decoration: none;
}

.works-tiktok-profile__name a:hover,
.works-tiktok-profile__handle:hover {
  color: #fff;
}

.works-tiktok-profile__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.45rem;
  margin: 0 0 0.85rem;
}

.works-tiktok-profile__stats > div {
  display: flex;
  align-items: baseline;
  gap: 0.28rem;
}

.works-tiktok-profile__stats dt {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(242, 247, 252, 0.82);
}

.works-tiktok-profile__stats dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
}

.works-tiktok {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  background: transparent;
}

.works-tiktok__item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #0c1622;
}

.works-tiktok__item--mobile-extra {
  display: none;
}

@media (max-width: 699px) {
  .works-tiktok__item--mobile-extra {
    display: block;
  }
}

.works-tiktok__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.works-tiktok__pin {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  z-index: 2;
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  background: #fe2c55;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.works-tiktok__views {
  position: absolute;
  left: 0.45rem;
  bottom: 0.4rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
}

.works-tiktok__views i {
  font-size: 0.55rem;
}

@media (min-width: 700px) {
  .works-tiktok {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
  }

  .works-tiktok-profile {
    grid-column: 5 / span 2;
    grid-row: 2;
    margin-top: 0;
    align-self: stretch;
    min-width: 0;
    padding: 0.75rem 0.7rem;
    gap: 0.55rem;
  }

  .works-tiktok-profile__avatar {
    width: clamp(4.25rem, 7vw, 6.5rem);
    height: clamp(4.25rem, 7vw, 6.5rem);
  }

  .works-tiktok-profile__head {
    flex-wrap: nowrap;
    margin-bottom: 0.4rem;
    min-width: 0;
  }

  .works-tiktok-profile__name {
    font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  }

  .works-tiktok-profile__stats {
    margin-bottom: 0.55rem;
    gap: 0.4rem 0.85rem;
  }

  .works-tiktok-profile .btn--tiktok {
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .works-tiktok-profile {
    align-items: flex-start;
    gap: 1rem;
  }

  .works-tiktok-profile__avatar {
    width: 5.75rem;
    height: 5.75rem;
  }

  .works-tiktok-profile__head {
    flex-wrap: nowrap;
    gap: 0.35rem;
    min-width: 0;
  }

  .works-tiktok-profile__name {
    font-size: 1rem;
  }

  .works-tiktok-profile__handle {
    font-size: 0.82rem;
  }

  .works-tiktok-profile__stats {
    gap: 0.65rem 1rem;
  }

  .works-tiktok-profile .btn--tiktok {
    white-space: normal;
    text-align: center;
    min-width: 8.5rem;
  }
}

.works-tiktok__cta {
  text-align: center;
  margin-top: 1.5rem;
}

.btn--tiktok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 9.5rem;
  max-width: 100%;
  padding: 0.55rem 1.15rem;
  border: 0;
  border-radius: 4px;
  background: #fe2c55;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.works-tiktok-profile .btn--tiktok {
  width: auto;
}

.btn--tiktok__handle {
  font-weight: 700;
}

.btn--tiktok:hover,
.btn--tiktok:focus-visible {
  background: #e0254b;
  color: #fff;
  transform: translateY(-1px);
}

.btn--tiktok:focus-visible {
  outline: 2px solid #fe2c55;
  outline-offset: 3px;
}

/* Catalog page — IG + TikTok under video gallery */
.catalog-social-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 24.5rem));
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  margin-top: 1.5rem;
}

.catalog-social-row .works-ig-profile {
  grid-column: auto;
  aspect-ratio: auto;
  width: 100%;
  max-width: none;
  height: 100%;
  align-items: center;
  align-content: center;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}

.catalog-social-row .works-tiktok-profile {
  grid-column: auto;
  grid-row: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  row-gap: 0.75rem;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-top: 0;
  padding: 0.9rem 0.85rem 0.8rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(0, 212, 255, 0.14);
  background: var(--bg-elevated);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  min-width: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}

.catalog-social-row .works-ig-profile:hover,
.catalog-social-row .works-tiktok-profile:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: var(--glow-cyan), var(--shadow-soft);
  transform: translateY(-4px);
}

.catalog-social-row .works-tiktok-profile__avatar {
  width: 5.5rem;
  height: 5.5rem;
}

.catalog-social-row .works-tiktok-profile__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  align-self: center;
}

.catalog-social-row .works-ig-profile__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  align-self: center;
}

.catalog-social-row .works-tiktok-profile__name {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  white-space: normal;
}

.catalog-social-row .works-ig-profile .btn--ig,
.catalog-social-row .works-tiktok-profile .btn--tiktok {
  width: 100%;
  justify-content: center;
  margin-top: 0.15rem;
}

.catalog-social-row .works-ig-profile__highlights {
  align-self: stretch;
  margin-top: 0.75rem;
}

@media (max-width: 699px) {
  .catalog-social-row {
    grid-template-columns: minmax(0, 24.5rem);
  }
}

.catalog-social-row .works-tiktok-profile__stats {
  align-items: center;
}

.catalog-social-row .works-tt-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0 0.15rem;
}

.catalog-social-row .works-tt-actions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #121212;
  text-decoration: none;
  font-size: 0.72rem;
  line-height: 1;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.catalog-social-row .works-tt-actions__btn:hover,
.catalog-social-row .works-tt-actions__btn:focus-visible {
  background: #fff;
  color: #fe2c55;
  transform: translateY(-1px);
  outline: none;
}

/* Works — Instagram profile CTA */
.works-ig-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "avatar body"
    "highlights highlights";
  column-gap: 1rem;
  row-gap: 0.75rem;
  margin: 0;
  padding: 0.9rem 0.85rem 0.8rem;
  align-items: center;
  align-content: center;
  min-width: 0;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.14);
  background: var(--bg-elevated);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.works-ig-profile__avatar {
  grid-area: avatar;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
}

.works-ig-profile__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.works-ig-profile__body {
  grid-area: body;
  min-width: 0;
}

.works-ig-profile__name {
  display: block;
  margin: 0 0 0.3rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
}

.works-ig-profile__name a {
  color: inherit;
  text-decoration: none;
}

.works-ig-profile__name a:hover {
  color: #fff;
}

.works-ig-profile__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  margin: 0 0 0.4rem;
}

.works-ig-profile__stats > div {
  display: flex;
  align-items: baseline;
  gap: 0.28rem;
}

.works-ig-profile__stats dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(242, 247, 252, 0.82);
}

.works-ig-profile__stats dd {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-white);
}

.works-ig-profile__highlights {
  grid-area: highlights;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0.3rem;
}

.works-ig-profile__hl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  flex: 1 1 0;
  min-width: 0;
  text-decoration: none;
  color: rgba(242, 247, 252, 0.88);
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.works-ig-profile__hl img {
  width: 3.35rem;
  height: 3.35rem;
  object-fit: cover;
  border-radius: 50%;
  padding: 2px;
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  background: transparent;
}

.works-ig-profile .btn--ig {
  margin-top: 0.1rem;
  padding: 0.38rem 0.7rem 0.38rem 0.75rem;
  font-size: 0.78rem;
  gap: 0.32rem;
  max-width: 100%;
  flex-wrap: wrap;
}

.works-ig-profile .btn--ig i {
  font-size: 0.95rem;
}

.works-ig-profile .btn--ig__handle {
  font-size: 0.7rem;
  padding: 0.1rem 0.45rem;
}

@media (min-width: 900px) {
  .works-ig-profile__avatar {
    width: 6.25rem;
    height: 6.25rem;
  }

  .works-ig-profile__hl img {
    width: 3.7rem;
    height: 3.7rem;
  }
}

@media (max-width: 699px) {
  .works-ig-profile {
    grid-column: 1 / -1;
    aspect-ratio: auto;
    padding: 0.85rem 0.75rem 0.75rem;
  }

  .works-ig-profile__avatar {
    width: 4.75rem;
    height: 4.75rem;
  }

  .works-ig-profile .btn--ig {
    justify-content: center;
    padding: 0.38rem 0.6rem;
    font-size: 0.72rem;
  }

  .works-ig-profile__hl img {
    width: 2.85rem;
    height: 2.85rem;
  }
}

.works__ig-cta {
  text-align: center;
  margin-top: 2rem;
  overflow: visible;
}

.btn--ig {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 2.5rem;
  border: 0;
  border-radius: 50px;
  overflow: hidden;
  background-color: #c13584;
  background-image: var(--grad-instagram);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 22px rgba(193, 53, 132, 0.38);
  filter: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.3s var(--ease);
}

.btn--ig:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 0 28px rgba(193, 53, 132, 0.5);
  color: var(--text-on-dark);
}

.btn--ig i {
  font-size: 1.2rem;
}

.btn--ig__handle {
  padding: 0.2rem 0.7rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

@media (max-width: 480px) {
  .btn--ig {
    padding: 0.75rem 1.4rem;
    font-size: 0.92rem;
    gap: 0.4rem;
  }
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews {
  background: rgba(26, 48, 72, 0.5);
  border-block: 1px solid var(--border);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card__stars {
  color: var(--accent-coral);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-shadow: 0 0 12px rgba(255, 107, 74, 0.45);
}

.review-card__quote {
  color: var(--text-white);
  font-size: 1.05rem;
  line-height: 1.65;
  flex: 1;
}

.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.review-card__author strong {
  font-family: var(--font-display);
  font-weight: 600;
}

.review-card__author span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

@media (min-width: 800px) {
  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   CONTACTS
   ========================================================================== */
.contacts {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

.contacts__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.contacts__list {
  display: grid;
  gap: 1.25rem;
}

.contacts__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contacts__list i {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--accent-cyan);
}

.contacts__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.contacts__list a:hover {
  color: var(--accent-cyan);
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.contact-form:hover {
  transform: none; /* форма не «стрибає» */
}

.contact-form__row {
  display: grid;
  gap: 0.45rem;
}

.contact-form label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: rgba(15, 28, 44, 0.55);
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(155, 176, 201, 0.55);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15), var(--glow-cyan);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%239BB0C9' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: rgba(15, 28, 44, 0.55);
  padding-right: 2.5rem;
}

.contact-form select option {
  background: var(--bg-base);
  color: var(--text-white);
}

.contact-form__note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

@media (min-width: 880px) {
  .contacts__layout {
    grid-template-columns: 1fr 1.05fr;
    gap: 2rem;
    align-items: start;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding-block: 2rem 1.1rem;
  border-top: 1px solid var(--border);
  background: rgba(12, 22, 34, 0.9);
}

.footer__inner {
  display: grid;
  gap: 1.35rem;
  margin-bottom: 1.35rem;
}

.footer__inner--site {
  grid-template-columns: 1fr 1fr;
  column-gap: 1.25rem;
  row-gap: 1.35rem;
}

.footer__inner--site .footer__brand,
.footer__inner--site .footer__social {
  grid-column: 1 / -1;
}

.footer__inner--site .footer__social {
  width: 100%;
  max-width: none;
  align-items: center;
}

.footer__inner--site .footer__social-links {
  justify-content: center;
}

.footer__brand p {
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 22rem;
  line-height: 1.45;
}

.footer__cols,
nav.footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.28rem;
  margin: 0;
  padding: 0;
  align-content: start;
}

.footer__inner--site > .footer__cols,
.footer__inner--site > .footer__cols--menu {
  align-self: start;
}

.footer__cols-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-white);
  margin: 0;
}

.footer__cols a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
  line-height: 1.35;
}

.footer__cols a:hover {
  color: var(--accent-cyan);
}

.footer__social {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  gap: 0.65rem;
}

.footer__social-links {
  display: flex;
  gap: 0.75rem;
}

.footer__reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.4rem 0.55rem 0.45rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.footer__reviews-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: nowrap;
}

.footer__reviews-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-coral);
  line-height: 1;
}

.footer__reviews-stars {
  display: inline-flex;
  gap: 0.12rem;
  color: #F4C430;
  font-size: 0.72rem;
  line-height: 1;
}

.footer__reviews-google {
  display: inline-flex;
  align-items: center;
  margin-left: 0.15rem;
  font-size: 0.95rem;
  color: #FFFFFF;
  line-height: 1;
}

.footer__reviews-google i {
  background: conic-gradient(from 0deg, #EA4335 0 25%, #FBBC05 25% 50%, #34A853 50% 75%, #4285F4 75% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer__reviews-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.2;
  text-align: center;
}

.footer__reviews:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 212, 255, 0.45);
  background: rgba(0, 212, 255, 0.08);
  box-shadow: var(--glow-cyan);
}

.footer__reviews:hover .footer__reviews-label {
  color: rgba(232, 241, 250, 0.9);
}

.social-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.social-link:hover {
  color: var(--text-white);
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.footer__meta {
  color: rgba(155, 176, 201, 0.7);
}

.footer__meta a {
  color: inherit;
  transition: color 0.25s var(--ease);
}

.footer__meta a:hover {
  color: var(--accent-cyan);
}

.footer__credit {
  margin-left: 0.15rem;
}

.footer__credit a {
  color: rgba(232, 241, 250, 0.78);
  text-decoration: underline;
  text-decoration-color: rgba(0, 212, 255, 0.35);
  text-underline-offset: 0.18em;
  transition: color 0.25s var(--ease), text-decoration-color 0.25s var(--ease);
}

.footer__credit a:hover {
  color: var(--accent-cyan);
  text-decoration-color: var(--accent-cyan);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: start;
  }

  .footer__inner--site {
    grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(10rem, 1fr)) auto;
    column-gap: 2rem;
  }

  .footer__inner--site > .footer__cols,
  .footer__inner--site > .footer__cols--menu {
    min-width: 0;
    width: 100%;
  }

  .footer__inner--site .footer__brand,
  .footer__inner--site .footer__social {
    grid-column: auto;
  }

  .footer__inner--site .footer__social {
    width: max-content;
    align-items: stretch;
  }

  .footer__inner--site .footer__social-links {
    justify-content: flex-start;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ---------- Nav active + dropdown ---------- */
.nav a.is-active {
  color: #FFFFFF;
}

.nav a.is-active::after {
  transform: scaleX(1);
}

.nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav > a,
.nav__item > span {
  display: inline-flex;
  align-items: center;
  line-height: 1.25;
}

.nav__item > span {
  gap: 0.35rem;
}

.nav__item > a i,
.nav__item > span i {
  font-size: 0.65rem;
  opacity: 0.85;
}

.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform: none;
  min-width: 230px;
  padding: 0.35rem;
  padding-top: 0.55rem;
  background: #1A3048;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  z-index: 120;
}

/* Invisible hover bridge so the menu doesn't close on the way down */
.nav__dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav__dropdown a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.55rem;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
}

.nav__dropdown a::after {
  display: none;
}

.nav__dropdown a i {
  flex-shrink: 0;
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  border-radius: 6px;
  font-size: 0.7rem;
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.18);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.nav__dropdown a:hover,
.nav__dropdown a.is-active {
  background: rgba(0, 212, 255, 0.1);
  color: #FFFFFF;
}

.nav__dropdown a:hover i,
.nav__dropdown a.is-active i {
  background: rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.4);
  color: var(--accent-cyan-bright);
}

@media (min-width: 960px) {
  .nav__item:hover .nav__dropdown,
  .nav__item:focus-within .nav__dropdown {
    display: block;
    animation: fadeDown 0.25s var(--ease);
  }
}

/* Mobile: dropdown as nested list */
@media (max-width: 959px) {
  .nav-toggle:checked ~ .nav > a,
  .nav-toggle:checked ~ .nav > .nav__item {
    width: 100%;
  }

  .nav-toggle:checked ~ .nav > .nav__item {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-toggle:checked ~ .nav > a {
    display: flex;
    align-items: center;
    padding: 0.85rem 0;
    font-size: 1rem;
    white-space: normal;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-toggle:checked ~ .nav > a::after {
    display: none;
  }

  .nav-toggle:checked ~ .nav .nav__item > span {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.85rem 0;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-toggle:checked ~ .nav .nav__dropdown {
    display: grid;
    gap: 0.1rem;
    position: static;
    transform: none;
    min-width: 0;
    margin: 0;
    padding: 0.25rem 0 0.65rem;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .nav-toggle:checked ~ .nav .nav__dropdown::before {
    display: none;
  }

  .nav-toggle:checked ~ .nav .nav__fly-link {
    border-radius: var(--radius-sm);
  }

  .nav-toggle:checked ~ .nav .nav__fly-link .nav__fly-plus {
    transition: transform 0.25s var(--ease);
  }

  .nav-toggle:checked ~ .nav .nav__fly.is-open > .nav__fly-link {
    background: rgba(0, 212, 255, 0.1);
    color: #fff;
  }

  .nav-toggle:checked ~ .nav .nav__fly.is-open > .nav__fly-link .nav__fly-plus {
    transform: rotate(45deg);
    color: var(--accent-cyan-bright);
  }

  .nav-toggle:checked ~ .nav .nav__flyout {
    display: none;
    position: static;
    margin: 0.15rem 0 0.35rem 0.75rem;
    min-width: 0;
    padding: 0.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    box-shadow: none;
    gap: 0.05rem;
  }

  .nav-toggle:checked ~ .nav .nav__fly.is-open > .nav__flyout {
    display: grid;
  }
}

.nav__fly {
  position: relative;
}

.nav__fly-link {
  width: 100%;
}

.nav__fly-link .nav__fly-plus {
  margin-left: auto;
  width: auto;
  height: auto;
  padding: 0;
  background: none;
  border: none;
  font-size: 0.62rem;
  opacity: 0.75;
  color: inherit;
}

.nav__flyout {
  display: none;
  min-width: 280px;
  padding: 0.4rem;
  background: #243B55;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  z-index: 130;
}

.nav__flyout a {
  font-size: 0.78rem;
  padding: 0.42rem 0.65rem;
}

.nav__flyout a i {
  width: 1.4rem;
  height: 1.4rem;
  font-size: 0.62rem;
}

@media (min-width: 960px) {
  .nav__flyout {
    position: absolute;
    left: calc(100% + 6px);
    top: -6px;
  }

  .nav__flyout::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 0;
    bottom: 0;
    width: 12px;
  }

  .nav__fly:hover > .nav__fly-link,
  .nav__fly:focus-within > .nav__fly-link {
    background: rgba(0, 212, 255, 0.12);
    color: #fff;
  }

  .nav__fly:hover > .nav__fly-link i,
  .nav__fly:focus-within > .nav__fly-link i {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
    color: var(--accent-cyan-bright);
  }

  .nav__fly:hover > .nav__fly-link .nav__fly-plus,
  .nav__fly:focus-within > .nav__fly-link .nav__fly-plus {
    background: none;
    border: none;
    color: var(--accent-cyan-bright);
  }

  .nav__fly:hover > .nav__flyout,
  .nav__fly:focus-within > .nav__flyout {
    display: grid;
    animation: fadeDown 0.2s var(--ease);
  }
}

.subpage-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .subpage-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.subpage-card {
  padding: 1.2rem 1.25rem 1.3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.subpage-card h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.subpage-card p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.subpage-card p:last-child {
  margin-bottom: 0;
}

.article-stack {
  display: grid;
  gap: 2rem;
  max-width: 860px;
}

.article-copy h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.85rem;
}

.article-copy p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.article-copy p:last-child {
  margin-bottom: 0;
}

.article-copy .check-list {
  margin: 0.85rem 0 1.1rem;
}

.subpage-related {
  display: grid;
  gap: 0.7rem;
}

@media (min-width: 720px) {
  .subpage-related {
    grid-template-columns: repeat(2, 1fr);
  }
}

.subpage-related a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-white);
}

.subpage-related a:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

/* ==========================================================================
   INNER PAGES
   ========================================================================== */
.page-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  text-align: left;
}

.page-hero--air {
  padding: clamp(2.75rem, 5.5vw, 4rem) 0 clamp(3.75rem, 7.5vw, 5.25rem);
}

.page-hero--video {
  isolation: isolate;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background-color: #080e18;
  background-image: var(--hero-poster);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  /* Keep CSS poster visible until first frame — avoids black wait on first load */
  opacity: 0;
  transition: opacity 0.35s ease;
}

.page-hero__video.is-ready {
  opacity: 1;
}

/* Кондиціонери / Вентиляція: кадр максимально вгору */
.page-hero--air.page-hero--video .page-hero__video,
.page-hero--vent.page-hero--video .page-hero__video {
  object-position: center top;
}

.page-hero__media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 24, 0.72) 0%, rgba(8, 14, 24, 0.58) 45%, rgba(8, 14, 24, 0.78) 100%),
    linear-gradient(90deg, rgba(8, 14, 24, 0.55) 0%, rgba(8, 14, 24, 0.28) 55%, rgba(8, 14, 24, 0.5) 100%);
  box-shadow: inset 0 -1px 0 rgba(0, 212, 255, 0.12);
}

/* Video hero: lighter overlay so the clip reads better */
.page-hero--video .page-hero__media-shade {
  background:
    linear-gradient(180deg, rgba(8, 14, 24, 0.66) 0%, rgba(8, 14, 24, 0.52) 45%, rgba(8, 14, 24, 0.72) 100%),
    linear-gradient(90deg, rgba(8, 14, 24, 0.5) 0%, rgba(8, 14, 24, 0.24) 55%, rgba(8, 14, 24, 0.46) 100%);
}

.page-hero--video .container {
  position: relative;
  z-index: 1;
}

/* Mobile / narrow: keep video for atmosphere; poster shows until first frame */
@media (max-width: 900px) {
  .page-hero--video .page-hero__media {
    background-image: var(--hero-poster);
  }
}

@media (min-width: 901px) {
  .page-hero--video .page-hero__media {
    background-image: var(--hero-poster-lg, var(--hero-poster));
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero__video {
    display: none !important;
  }

  .page-hero__media-shade {
    background: rgba(8, 14, 24, 0.35);
  }
}

.page-hero--montazh {
  padding: clamp(2.75rem, 5.5vw, 4rem) 0 clamp(3.75rem, 7.5vw, 5.25rem);
}

.page-hero--montazh .page-hero__actions {
  margin-top: 1.75rem;
}

.page-hero__title--stack {
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.page-hero__title--stack .page-hero__place {
  margin: 0;
  font-size: clamp(1.25rem, 3.2vw, 1.65rem);
  padding: 0.55rem 1.15rem 0.6rem;
}

.page-hero__title--stack .page-hero__place i {
  font-size: 1em;
}

.page-hero--air .hero__air {
  z-index: 0;
}

.page-hero--air .container {
  position: relative;
  z-index: 1;
}

.page-hero--air.page-hero--perks .page-hero__inner {
  max-width: none;
}

.page-hero--air.page-hero--perks .page-hero__split {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.page-hero--air.page-hero--perks .page-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
  max-width: 24rem;
  margin-top: 0;
}

.page-hero--air.page-hero--perks .hero-perks--aside {
  margin-top: 0;
  width: 100%;
  max-width: none;
  gap: 0.55rem;
}

.page-hero--air.page-hero--perks .hero-perks--aside li,
.page-hero--air.page-hero--perks .page-hero__rating {
  min-height: 3.35rem;
  width: 100%;
  box-sizing: border-box;
}

.page-hero--air.page-hero--perks .page-hero__actions {
  margin-top: 1.75rem;
}

@media (min-width: 880px) {
  .page-hero--air.page-hero--perks .page-hero__split {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
    column-gap: 2.75rem;
  }
}

@media (min-width: 900px) {
  .page-hero--air.page-hero--perks .page-hero__actions {
    width: auto;
    gap: 0.8rem;
  }

  .page-hero--air.page-hero--perks .page-hero__actions .btn {
    flex: 0 1 auto;
    padding: 0.85rem 1.55rem;
    font-size: 0.9375rem;
  }
}

.page-hero__rating {
  margin-top: 0;
  padding: 0.75rem 1rem 0.78rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.32);
  background: rgba(12, 22, 34, 0.55);
  backdrop-filter: var(--blur-card);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.page-hero__rating .b {
  color: var(--text-white);
}

.page-hero__rating .blog-article__stars {
  font-size: 1rem;
  color: var(--accent-cyan);
}

.page-hero__rating .blog-rate__btn {
  color: rgba(0, 212, 255, 0.28);
}

.page-hero__rating .blog-rate__btn.is-on,
.page-hero__rating .blog-rate__btn:hover,
.page-hero__rating .blog-rate__btn:focus-visible {
  color: var(--accent-cyan);
  text-shadow: 0 0 12px rgba(0, 212, 255, 0.35);
}

.page-hero__rating .blog-article__rating-num {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.page-hero__inner > .page-hero__rating--under-lead {
  margin-top: 0.85rem;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.page-hero__inner > .page-hero__rating--under-lead .b {
  color: var(--text-white);
  font-weight: 600;
}

.page-hero__inner > .page-hero__rating--under-lead .blog-article__stars {
  font-size: 1rem;
  color: var(--accent-cyan);
}

.page-hero__inner > .page-hero__rating--under-lead .blog-rate__btn {
  color: rgba(0, 212, 255, 0.28);
}

.page-hero__inner > .page-hero__rating--under-lead .blog-rate__btn.is-on,
.page-hero__inner > .page-hero__rating--under-lead .blog-rate__btn:hover,
.page-hero__inner > .page-hero__rating--under-lead .blog-rate__btn:focus-visible {
  color: var(--accent-cyan);
  text-shadow: 0 0 12px rgba(0, 212, 255, 0.35);
}

.page-hero__inner > .page-hero__rating--under-lead .blog-article__rating-num {
  display: inline;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
}

.page-hero__share-links {
  display: none !important;
}

@media (max-width: 879px) {
  .page-hero--air.page-hero--perks {
    padding-top: 1rem;
    padding-bottom: 1.75rem;
  }

  .page-hero--air.page-hero--perks .breadcrumb {
    margin-bottom: 0.65rem;
  }

  .page-hero--air.page-hero--perks .page-hero__aside {
    max-width: none;
  }

  .page-hero--air .page-hero__title--vent {
    font-size: clamp(2.3rem, 7.2vw, 3rem);
  }

  /*
    Mobile hero is tall, so cover shows the full video frame (incl. center watermark).
    Desktop is wide/short + object-position:top, so the mark stays out of view.
    Same crop for Kondicionery (--air) and Ventilyaciya (--vent).
  */
  .page-hero--air.page-hero--video,
  .page-hero--vent.page-hero--video {
    background: var(--bg-deep);
  }

  .page-hero--air.page-hero--video .page-hero__media,
  .page-hero--vent.page-hero--video .page-hero__media {
    inset: 0 0 auto 0;
    height: min(60svh, 28rem);
    overflow: hidden;
    background-position: center top;
    background-size: 165% auto;
    -webkit-mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 60%,
      rgba(0, 0, 0, 0.75) 78%,
      rgba(0, 0, 0, 0.28) 90%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 60%,
      rgba(0, 0, 0, 0.75) 78%,
      rgba(0, 0, 0, 0.28) 90%,
      transparent 100%
    );
  }

  .page-hero--air.page-hero--video .page-hero__video,
  .page-hero--vent.page-hero--video .page-hero__video {
    object-fit: cover;
    object-position: center top;
    width: 100%;
    height: 100%;
    transform: scale(1.85);
    transform-origin: center top;
  }

  .page-hero--air.page-hero--video .page-hero__media-shade,
  .page-hero--vent.page-hero--video .page-hero__media-shade {
    box-shadow: none;
    background:
      linear-gradient(
        180deg,
        rgba(8, 14, 24, 0.52) 0%,
        rgba(8, 14, 24, 0.38) 40%,
        rgba(8, 14, 24, 0.48) 68%,
        rgba(8, 14, 24, 0.78) 88%,
        var(--bg-deep) 100%
      ),
      linear-gradient(
        90deg,
        rgba(8, 14, 24, 0.38) 0%,
        rgba(8, 14, 24, 0.14) 55%,
        rgba(8, 14, 24, 0.32) 100%
      );
  }

  .page-hero--air.page-hero--perks .hero-perks--aside {
    margin-top: 0.85rem;
  }

  .page-hero--air.page-hero--perks .page-hero__actions {
    margin-top: 1.15rem;
  }
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 90%, rgba(255, 107, 74, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin-inline: 0;
  margin-right: auto;
  text-align: left;
  animation: fadeUp 0.7s var(--ease) both;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
}

.breadcrumb a:hover {
  color: var(--accent-cyan);
}

.breadcrumb__sep {
  opacity: 0.45;
}

.breadcrumb [aria-current="page"] {
  color: var(--text-white);
}

.page-hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.75rem;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.page-hero__place {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  padding: 0.45rem 0.9rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.45);
  background: rgba(0, 212, 255, 0.12);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.22);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--accent-cyan);
  line-height: 1.2;
}

.page-hero__place i {
  color: var(--accent-coral);
  font-size: 0.95em;
  filter: drop-shadow(0 0 8px rgba(255, 107, 74, 0.45));
}

.page-hero__title--inline {
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  line-height: 1.35;
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.page-hero__lead {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 879px) {
  .page-hero--chystka {
    padding-top: 1rem;
  }

  .page-hero--chystka .breadcrumb {
    margin-bottom: 0.65rem;
  }

  .page-hero--chystka .page-hero__copy,
  .page-hero--chystka .page-hero__actions,
  .page-hero--chystka .price-chips {
    min-width: 0;
    max-width: 100%;
  }

  .page-hero--chystka .page-hero__lead {
    white-space: normal;
    font-size: clamp(0.9rem, 3.6vw, 1.05rem);
    letter-spacing: -0.01em;
  }

  .page-hero--chystka .price-include-note.montazh-prices__lead span:first-child,
  .page-hero--chystka .price-include-note.montazh-prices__lead span:last-child {
    white-space: normal;
    font-size: clamp(0.78rem, 3.2vw, 0.92rem);
    letter-spacing: -0.01em;
  }

  .page-hero--chystka .hero-perks--aside li {
    white-space: normal;
    font-size: clamp(0.8rem, 3.3vw, 0.92rem);
    letter-spacing: -0.01em;
    padding-inline: 0.7rem 0.75rem;
  }

  .page-hero--chystka .hero-perks--aside li > span {
    white-space: normal;
  }

  html[lang="ru"] .page-hero--chystka .price-chip__label {
    font-size: clamp(0.58rem, 2.7vw, 0.68rem);
  }

  html[lang="ru"] .page-hero--chystka .page-hero__actions .btn {
    font-size: clamp(0.64rem, 2.7vw, 0.78rem);
    padding-inline: 0.35rem;
  }
}

.page-hero__lead-accent {
  color: var(--accent-coral-soft);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow:
    0 0 18px rgba(255, 107, 74, 0.65),
    0 0 36px rgba(255, 107, 74, 0.35);
}

.page-hero__inner:has(.page-hero__lead--nowrap) {
  max-width: none;
}

.page-hero__lead--nowrap {
  white-space: nowrap;
  max-width: none;
}

@media (max-width: 720px) {
  .page-hero__lead--nowrap {
    white-space: normal;
  }
}

.page-hero__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  width: 100%;
}

.page-hero__actions .btn {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
  white-space: nowrap;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .page-hero__actions {
    gap: 0.5rem;
    min-width: 0;
    max-width: 100%;
  }

  .page-hero__actions .btn {
    padding: 0.75rem 0.45rem;
    font-size: clamp(0.68rem, 2.9vw, 0.82rem);
    letter-spacing: 0;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
  }
}

/* Content split */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-soft);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.split__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.split__text p:last-child {
  margin-bottom: 0;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .split--reverse .split__media {
    order: 2;
  }
}

/* Feature / checklist */
.check-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text-muted);
}

.check-list i {
  color: var(--accent-cyan);
  margin-top: 0.2rem;
  flex-shrink: 0;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.check-list--package {
  max-width: none;
  width: 100%;
  margin-inline: auto;
  gap: 0;
  padding: 0.35rem 0;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 14px;
  background: rgba(12, 22, 34, 0.5);
  overflow: hidden;
}

.check-list--package li {
  align-items: flex-start;
  gap: 0.9rem;
  margin: 0;
  padding: 0.85rem 1.2rem;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
  background: transparent;
  color: rgba(232, 241, 250, 0.94);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;
  transition: background 0.25s var(--ease);
}

.check-list--package li:last-child {
  border-bottom: 0;
}

.check-list--package li:hover {
  border-color: transparent;
  background: rgba(0, 212, 255, 0.05);
}

.check-list--package li:last-child:hover {
  border-bottom: 0;
}

.check-list--package.check-list--cols {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  padding: 0.45rem 0;
  border: 1px solid rgba(0, 212, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%),
    var(--bg-elevated);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.check-list--package.check-list--cols li {
  color: var(--text-white);
  border-bottom-color: rgba(0, 212, 255, 0.16);
}

.check-list--package.check-list--cols li:hover {
  background: rgba(0, 212, 255, 0.1);
}

@media (min-width: 720px) {
  .check-list--package.check-list--cols {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
  }

  .check-list--package.check-list--cols li {
    min-height: 100%;
  }

  .check-list--package.check-list--cols li:hover {
    border-color: rgba(0, 212, 255, 0.16);
    border-bottom-color: rgba(0, 212, 255, 0.16);
  }

  .check-list--package.check-list--cols li:nth-child(-n+3) {
    border-right: 1px solid rgba(0, 212, 255, 0.16);
  }

  .check-list--package.check-list--cols li:nth-child(3),
  .check-list--package.check-list--cols li:nth-child(6),
  .check-list--package.check-list--cols li:nth-child(3):hover,
  .check-list--package.check-list--cols li:nth-child(6):hover {
    border-bottom: 0;
  }
}

.check-list--package i {
  width: auto;
  height: auto;
  margin-top: 0.3rem;
  display: inline;
  place-items: unset;
  border-radius: 0;
  background: none;
  color: var(--accent-cyan);
  font-size: 0.85rem;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.35);
  box-shadow: none;
}

.price-include-note--callout {
  max-width: none;
  width: 100%;
  margin: 1.25rem auto 0;
  padding: 1rem 1.15rem 1.05rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 74, 0.28);
  border-left: 3px solid var(--accent-coral);
  background: rgba(255, 107, 74, 0.08);
  color: rgba(232, 241, 250, 0.88);
  font-size: 0.95rem;
  line-height: 1.5;
}

.vent-price-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.vent-price-cta .vent-consult {
  margin: 0;
}

.vent-price-cta .vent-consult .btn {
  min-width: 0;
  white-space: nowrap;
}

.vent-price-cta .price-include-note--callout {
  width: auto;
  margin: 0;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 0.35rem 0.75rem;
}

.vent-price-cta .montazh-prices__lead span {
  display: inline;
  white-space: normal;
}

@media (max-width: 640px) {
  .vent-price-cta {
    grid-template-columns: 1fr;
  }

  .vent-price-cta .vent-consult .btn {
    width: 100%;
  }
}

/* Process steps */
.process {
  display: grid;
  gap: 1.25rem;
}

.process__step {
  position: relative;
  padding: 1.5rem;
  background: var(--bg-card);
  backdrop-filter: var(--blur-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.process__step:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: var(--glow-cyan);
}

.process__num {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
  display: block;
}

.process__step h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.process__step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (min-width: 700px) {
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .process {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Pricing */
.price-grid {
  display: grid;
  gap: 1.25rem;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.price-card__desc {
  color: var(--text-muted);
  font-size: 0.925rem;
  flex: 1;
}

.price-card__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-card__note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (min-width: 700px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CTA band */
/* Blog links band — card carousel */
.blog-links-band {
  padding-block: clamp(2rem, 4vw, 3rem);
}

.blog-links-band .section__head {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  max-width: none;
  margin-inline: 0;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: left;
}

.blog-links-band .section__head--left {
  justify-content: flex-start;
  text-align: left;
  margin-inline: 0;
}

.blog-links-band .section__title {
  text-align: left;
}

.blog-links-band .section__head--left .section__title {
  text-align: left;
}

.blog-links-band .section__head .section__title::after {
  margin-left: 0;
  margin-right: auto;
}

.blog-links__all {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-cyan);
  text-decoration: none;
  white-space: nowrap;
  margin-bottom: 0.35rem;
}

.blog-links__all:hover {
  text-decoration: underline;
}

@media (max-width: 540px) {
  .blog-links-band .section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding-bottom: 0;
  }

  .blog-links-band .section__head--left {
    align-items: flex-start;
  }

  .blog-links__all {
    position: static;
    margin-bottom: 0;
  }
}

.blog-links-track {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,212,255,.25) transparent;
  padding: 0.3rem 0 0.8rem;
  margin-top: 1.2rem;
}

.blog-links-track::-webkit-scrollbar {
  height: 5px;
}

.blog-links-track::-webkit-scrollbar-thumb {
  background: rgba(0,212,255,.25);
  border-radius: 4px;
}

.blog-link-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

@media (min-width: 720px) {
  .blog-link-card {
    flex: 0 0 280px;
  }
}

.blog-link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.35);
}

.blog-link-card__img {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-elevated);
}

.blog-link-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.blog-link-card:hover .blog-link-card__img img {
  transform: scale(1.05);
}

.blog-link-card__body {
  padding: 0.75rem 0.9rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.blog-link-card__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.blog-link-card__tag {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  background: var(--accent-cyan);
  color: #0a0e14;
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-link-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-white);
}

/* ---- */

.cta-band {
  padding-block: clamp(3rem, 6vw, 4.5rem);
  border-block: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.12) 0%, transparent 60%),
    rgba(26, 48, 72, 0.65);
  text-align: center;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.cta-band__title--inline {
  font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  line-height: 1.4;
  max-width: 48rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.cta-band__text {
  color: var(--text-muted);
  max-width: none;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .cta-band__text {
    white-space: normal;
    max-width: 22rem;
  }
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* Full-bleed Google Map — dusk-toned */
.map-section {
  position: relative;
  width: 100%;
  border-top: 1px solid rgba(0, 212, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(0, 212, 255, 0.08);
}

.map-section__frame {
  position: relative;
  width: 100%;
  height: clamp(280px, 42vw, 420px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(0, 212, 255, 0.1), transparent 70%),
    var(--bg-deep);
  isolation: isolate;
}

.map-section__placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 1.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  pointer-events: none;
}

.map-section__placeholder i {
  font-size: 1.35rem;
  color: var(--accent-cyan);
  opacity: 0.85;
}

.map-section__frame.is-ready .map-section__placeholder {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.map-section__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  /* Light Google map → dark dusk palette */
  filter:
    invert(0.92)
    hue-rotate(180deg)
    brightness(0.78)
    contrast(1.05)
    saturate(0.55);
  transition: filter 0.45s ease, opacity 0.35s ease;
}

.map-section__frame.is-ready iframe {
  opacity: 1;
}

.map-section__frame:hover iframe {
  filter: none;
}

/* Soft vignette + brand tint over the map */
.map-section__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(21, 37, 54, 0.88) 0%, transparent 18%, transparent 78%, rgba(18, 30, 44, 0.92) 100%),
    linear-gradient(90deg, rgba(21, 37, 54, 0.45) 0%, transparent 12%, transparent 88%, rgba(21, 37, 54, 0.45) 100%),
    linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, transparent 42%, rgba(255, 107, 74, 0.1) 100%);
  opacity: 1;
  transition: opacity 0.45s ease;
}

.map-section__frame:hover::before {
  opacity: 0.2;
}

.map-section__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow:
    inset 0 0 80px rgba(12, 22, 34, 0.55),
    inset 0 0 0 1px rgba(0, 212, 255, 0.12);
  opacity: 1;
  transition: opacity 0.45s ease, box-shadow 0.45s ease;
}

.map-section__frame:hover::after {
  opacity: 0.35;
  box-shadow:
    inset 0 0 40px rgba(12, 22, 34, 0.2),
    inset 0 0 0 1px rgba(0, 212, 255, 0.2);
}

.map-section__caption {
  position: relative;
  padding: 1rem 0;
  background:
    linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.06), transparent),
    rgba(12, 22, 34, 0.98);
  border-top: 1px solid rgba(0, 212, 255, 0.14);
}

.map-section__caption p {
  display: block;
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(232, 241, 250, 0.78);
  letter-spacing: 0.01em;
}

.map-section__caption i {
  margin-right: 0.4rem;
  color: var(--accent-coral);
  filter: drop-shadow(0 0 8px rgba(255, 107, 74, 0.45));
}

/* Related services */
.related {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .related {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Section link (home previews) */
.section__more {
  text-align: center;
  margin-top: 2rem;
}

/* Team expanded */
.team-card__bio {
  margin-top: 0.65rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.team__grid--page {
  gap: 2rem;
}

/* Map on contacts page */
.map-card {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-soft);
  min-height: 280px;
  position: relative;
  padding: 0;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  filter: none;
  position: relative;
  z-index: 1;
  background: transparent;
}

.map-card__placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-content: center;
  gap: 0.45rem;
  justify-items: center;
  padding: 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  background:
    linear-gradient(160deg, rgba(0, 212, 255, 0.08), rgba(14, 26, 40, 0.92)),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.02) 10px,
      rgba(255, 255, 255, 0.02) 20px
    );
}

.map-card__placeholder i {
  font-size: 1.35rem;
  color: var(--accent-cyan);
}

.map-card.is-ready .map-card__placeholder {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

/* Toast — Telegram form handoff */
.toast {
  position: fixed;
  left: 50%;
  bottom: max(1.5rem, env(safe-area-inset-bottom, 0px) + 1.25rem);
  z-index: 3000;
  max-width: min(92vw, 420px);
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  background: rgba(12, 22, 34, 0.96);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(16px);
  transition:
    opacity 0.35s var(--ease),
    visibility 0.35s var(--ease),
    transform 0.35s var(--ease);
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* FAQ */
.faq {
  display: grid;
  gap: 1rem;
  max-width: 720px;
  margin-inline: auto;
}

.faq details {
  background: var(--bg-card);
  backdrop-filter: var(--blur-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.3s var(--ease);
}

.faq details[open],
.faq details:hover {
  border-color: rgba(0, 212, 255, 0.35);
}

.faq summary {
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--accent-cyan);
  font-size: 1.25rem;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin-top: 0.85rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Google rating block on reviews page */
.reviews--page {
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
}

.reviews__intro {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 800px) {
  .reviews__intro {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .reviews__intro {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reviews-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 1.15rem 1.35rem 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  box-sizing: border-box;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.reviews-rating__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: nowrap;
}

.reviews-rating__score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--accent-coral);
  line-height: 1;
}

.reviews-rating__stars {
  display: inline-flex;
  gap: 0.22rem;
  color: #F4C430;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1;
}

.reviews-rating__google {
  display: inline-flex;
  align-items: center;
  margin-left: 0.2rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1;
}

.reviews-rating__google i {
  background: conic-gradient(from 0deg, #EA4335 0 25%, #FBBC05 25% 50%, #34A853 50% 75%, #4285F4 75% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reviews-rating__label {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.2;
  text-align: center;
}

.reviews-rating__hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

.reviews-rating:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.45);
  background: rgba(0, 212, 255, 0.08);
  box-shadow: var(--glow-cyan);
}

.reviews-rating:hover .reviews-rating__hint {
  color: rgba(232, 241, 250, 0.9);
}

/* Reviews page denser grid */
.reviews__grid--page {
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .reviews__grid--page {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .reviews__grid--page {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .contact-fab__toggle::before,
  .contact-fab__toggle::after {
    display: none;
  }
}

/* Floating contact widget */
.contact-fab {
  position: fixed;
  right: max(1.75rem, env(safe-area-inset-right, 0px) + 1.75rem);
  bottom: max(1.75rem, env(safe-area-inset-bottom, 0px) + 1.75rem);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

/* Scroll to top — left */
.scroll-top {
  position: fixed;
  left: max(1.25rem, env(safe-area-inset-left, 0px) + 1rem);
  bottom: max(1.75rem, env(safe-area-inset-bottom, 0px) + 1.75rem);
  z-index: 1200;
  width: 3.35rem;
  height: 3.35rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 50%;
  background: rgba(12, 22, 34, 0.92);
  color: var(--accent-cyan);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 212, 255, 0.08);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.28s var(--ease),
    visibility 0.28s var(--ease),
    transform 0.28s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: rgba(0, 212, 255, 0.14);
  border-color: var(--accent-cyan);
  color: #fff;
}

.scroll-top:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}

.scroll-top i {
  font-size: 1.05rem;
}

@media (max-width: 600px) {
  .scroll-top {
    width: 2.95rem;
    height: 2.95rem;
    left: max(0.85rem, env(safe-area-inset-left, 0px) + 0.65rem);
  }
}

/* Mobile bottom navigation (як Клімат+, у стилі SV Service) */
.site-mobile-nav {
  display: none;
}

@media (max-width: 899px) {
  body.has-site-mobile-nav {
    padding-bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px));
  }

  .contact-fab,
  .scroll-top,
  .service-toc-toggle {
    display: none !important;
  }

  body.nav-open .site-mobile-nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .site-mobile-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1250;
    display: flex;
    align-items: stretch;
    justify-content: space-evenly;
    width: 100%;
    gap: 0;
    min-height: 3.85rem;
    padding: 0.35rem 0.15rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(0, 212, 255, 0.22);
    background: rgba(12, 22, 34, 0.98);
    backdrop-filter: blur(16px);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.35);
    transition: opacity 0.22s var(--ease), visibility 0.22s var(--ease);
  }

  .site-mobile-nav > .site-mobile-nav__btn,
  .site-mobile-nav > .site-mobile-nav__contact,
  .site-mobile-nav > .site-mobile-nav__services {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  a.site-mobile-nav__btn {
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
  }

  .site-mobile-nav__btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    width: 100%;
    min-width: 0;
    min-height: 3.15rem;
    margin: 0;
    padding: 0.15rem 0.1rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(232, 241, 250, 0.86);
    font: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .site-mobile-nav__btn:hover,
  .site-mobile-nav__btn:focus-visible,
  .site-mobile-nav__btn.is-active,
  .site-mobile-nav__contact.is-open .site-mobile-nav__btn,
  .site-mobile-nav__services.is-open .site-mobile-nav__btn {
    color: var(--accent-cyan);
  }

  .site-mobile-nav__btn.is-disabled {
    opacity: 0.42;
  }

  .site-mobile-nav__btn--like.is-liked {
    color: #fe2c55;
  }

  .site-mobile-nav__btn--save,
  .site-mobile-nav__btn--save .site-mobile-nav__icon {
    color: var(--accent-cyan);
  }

  .site-mobile-nav__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.55rem;
    height: 1.35rem;
    line-height: 1;
    font-size: 1.2rem;
  }

  .site-mobile-nav__label {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 500;
    line-height: 1.15;
  }

  .site-mobile-nav__badge {
    position: absolute;
    top: -0.35rem;
    right: -0.55rem;
    min-width: 1rem;
    height: 1rem;
    padding: 0 0.22rem;
    border-radius: 999px;
    background: var(--accent-cyan);
    color: #0c1622;
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1rem;
    text-align: center;
  }

  .site-mobile-nav__btn--like.is-liked .site-mobile-nav__badge {
    background: #fe2c55;
    color: #fff;
  }

  .site-mobile-nav__contact {
    position: relative;
    display: flex;
    flex: 1 1 0;
    min-width: 0;
    align-items: stretch;
  }

  .site-mobile-nav__contact .site-mobile-nav__btn {
    flex: 1 1 0;
    width: 100%;
  }

  .site-mobile-nav__icon--pulse {
    color: var(--accent-cyan);
  }

  .site-mobile-nav__icon--pulse::before,
  .site-mobile-nav__icon--pulse::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.65rem;
    height: 1.65rem;
    margin: -0.825rem 0 0 -0.825rem;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 212, 255, 0.45);
    animation: siteMobileNavRing 2s ease-out infinite;
    pointer-events: none;
  }

  .site-mobile-nav__icon--pulse::after {
    animation-delay: 1s;
  }

  .site-mobile-nav__contact.is-open .site-mobile-nav__icon--pulse::before,
  .site-mobile-nav__contact.is-open .site-mobile-nav__icon--pulse::after {
    animation: none;
    opacity: 0;
  }

  @keyframes siteMobileNavRing {
    0% {
      transform: scale(0.85);
      opacity: 0.75;
    }
    100% {
      transform: scale(1.85);
      opacity: 0;
    }
  }

  .site-mobile-nav__contact-menu {
    position: absolute;
    right: max(0.5rem, env(safe-area-inset-right, 0px));
    left: auto;
    bottom: calc(100% + 0.55rem);
    z-index: 2;
    display: grid;
    gap: 0.2rem;
    width: min(15.5rem, calc(100vw - 1rem));
    min-width: 0;
    padding: 0.45rem;
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 12px;
    background: rgba(12, 22, 34, 0.98);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    transform: none;
  }

  .site-mobile-nav__contact-menu[hidden] {
    display: none !important;
  }

  .site-mobile-nav__contact-menu a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.6rem 0.7rem;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: rgba(232, 241, 250, 0.92);
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
  }

  .site-mobile-nav__contact-menu a:hover,
  .site-mobile-nav__contact-menu a:focus-visible {
    background: rgba(0, 212, 255, 0.1);
    color: rgba(232, 241, 250, 0.96);
  }

  .site-mobile-nav__contact-menu a[href^="tel:"]:hover,
  .site-mobile-nav__contact-menu a[href^="tel:"]:focus-visible {
    background: rgba(124, 179, 66, 0.14);
  }

  .site-mobile-nav__contact-menu a:has(.fa-telegram):hover,
  .site-mobile-nav__contact-menu a:has(.fa-telegram):focus-visible {
    background: rgba(42, 171, 238, 0.14);
  }

  .site-mobile-nav__contact-menu a:has(.fa-viber):hover,
  .site-mobile-nav__contact-menu a:has(.fa-viber):focus-visible {
    background: rgba(115, 96, 242, 0.14);
  }

  .site-mobile-nav__contact-menu i {
    display: inline-grid;
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 0.95rem;
  }

  .site-mobile-nav__contact-menu .fa-telegram {
    color: #fff;
    background: #2aabee;
    box-shadow: 0 4px 12px rgba(42, 171, 238, 0.35);
  }

  .site-mobile-nav__contact-menu .fa-viber {
    color: #fff;
    background: #7360f2;
    box-shadow: 0 4px 12px rgba(115, 96, 242, 0.35);
  }

  .site-mobile-nav__contact-menu a[href^="tel:"] i {
    color: #fff;
    background: linear-gradient(145deg, #a8e063, #7cb342);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.32);
  }

  .site-mobile-nav__services {
    position: relative;
    display: flex;
    flex: 1 1 0;
    min-width: 0;
    align-items: stretch;
  }

  .site-mobile-nav__services .site-mobile-nav__btn {
    flex: 1 1 0;
    width: 100%;
  }

  .site-mobile-nav__btn--services,
  .site-mobile-nav__btn--services .site-mobile-nav__icon--services {
    color: var(--accent-cyan);
  }

  .site-mobile-nav__btn--booking,
  .site-mobile-nav__btn--booking .site-mobile-nav__icon--booking {
    color: var(--accent-cyan);
  }

  .site-mobile-nav__services-menu {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: calc(100% + 0.55rem);
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.2rem;
    width: min(17.5rem, calc(100vw - 1.5rem));
    min-width: 0;
    padding: 0.45rem;
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 12px;
    background: rgba(12, 22, 34, 0.98);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    transform: translateX(-50%);
  }

  .site-mobile-nav__services-menu[hidden] {
    display: none !important;
  }

  .site-mobile-nav__services-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 4.1rem;
    padding: 0.55rem 0.35rem;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: rgba(232, 241, 250, 0.92);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
  }

  .site-mobile-nav__services-menu a:hover,
  .site-mobile-nav__services-menu a:focus-visible {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-cyan);
    outline: none;
  }

  .site-mobile-nav__services-menu i {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.12);
  }

  .site-mobile-nav__services-menu a:hover i,
  .site-mobile-nav__services-menu a:focus-visible i {
    color: #0b1522;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #00b4d8 100%);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.28);
  }

  .site-mobile-nav__chat {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.6rem 0.7rem;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: rgba(232, 241, 250, 0.92);
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
  }

  .site-mobile-nav__chat i {
    display: inline-grid;
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 0.95rem;
    color: #0b1522;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #00b4d8 100%);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.32);
  }

  .site-mobile-nav__chat:hover,
  .site-mobile-nav__chat:focus-visible {
    background: rgba(0, 212, 255, 0.12);
    color: #fff;
    outline: none;
  }

  .site-mobile-nav__callback {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    margin-top: 0.15rem;
    padding: 0.65rem 0.7rem;
    border: 1px solid rgba(229, 57, 53, 0.4);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.18) 0%, rgba(198, 40, 40, 0.1) 100%);
    color: rgba(232, 241, 250, 0.96);
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
  }

  .site-mobile-nav__callback i {
    display: inline-grid;
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 0.95rem;
    color: #fff;
    background: linear-gradient(135deg, #FF5A5A 0%, #E53935 100%);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.35);
  }

  .site-mobile-nav__callback:hover,
  .site-mobile-nav__callback:focus-visible {
    background: rgba(229, 57, 53, 0.24);
    border-color: rgba(229, 57, 53, 0.55);
    color: #fff;
    outline: none;
  }

  .site-mobile-nav__tip {
    position: fixed;
    right: max(0.65rem, env(safe-area-inset-right, 0px) + 0.5rem);
    left: auto;
    bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px) + 0.45rem);
    z-index: 1260;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    max-width: min(240px, calc(100vw - 1.25rem));
    padding: 0.5rem 2.1rem 0.5rem 0.5rem;
    border-radius: 11px;
    background: rgba(12, 22, 34, 0.98);
    border: 1px solid rgba(0, 212, 255, 0.22);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    transform: translateY(6px);
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  }

  .site-mobile-nav__tip.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-mobile-nav__tip-close {
    position: absolute;
    top: 0.1rem;
    right: 0.1rem;
    display: grid;
    place-items: center;
    width: 1.7rem;
    height: 1.7rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.8rem;
    cursor: pointer;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
  }

  .site-mobile-nav__tip-close::before {
    content: "";
    position: absolute;
    inset: -0.35rem;
  }

  .site-mobile-nav__tip-close:hover,
  .site-mobile-nav__tip-close:focus-visible {
    background: rgba(0, 212, 255, 0.22);
    color: var(--accent-cyan);
    outline: none;
  }

  .site-mobile-nav__tip::after {
    content: "";
    position: absolute;
    left: auto;
    right: 1.15rem;
    bottom: -6px;
    width: 12px;
    height: 12px;
    background: rgba(12, 22, 34, 0.98);
    border-right: 1px solid rgba(0, 212, 255, 0.22);
    border-bottom: 1px solid rgba(0, 212, 255, 0.22);
    transform: rotate(45deg);
  }

  .site-mobile-nav__tip-avatar {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 212, 255, 0.55);
    box-shadow: 0 0 0 2px rgba(8, 14, 24, 0.5);
  }

  .site-mobile-nav__tip-copy {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    min-width: 0;
  }

  .site-mobile-nav__tip-title {
    display: block;
    margin: 0;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-cyan);
  }

  .site-mobile-nav__tip-text {
    margin: 0;
    font-size: 0.64rem;
    line-height: 1.25;
    color: rgba(232, 241, 250, 0.88);
  }
}

.contact-fab__menu {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s var(--ease),
    visibility 0.28s;
}

.contact-fab.is-open .contact-fab__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.contact-fab__row {
  position: absolute;
  right: -28px;
  bottom: -28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(0, 0) scale(0.25);
  transition:
    transform 0.34s var(--ease),
    opacity 0.28s var(--ease);
}

.contact-fab.is-open .contact-fab__row {
  opacity: 1;
  pointer-events: auto;
  transform: translate(var(--fab-x, 0), var(--fab-y, 0)) scale(1);
}

/* 4 items — compact arc (with overlap), R≈122px */
.contact-fab__menu:not(:has(.contact-fab__row:nth-child(5))) .contact-fab__row:nth-child(1) {
  --fab-x: -122px;
  --fab-y: 0px;
}

.contact-fab__menu:not(:has(.contact-fab__row:nth-child(5))) .contact-fab__row:nth-child(2) {
  --fab-x: -105.7px;
  --fab-y: -61px;
}

.contact-fab__menu:not(:has(.contact-fab__row:nth-child(5))) .contact-fab__row:nth-child(3) {
  --fab-x: -61px;
  --fab-y: -105.7px;
}

.contact-fab__menu:not(:has(.contact-fab__row:nth-child(5))) .contact-fab__row:nth-child(4) {
  --fab-x: 0px;
  --fab-y: -122px;
}

/* 5 items — chat enabled, R≈122px */
.contact-fab__menu:has(.contact-fab__row:nth-child(5)) .contact-fab__row:nth-child(1) {
  --fab-x: -122px;
  --fab-y: 0px;
}

.contact-fab__menu:has(.contact-fab__row:nth-child(5)) .contact-fab__row:nth-child(2) {
  --fab-x: -112.6px;
  --fab-y: -46.8px;
}

.contact-fab__menu:has(.contact-fab__row:nth-child(5)) .contact-fab__row:nth-child(3) {
  --fab-x: -86.3px;
  --fab-y: -86.3px;
}

.contact-fab__menu:has(.contact-fab__row:nth-child(5)) .contact-fab__row:nth-child(4) {
  --fab-x: -46.8px;
  --fab-y: -112.6px;
}

.contact-fab__menu:has(.contact-fab__row:nth-child(5)) .contact-fab__row:nth-child(5) {
  --fab-x: 0px;
  --fab-y: -122px;
}

.contact-fab__row:nth-child(1) {
  z-index: 1;
}

.contact-fab__row:nth-child(2) {
  z-index: 2;
}

.contact-fab__row:nth-child(3) {
  z-index: 3;
}

.contact-fab__row:nth-child(4) {
  z-index: 4;
}

.contact-fab__row:nth-child(5) {
  z-index: 5;
}

.contact-fab.is-open .contact-fab__row:nth-child(1) {
  transition-delay: 0.02s;
}

.contact-fab.is-open .contact-fab__row:nth-child(2) {
  transition-delay: 0.05s;
}

.contact-fab.is-open .contact-fab__row:nth-child(3) {
  transition-delay: 0.08s;
}

.contact-fab.is-open .contact-fab__row:nth-child(4) {
  transition-delay: 0.11s;
}

.contact-fab.is-open .contact-fab__row:nth-child(5) {
  transition-delay: 0.14s;
}

.contact-fab__hint {
  position: absolute;
  right: calc(100% + 0.5rem);
  top: 50%;
  z-index: 1;
  max-width: min(168px, calc(100vw - 8rem));
  padding: 0.34rem 0.58rem;
  border-radius: 8px;
  background: rgba(12, 22, 34, 0.96);
  border: 1px solid rgba(0, 212, 255, 0.22);
  box-shadow: 0 6px 16px rgba(8, 18, 30, 0.35);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(232, 241, 250, 0.94);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(6px);
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease),
    visibility 0.2s;
  pointer-events: none;
}

.contact-fab__row:hover .contact-fab__hint,
.contact-fab__row:focus-within .contact-fab__hint {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.contact-fab__item {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 8px 22px rgba(8, 18, 30, 0.35);
  font-size: 1.55rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  color: inherit;
}

.contact-fab__item:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(8, 18, 30, 0.42);
}

.contact-fab__item--telegram {
  color: #2AABEE;
}

.contact-fab__item--viber {
  color: #7360F2;
}

.contact-fab__item--phone {
  color: #FFFFFF;
  background: linear-gradient(145deg, var(--accent-cyan-bright), var(--accent-cyan));
  font-size: 1.3rem;
}

.contact-fab__item--callback {
  color: #fff;
  background: linear-gradient(145deg, #FF5A5A 0%, #E53935 100%);
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(229, 57, 53, 0.35);
}

.contact-fab__item--chat {
  color: #081018;
  background: linear-gradient(145deg, var(--accent-cyan-bright), var(--accent-cyan));
  font-size: 1.25rem;
}

.contact-fab__item--chat[hidden] {
  display: none !important;
}

.contact-fab__toggle {
  position: relative;
  z-index: 6;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 1.35rem;
  background: linear-gradient(145deg, var(--accent-cyan-bright) 0%, var(--accent-cyan) 100%);
  box-shadow:
    0 10px 28px rgba(var(--accent-rgb), 0.4),
    0 0 0 0 rgba(var(--accent-rgb), 0.45);
  display: grid;
  place-items: center;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
  animation: contactFabPulse 2.2s ease-out infinite;
}

.contact-fab__toggle:hover {
  transform: scale(1.05);
}

.contact-fab__toggle:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}

.contact-fab__toggle-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-fab__toggle-close {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: rotate(-45deg) scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-fab.is-open .contact-fab__toggle {
  animation: none;
  background: linear-gradient(145deg, var(--bg-elevated), var(--bg-base));
  box-shadow: 0 8px 22px rgba(8, 18, 30, 0.45);
}

.contact-fab.is-open .contact-fab__toggle-icon {
  opacity: 0;
  transform: rotate(45deg) scale(0.6);
}

.contact-fab.is-open .contact-fab__toggle-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.contact-fab__toggle::before,
.contact-fab__toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(var(--accent-rgb), 0.55);
  animation: contactFabRing 2.2s ease-out infinite;
  pointer-events: none;
}

.contact-fab__toggle::after {
  animation-delay: 1.1s;
}

.contact-fab.is-open .contact-fab__toggle::before,
.contact-fab.is-open .contact-fab__toggle::after {
  display: none;
}

@keyframes contactFabPulse {
  0%,
  100% {
    box-shadow:
      0 10px 28px rgba(var(--accent-rgb), 0.4),
      0 0 0 0 rgba(var(--accent-rgb), 0.4);
  }
  50% {
    box-shadow:
      0 12px 32px rgba(var(--accent-rgb), 0.5),
      0 0 0 10px rgba(var(--accent-rgb), 0);
  }
}

@keyframes contactFabRing {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.contact-fab__tip {
  position: absolute;
  right: calc(100% + 0.85rem);
  bottom: 0.35rem;
  width: max-content;
  max-width: min(240px, calc(100vw - 6.5rem));
  padding: 0.75rem 0.95rem;
  border-radius: 12px;
  background: rgba(12, 22, 34, 0.96);
  border: 1px solid rgba(0, 212, 255, 0.22);
  box-shadow: 0 12px 30px rgba(8, 18, 30, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  pointer-events: none;
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease),
    visibility 0.35s;
}

.contact-fab__tip::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 1.15rem;
  width: 12px;
  height: 12px;
  background: rgba(12, 22, 34, 0.96);
  border-right: 1px solid rgba(0, 212, 255, 0.22);
  border-top: 1px solid rgba(0, 212, 255, 0.22);
  transform: rotate(45deg);
}

.contact-fab.is-tip-visible .contact-fab__tip:not(.contact-fab__tip--chat) {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.contact-fab.is-chat-tip-visible .contact-fab__tip--chat {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
  cursor: pointer;
}

.contact-fab.is-open .contact-fab__tip {
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  pointer-events: none;
}

.contact-fab__tip--chat,
.contact-fab__tip--avatar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-align: left;
  max-width: min(280px, calc(100vw - 6.5rem));
  padding: 0.65rem 0.85rem 0.65rem 0.65rem;
}

.contact-fab__tip--chat {
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
}

.contact-fab__tip--avatar .contact-fab__tip-title {
  margin: 0;
  display: block;
}

.contact-fab__tip--avatar .contact-fab__tip-text {
  display: block;
}

.contact-fab__tip-avatar {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 212, 255, 0.55);
  box-shadow: 0 0 0 2px rgba(8, 14, 24, 0.5);
}

.contact-fab__tip-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.contact-fab__tip--chat .contact-fab__tip-title {
  margin: 0;
  display: block;
}

.contact-fab__tip--chat .contact-fab__tip-text {
  display: block;
}

.contact-fab__tip-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-cyan);
  line-height: 1.2;
}

.contact-fab__tip-title i {
  color: var(--accent-coral);
  font-size: 0.85rem;
}

.contact-fab__tip-text {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(232, 241, 250, 0.88);
  line-height: 1.35;
}

@media (max-width: 899px) {
  .contact-fab__tip-text {
    font-size: 0.64rem;
    line-height: 1.25;
  }

  .contact-fab__tip--chat,
  .contact-fab__tip--avatar {
    gap: 0.5rem;
    max-width: min(240px, calc(100vw - 6.5rem));
    padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  }

  .contact-fab__tip-avatar {
    width: 36px;
    height: 36px;
  }

  .contact-fab__tip-title {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .contact-fab__tip {
    right: 0;
    left: auto;
    bottom: calc(100% + 0.45rem);
    max-width: min(220px, calc(100vw - 2.5rem));
    transform: translateY(6px);
  }

  .contact-fab.is-tip-visible .contact-fab__tip:not(.contact-fab__tip--chat) {
    transform: translateY(0);
  }

  .contact-fab.is-chat-tip-visible .contact-fab__tip--chat {
    transform: translateY(0);
  }

  .contact-fab.is-open .contact-fab__tip {
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
  }

  .contact-fab__tip::after {
    right: 1.35rem;
    left: auto;
    top: auto;
    bottom: -6px;
    border-right: 1px solid rgba(0, 212, 255, 0.22);
    border-bottom: 1px solid rgba(0, 212, 255, 0.22);
    border-top: none;
    transform: rotate(45deg);
  }
}

@media (max-width: 480px) {
  .contact-fab {
    right: max(1.25rem, env(safe-area-inset-right, 0px) + 1.25rem);
    bottom: max(1.75rem, env(safe-area-inset-bottom, 0px) + 1.75rem);
  }

  .contact-fab__toggle {
    width: 54px;
    height: 54px;
  }

  .contact-fab__item {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }
}
/* ==========================================================================
   Instagram marquee (NAIL STUDIO inspired)
   ========================================================================== */
.ig-inspire {
  margin-top: 2.75rem;
  padding-top: 0.5rem;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.ig-inspire > .container {
  width: 100%;
}

.ig-inspire__title {
  margin: 0 0 1.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 600;
  color: rgba(232, 241, 250, 0.92);
  line-height: 1.4;
}

@media (min-width: 900px) {
  .ig-inspire__title {
    font-size: clamp(1.45rem, 2.1vw, 1.85rem);
    margin-bottom: 1.85rem;
    line-height: 1.35;
  }
}

.ig-inspire__stage {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

.ig-inspire__marquee {
  position: absolute;
  inset: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.ig-inspire__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  align-items: center;
  height: 100%;
  padding-inline: 1rem;
  animation: ig-marquee 50s linear infinite;
  will-change: transform;
}

.ig-inspire__stage:hover .ig-inspire__track {
  animation-play-state: paused;
}

@keyframes ig-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ig-inspire__phone {
  position: relative;
  z-index: 3;
  width: 220px;
  height: 430px;
  flex-shrink: 0;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.ig-inspire__phone-frame {
  position: relative;
  height: 100%;
  background: #121820;
  border-radius: 36px;
  padding: 10px;
  border: 3px solid #2a3544;
  box-shadow:
    inset 0 0 0 1px #3d4d60,
    0 0 0 1px #0a1018;
}

.ig-inspire__phone-frame::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 18px;
  background: #0a1018;
  border-radius: 12px;
  z-index: 2;
}

.ig-inspire__phone-screen {
  position: relative;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.ig-inspire__phone-screen > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ig-phone-feed {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding-bottom: 4.5rem;
  background: #fff;
}

.ig-phone-feed__bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 1.85rem 0.7rem 0.55rem;
  border-bottom: 1px solid #efefef;
}

.ig-phone-feed__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  border-radius: 50%;
  padding: 1px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  line-height: 0;
  overflow: hidden;
}

.ig-phone-feed__logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #fff;
  display: block;
}

.ig-phone-feed__name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #262626;
  letter-spacing: 0.01em;
}

.ig-phone-feed__media {
  flex: 1 1 auto;
  min-height: 0;
  background: #e8eef4;
}

.ig-phone-feed__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.ig-phone-feed__meta {
  flex-shrink: 0;
  padding: 0.55rem 0.7rem 3.6rem;
}

.ig-phone-feed__caption {
  margin: 0;
  font-size: 0.62rem;
  line-height: 1.35;
  color: #262626;
}

.ig-phone-feed__caption strong {
  font-weight: 700;
  margin-right: 0.25rem;
}

.ig-inspire__cta {
  pointer-events: auto;
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 140px;
  padding: 0.65rem 1.35rem;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  border: 0;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(188, 24, 136, 0.35);
  transition: transform 0.25s var(--ease), filter 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
  z-index: 2;
}

.ig-inspire__cta:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: brightness(1.08);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 22px rgba(188, 24, 136, 0.45);
  transform: translateX(-50%) scale(1.04);
}

.ig-post {
  flex: 0 0 auto;
  width: 210px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.ig-post__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
}

.ig-post__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  padding: 1.5px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.ig-post__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #fff;
}

.ig-post__user {
  font-size: 0.72rem;
  font-weight: 600;
  color: #262626;
}

.ig-post__media {
  aspect-ratio: 1;
  background: #eee;
}

.ig-post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-post__actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.75rem 0.75rem;
  color: #262626;
}

.ig-post__actions i {
  font-size: 1rem;
}

.ig-post__actions .fa-heart {
  color: #ed4956;
}

.ig-post__stat {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
  color: #262626;
}

.ig-post__stat i {
  font-size: 1rem;
}

.ig-post__actions .fa-bookmark {
  margin-left: auto;
}

@media (max-width: 767px) {
  .ig-inspire__stage {
    height: 380px;
  }

  .ig-inspire__phone {
    width: 168px;
    height: 340px;
  }

  .ig-inspire__phone-frame {
    border-radius: 28px;
    padding: 8px;
  }

  .ig-inspire__phone-screen {
    border-radius: 22px;
  }

  .ig-phone-feed__bar {
    padding: 1.55rem 0.55rem 0.4rem;
  }

  .ig-phone-feed__meta {
    padding: 0.4rem 0.55rem 3.1rem;
  }

  .ig-phone-feed {
    padding-bottom: 3.85rem;
  }

  .ig-inspire__cta {
    min-width: 118px;
    font-size: 0.85rem;
    padding: 0.55rem 1rem;
    bottom: 14px;
  }

  .ig-post {
    width: 160px;
  }
}

@media (min-width: 1200px) {
  .ig-inspire__stage {
    height: 500px;
  }

  .ig-post {
    width: 240px;
  }

  .ig-inspire__phone {
    width: 240px;
    height: 470px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ig-inspire__track {
    animation: none;
  }
}

/* ==========================================================================
   Left sidebar (NAIL STUDIO style)
   ========================================================================== */
:root {
  --sidebar-width: 260px;
}

.mobile-bar {
  position: sticky;
  top: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(12, 22, 34, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.mobile-bar .logo {
  font-size: 1.05rem;
}

.mobile-bar .logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.mobile-bar .logo__mark::before {
  width: 22px;
  height: 22px;
}

.burger {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.burger__line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.mobile-bar__phone {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.mobile-bar__phone:hover {
  color: var(--accent-cyan);
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(5, 12, 20, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-overlay.is-open {
  display: block;
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1300;
  width: min(var(--sidebar-width), 88vw);
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.15rem 1.25rem;
  background: rgba(14, 26, 40, 0.98);
  border-right: 1px solid rgba(0, 212, 255, 0.16);
  overflow-y: auto;
  transform: translateX(-105%);
  transition: transform 0.32s var(--ease);
}

.sidebar.is-open {
  transform: translateX(0);
  box-shadow: 18px 0 40px rgba(0, 0, 0, 0.35);
}

.sidebar__brand {
  margin-bottom: 1.15rem;
}

.sidebar .lang-switch {
  margin-bottom: 1.35rem;
  width: 100%;
  justify-content: stretch;
}

.sidebar .lang-switch a {
  flex: 1;
  text-align: center;
}

.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.sidebar__link {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.2s ease, color 0.2s ease;
}

.sidebar__link:hover,
.sidebar__link.is-active {
  background: rgba(0, 212, 255, 0.1);
  color: #fff;
}

.sidebar__group-title {
  margin: 0.55rem 0 0.25rem;
  padding: 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sidebar__sub {
  display: grid;
  gap: 0.1rem;
  margin: 0 0 0.35rem 0.35rem;
  padding-left: 0.65rem;
  border-left: 1px solid rgba(0, 212, 255, 0.2);
}

.sidebar__sub a {
  padding: 0.4rem 0.55rem;
  border-radius: 6px;
  font-size: 0.875rem;
  color: rgba(232, 241, 250, 0.75);
}

.sidebar__sub a:hover,
.sidebar__sub a.is-active {
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.08);
}

.sidebar__footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0.55rem;
}

.sidebar__phone {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

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

.sidebar__hours {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sidebar__social {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: #fff;
  background: var(--grad-instagram);
}

.sidebar__cta {
  margin-top: 0.35rem;
}

.site {
  min-width: 0;
  overflow-x: clip;
}

body.has-sidebar {
  overflow-x: clip;
}

/* Hide old top header when sidebar layout is active */
body.has-sidebar .header {
  display: none;
}

@media (min-width: 1024px) {
  .mobile-bar {
    display: none;
  }

  .sidebar {
    transform: none;
    width: var(--sidebar-width);
  }

  .sidebar-overlay {
    display: none;
  }

  .site {
    margin-left: var(--sidebar-width);
  }

  body.has-sidebar .contact-fab {
    right: max(1.75rem, env(safe-area-inset-right, 0px) + 1.75rem);
  }
}

@media (max-width: 1023px) {
  body.has-sidebar .header {
    display: none;
  }
}

/* ==========================================================================
   CATALOG — kondicionery.html
   ========================================================================== */
.catalog-intro {
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
  padding-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
  border-block: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.06), transparent 40%),
    rgba(18, 32, 48, 0.92);
}

.catalog-intro .section__head {
  max-width: none;
}

.catalog-intro .montazh-prices__lead span:last-child {
  white-space: normal;
}

.power-calc-section {
  padding-top: clamp(2.25rem, 4.5vw, 3.25rem);
  padding-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
  background: rgba(26, 48, 72, 0.45);
  border-bottom: 1px solid var(--border);
}

.power-calc-section .section__head {
  margin-bottom: 1.75rem;
  max-width: none;
}

.power-calc-section__lead {
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
}

.power-calc-section__lead span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .power-calc-section__lead span {
    white-space: normal;
  }
}

.power-calc {
  padding: 1.5rem 1.35rem;
}

.power-calc__grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .power-calc__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .power-calc__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.power-calc__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.power-calc__field label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.power-calc__field input,
.power-calc__field select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(11, 26, 46, 0.55);
  color: var(--text-white);
  font: inherit;
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.power-calc__field input:focus,
.power-calc__field select:focus {
  border-color: rgba(0, 212, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12);
}

.power-calc__footer {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.power-calc__footer .btn {
  justify-self: start;
}

.power-calc__result {
  margin: 0;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(0, 212, 255, 0.06);
}

@media (min-width: 640px) {
  .power-calc__footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .power-calc__result {
    grid-column: 2;
  }
}

@media (min-width: 960px) {
  .power-calc__footer {
    grid-template-columns: repeat(3, 1fr);
  }

  .power-calc__result {
    grid-column: 3;
  }
}

.power-calc__label {
  margin: 0 0 0.15rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.power-calc__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: 700;
  color: var(--accent-cyan);
  line-height: 1.2;
}

.power-calc__pick {
  margin-top: 0.55rem;
  width: 100%;
  padding: 0.45rem 0.75rem;
  font-size: 0.8125rem;
}

.catalog-power-filter {
  display: flex;
  justify-content: center;
  margin: 0 0 1rem;
}

.catalog-power-filter__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.1);
  color: var(--text-white);
  font-size: 0.875rem;
}

.catalog-power-filter__chip strong {
  color: var(--accent-cyan);
  font-weight: 700;
}

.catalog-power-filter__clear {
  appearance: none;
  border: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.catalog-power-filter__clear:hover {
  background: rgba(255, 107, 74, 0.2);
  color: var(--accent-coral);
}

.power-calc__hint {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.catalog-section .section__head {
  margin-bottom: 1.5rem;
  max-width: none;
}

.catalog-section {
  padding-top: clamp(2.25rem, 4.5vw, 3.25rem);
  padding-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(160deg, rgba(0, 212, 255, 0.05), transparent 45%),
    rgba(18, 32, 48, 0.88);
}

.catalog-related {
  padding-top: clamp(2.25rem, 4.5vw, 3.25rem);
  background: rgba(26, 48, 72, 0.5);
  border-bottom: 1px solid var(--border);
}

.catalog-related .section__head {
  max-width: none;
}

.catalog-related .section__title {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .catalog-related .section__title {
    white-space: normal;
  }
}

.catalog-section .section__title {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .catalog-section .section__title {
    white-space: normal;
  }
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  justify-content: center;
}

.catalog-filters--brands {
  margin-bottom: 1.25rem;
  justify-content: center;
}

.catalog-filters button {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition:
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.catalog-filters button:hover {
  color: var(--text-white);
  border-color: rgba(0, 212, 255, 0.4);
}

.catalog-filters button.is-active {
  color: var(--bg-deep);
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
}

.catalog-filters__sale {
  color: #fff;
  border-color: var(--accent-coral);
  background: var(--accent-coral);
  box-shadow:
    0 0 0 2px rgba(255, 107, 74, 0.35),
    0 0 22px rgba(255, 107, 74, 0.55),
    0 0 40px rgba(255, 107, 74, 0.25);
  animation: salePulse 1.8s ease-in-out infinite;
}

.catalog-filters__sale:hover {
  color: #fff;
  border-color: #ff855f;
  background: #ff855f;
  box-shadow:
    0 0 0 2px rgba(255, 107, 74, 0.45),
    0 0 28px rgba(255, 107, 74, 0.7),
    0 0 48px rgba(255, 107, 74, 0.35);
}

.catalog-filters__sale.is-active {
  color: #fff;
  background: #ff5a35;
  border-color: #ff5a35;
  box-shadow:
    0 0 0 3px rgba(255, 107, 74, 0.4),
    0 0 30px rgba(255, 107, 74, 0.75),
    0 0 52px rgba(255, 107, 74, 0.4);
  animation: none;
}

@keyframes salePulse {
  0%,
  100% {
    box-shadow:
      0 0 0 2px rgba(255, 107, 74, 0.3),
      0 0 18px rgba(255, 107, 74, 0.45),
      0 0 32px rgba(255, 107, 74, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 0 3px rgba(255, 107, 74, 0.55),
      0 0 32px rgba(255, 107, 74, 0.85),
      0 0 56px rgba(255, 107, 74, 0.4);
    transform: scale(1.04);
  }
}

.catalog-filter-descs {
  margin: 0 auto 1.75rem;
  max-width: 46rem;
  text-align: center;
}

.cat-helpers {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: min(100%, 32rem);
  margin: 0 auto 1.75rem;
  padding: 0.25rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  backdrop-filter: var(--blur-card);
  -webkit-backdrop-filter: var(--blur-card);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cat-helpers__guide {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.cat-helpers__btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  margin: 0;
  padding: 0.75rem 0.15rem;
  border: 0;
  background: transparent;
  color: var(--text-white);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.cat-helpers__btn--video {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 0;
}

.cat-helpers__btn:hover,
.cat-helpers__btn:focus-visible {
  color: var(--accent-cyan-bright);
  outline: none;
}

.cat-helpers__info {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  margin: 0;
  padding: 0;
  border: 1.5px solid var(--accent-cyan);
  border-radius: 50%;
  background: var(--accent-cyan);
  color: #0a101a;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  font-style: italic;
  line-height: 0;
  box-shadow: none;
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.cat-helpers__info > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  transform: translateY(-0.02em);
}

.cat-helpers__info:hover,
.cat-helpers__info:focus-visible {
  transform: translateY(-1px);
  filter: none;
  background: var(--accent-cyan-bright, var(--accent-cyan));
  border-color: var(--accent-cyan-bright, var(--accent-cyan));
  color: #0a101a;
  box-shadow: none;
  outline: none;
}

.cat-helpers__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  font-size: 1.35rem;
  line-height: 1;
}

.cat-helpers__icon--play {
  color: var(--accent-coral);
}

.cat-helpers__label {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 2.4vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.cat-helpers__yt {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  border-radius: 3px;
  background: #ff0000;
  color: #fff;
  font-size: 0.78rem;
  box-shadow: 0 2px 6px rgba(255, 0, 0, 0.28);
}

.cat-helper-modal[hidden] {
  display: none !important;
}

.cat-helper-modal {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cat-helper-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 28, 0.62);
}

.cat-helper-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(36rem, 100%);
  max-height: min(92vh, 44rem);
  overflow: auto;
  padding: 1.25rem 1.25rem 1.35rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(10, 18, 28, 0.28);
}

.cat-helper-modal__dialog--video {
  width: min(52rem, 100%);
  padding-bottom: 1.1rem;
}

.cat-helper-modal__dialog--info {
  width: min(32rem, 100%);
  padding-top: 1.35rem;
}

.cat-helper-modal__title--info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0 2.4rem 1.15rem 0;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(26, 43, 60, 0.1);
}

.cat-helper-modal__title-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.14);
  color: #0b9bb0;
  font-size: 1.15rem;
  line-height: 1;
}

.cat-helper-modal__title-text {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.cat-helper-modal__title-line {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.25;
  color: #1a2b3c;
  letter-spacing: 0.01em;
}

.cat-helper-modal__title-line--sub {
  font-size: 0.98rem;
  font-weight: 600;
  color: #3d556c;
}

.cat-helper-modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(26, 43, 60, 0.06);
  color: #1a2b3c;
  cursor: pointer;
}

.cat-helper-modal__close:hover,
.cat-helper-modal__close:focus-visible {
  background: rgba(26, 43, 60, 0.12);
  outline: none;
}

.cat-helper-modal__title {
  margin: 0 2.4rem 1rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a2b3c;
}

.cat-helper-modal__video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  background: #0b1220;
}

.cat-helper-modal__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cat-helper-info__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.cat-helper-info__list a {
  display: block;
  color: #1f6bb5;
  font-weight: 600;
  text-decoration: none;
}

.cat-helper-info__list a:hover {
  text-decoration: underline;
}

body.is-cat-helper-open {
  overflow: hidden;
}

.catalog-filter-descs p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.55;
}

.catalog-filter-descs .catalog-filter-descs__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
}

.catalog-filter-descs .catalog-filter-descs__text span {
  display: block;
}

.catalog-filter-descs p span {
  display: block;
}

.catalog-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.catalog-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  color: var(--text-muted);
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.product-card__media {
  display: grid;
  place-items: center;
  min-height: 200px;
  padding: 1.25rem 1rem 0.5rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.1) 0%, transparent 60%),
    rgba(8, 18, 30, 0.45);
}

.catalog-zoom-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: zoom-in;
  display: grid;
  place-items: center;
  width: 100%;
  border-radius: var(--radius-sm);
  transition: transform 0.25s var(--ease);
}

.catalog-zoom-trigger:hover,
.catalog-zoom-trigger:focus-visible {
  transform: scale(1.03);
  outline: none;
}

.catalog-zoom-trigger:focus-visible {
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.55);
}

.catalog-zoom-trigger img {
  pointer-events: none;
}

.product-card__media img {
  width: min(100%, 260px);
  height: auto;
  max-height: 180px;
  object-fit: contain;
}

body.is-lightbox-open {
  overflow: hidden;
}

.catalog-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}

.catalog-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.catalog-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 28, 0.82);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.catalog-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(90vh, 860px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.25rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.12) 0%, transparent 55%),
    rgba(18, 32, 48, 0.96);
  box-shadow: var(--shadow-soft);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.28s var(--ease);
}

.catalog-lightbox.is-open .catalog-lightbox__dialog {
  transform: none;
}

.catalog-lightbox__img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(72vh, 640px);
  object-fit: contain;
}

.catalog-lightbox__caption {
  margin: 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.catalog-lightbox__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  appearance: none;
  border: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.catalog-lightbox__close:hover,
.catalog-lightbox__close:focus-visible {
  background: rgba(255, 107, 74, 0.25);
  color: var(--accent-coral);
  outline: none;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem 1.15rem 1.25rem;
  flex: 1;
}

.product-card__info-btn {
  appearance: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  width: auto;
  height: auto;
  min-height: 1.35rem;
  margin: 0;
  padding: 0.12rem 0.45rem 0.12rem 0.28rem;
  border: 1px solid rgba(0, 212, 255, 0.45);
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-cyan);
  cursor: pointer;
  vertical-align: middle;
  animation: series-info-blink 1.6s ease-in-out infinite;
}

.product-card__info-btn i {
  font-size: 0.82rem;
  line-height: 1;
}

.product-card__info-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

.product-card__series-row {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.product-card__info-btn:hover,
.product-card__info-btn:focus-visible {
  background: rgba(0, 212, 255, 0.18);
  border-color: var(--accent-cyan);
  outline: none;
  animation: none;
}

@keyframes series-info-blink {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.35);
  }
  50% {
    opacity: 0.72;
    box-shadow: 0 0 0 6px rgba(0, 212, 255, 0);
  }
}

.series-info-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: max(0.5rem, env(safe-area-inset-top, 0px)) max(0.5rem, env(safe-area-inset-right, 0px))
    max(0.5rem, env(safe-area-inset-bottom, 0px)) max(0.5rem, env(safe-area-inset-left, 0px));
}

.series-info-modal[hidden] {
  display: none !important;
}

.series-info-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.72);
  backdrop-filter: blur(4px);
}

.series-info-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 46rem);
  max-height: calc(100dvh - 1rem);
  overflow: hidden;
  padding: 0.75rem 0.85rem 0.65rem;
  border-radius: 14px;
  background: #fff;
  color: #1a2433;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
  display: flex;
  flex-direction: column;
}

.series-info-modal__content {
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 0;
  max-height: calc(100dvh - 3.5rem);
  padding-right: 0.15rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 212, 255, 0.45) transparent;
}

.series-info-modal.is-open .series-info-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.series-info-modal__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 1.75rem;
  height: 1.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(26, 36, 51, 0.08);
  color: #1a2433;
  cursor: pointer;
  font-size: 0.85rem;
}

.series-info-modal__title {
  margin: 0 1.75rem 0.55rem 0;
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 2.1vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a2433;
  line-height: 1.25;
}

.series-info-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.38rem 0.65rem;
}

@media (min-width: 720px) {
  .series-info-modal__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.42rem 0.75rem;
  }
}

.series-info-modal__item {
  position: relative;
  padding-left: 0.85rem;
}

.series-info-modal__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--accent-cyan);
}

.series-info-modal__item-title {
  margin: 0 0 0.08rem;
  font-weight: 700;
  color: #1a2433;
  line-height: 1.22;
  font-size: 0.72rem;
}

.series-info-modal__item-text {
  margin: 0;
  color: #3d4a5c;
  font-size: 0.67rem;
  line-height: 1.32;
}

@media (max-width: 420px) {
  .series-info-modal__dialog {
    padding: 0.75rem 0.72rem 0.65rem;
  }

  .series-info-modal__list {
    gap: 0.38rem 0.55rem;
  }

  .series-info-modal__item-title {
    font-size: 0.74rem;
  }

  .series-info-modal__item-text {
    font-size: 0.68rem;
    line-height: 1.32;
  }
}

body.is-series-modal-open {
  overflow: hidden;
}

.series-info-modal__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(26, 36, 51, 0.1);
}

.series-info-modal__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  box-shadow: none;
  transform: none;
}

.series-info-modal__actions .btn i {
  font-size: 0.78rem;
  opacity: 0.9;
}

.series-info-modal__actions .btn--primary {
  background: rgba(0, 180, 210, 0.12);
  border: 1px solid rgba(0, 160, 190, 0.45);
  color: #0a6f82;
  box-shadow: none;
}

.series-info-modal__actions .btn--primary:hover {
  transform: none;
  background: rgba(0, 180, 210, 0.2);
  border-color: #0a8fa5;
  color: #086577;
  box-shadow: none;
}

.series-info-modal__actions .btn--ghost {
  background: #f4f7fa;
  border: 1px solid rgba(26, 36, 51, 0.14);
  color: #1a2433;
  backdrop-filter: none;
}

.series-info-modal__actions .btn--ghost:hover {
  transform: none;
  background: #eaf1f6;
  border-color: rgba(0, 160, 190, 0.4);
  color: #0a6f82;
  box-shadow: none;
}

.series-info-modal__actions .btn[aria-pressed="true"] {
  background: rgba(0, 180, 210, 0.1);
  border-color: rgba(0, 160, 190, 0.35);
  color: #0a6f82;
}

.series-info-modal__actions .series-compare-badge {
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.22rem;
  font-size: 0.62rem;
}

.series-compare-badge,
.blog-tiktok__badge {
  display: inline-grid;
  place-items: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: var(--accent-cyan);
  color: #041018;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
}

.blog-tiktok__badge {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
}

.blog-tiktok__btn--compare {
  text-decoration: none;
}

.blog-tiktok__btn--compare.is-active .blog-tiktok__icon {
  border-color: rgba(0, 212, 255, 0.55);
  color: var(--accent-cyan);
}

.series-compare__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.series-compare__count {
  margin: 0;
  color: var(--text-muted);
}

.page-hero--compare {
  padding: 1.1rem 0 1.75rem;
  border-bottom: 0;
}

.page-hero--compare .breadcrumb {
  margin-bottom: 0.65rem;
}

.page-hero--compare .page-hero__compare-head {
  margin-bottom: 0.85rem;
}

.page-hero--compare .page-hero__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.75rem);
}

.page-hero--compare .series-compare__toolbar {
  margin-bottom: 0.85rem;
}

.page-hero--compare .series-compare__toolbar .btn {
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  font-size: 0.78rem;
  box-shadow: none;
}

.page-hero--compare .series-compare__toolbar .btn:hover {
  transform: none;
}

.page-hero--compare .series-compare__empty {
  padding: 1rem 0 0.5rem;
}

.series-compare__table-wrap {
  max-height: calc(100dvh - var(--header-h) - 7.25rem);
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #0b1420;
  -webkit-overflow-scrolling: touch;
}

.series-compare__table {
  width: 100%;
  min-width: 40rem;
  border-collapse: separate;
  border-spacing: 0;
}

.series-compare__table th,
.series-compare__table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
  text-align: left;
  background: #0b1420;
}

.series-compare__table thead th {
  position: sticky;
  top: 0;
  z-index: 4;
  background: #101c2b;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 18px rgba(0, 0, 0, 0.28);
  vertical-align: bottom;
}

.series-compare__feature-head,
.series-compare__feature {
  position: sticky;
  left: 0;
  width: 12rem;
  min-width: 10rem;
  color: var(--text-muted);
  font-weight: 600;
  background: #0e1826;
  z-index: 2;
  box-shadow: 1px 0 0 rgba(255, 255, 255, 0.08);
}

.series-compare__feature-head {
  z-index: 5;
  background: #101c2b;
  vertical-align: middle;
}

.series-compare__col {
  min-width: 11rem;
  text-align: center;
}

.series-compare__card {
  position: relative;
  display: grid;
  gap: 0.3rem;
  justify-items: center;
  text-align: center;
  padding-top: 0.15rem;
}

.series-compare__img {
  width: 5.75rem;
  height: auto;
  object-fit: contain;
}

.series-compare__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
  max-width: 10.5rem;
}

.series-compare__brand {
  margin: 0;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.series-compare__remove {
  position: absolute;
  top: -0.15rem;
  right: -0.1rem;
  width: 1.45rem;
  height: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(12, 16, 24, 0.92);
  color: var(--text-white);
  cursor: pointer;
  z-index: 1;
}

@media (max-width: 720px) {
  .series-compare__table-wrap {
    max-height: calc(100dvh - var(--header-h) - 6.5rem);
  }

  body.has-site-mobile-nav .series-compare__table-wrap {
    max-height: calc(100dvh - var(--header-h) - 6.5rem - 4.1rem);
  }

  .series-compare__table th,
  .series-compare__table td {
    padding: 0.65rem 0.7rem;
  }

  .series-compare__feature-head,
  .series-compare__feature {
    width: 7.5rem;
    min-width: 7.5rem;
    font-size: 0.78rem;
  }

  .series-compare__col {
    min-width: 8.5rem;
  }

  .series-compare__img {
    width: 4.25rem;
  }

  .series-compare__name {
    font-size: 0.78rem;
    max-width: 7.75rem;
  }

  .series-compare__brand {
    display: none;
  }
}

.series-compare__cell {
  font-size: 0.9rem;
  line-height: 1.4;
}

.series-compare__cell--empty {
  color: var(--text-muted);
  text-align: center;
}

.series-compare__yes {
  color: var(--accent-cyan);
  font-weight: 700;
  margin-right: 0.25rem;
}

.series-compare__empty {
  display: grid;
  gap: 0.75rem;
  justify-items: start;
  padding: 2rem 0;
}

.series-compare__empty-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.series-compare__empty-hint {
  margin: 0;
  color: var(--text-muted);
}

.series-compare__foot {
  margin-top: 1.25rem;
}

@media (max-width: 720px) {
  .product-card__info-label {
    font-size: 0.68rem;
  }

  .series-info-modal__actions {
    gap: 0.4rem;
  }

  .series-info-modal__actions .btn {
    flex: 1 1 auto;
    min-width: calc(50% - 0.25rem);
  }
}

.product-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.45rem;
  line-height: 1.25;
}

.product-card__brand {
  margin: 0;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  line-height: inherit;
}

.product-card__series {
  color: var(--text-white);
  font-size: inherit;
  font-weight: inherit;
}

.product-card__from {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.product-card__from strong {
  color: var(--accent-coral);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.product-card__variants {
  list-style: none;
  margin: 0.25rem 0 0.5rem;
  padding: 0;
  max-height: 9.5rem;
  overflow: auto;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 212, 255, 0.35) transparent;
}

.product-card__variants::-webkit-scrollbar {
  width: 5px;
}

.product-card__variants::-webkit-scrollbar-track {
  background: transparent;
  margin: 0.25rem 0;
}

.product-card__variants::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, 0.28);
  border-radius: 999px;
}

.product-card__variants::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 212, 255, 0.5);
}

.product-card__variants::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.product-card__variants li {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 0.85fr;
  gap: 0.35rem;
  align-items: center;
  padding: 0.45rem 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.product-card__variants li:last-child {
  border-bottom: none;
}

.product-card__model {
  color: rgba(232, 241, 250, 0.88);
  font-weight: 500;
}

.product-card__price {
  text-align: right;
  color: var(--accent-coral);
  font-weight: 600;
  white-space: nowrap;
}

.product-card .btn {
  margin-top: auto;
}

.catalog-load-more {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.catalog-sale {
  margin-bottom: 1.75rem;
}

.catalog-filter-descs .catalog-sale-heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}

.catalog-filter-descs:has([data-filter-desc="sale"]:not([hidden])) {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 74, 0.5);
  background: rgba(255, 107, 74, 0.18);
  box-shadow: 0 0 22px rgba(255, 107, 74, 0.3);
}

.catalog-sale__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .catalog-sale__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.catalog-sale-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 1.4rem 1.55rem;
  min-height: 100%;
}

.catalog-sale-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  padding: 0.4rem 0.7rem;
  border-radius: 10px;
  background: var(--accent-coral);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(255, 107, 74, 0.45);
}

.catalog-sale-card__media {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 0.5rem 0.5rem 0;
}

.catalog-sale-card__media img {
  width: min(100%, 320px);
  max-height: 260px;
  object-fit: contain;
}

.catalog-sale-card__title {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
}

.catalog-sale-card__name {
  line-height: 1.2;
}

.catalog-sale-card__prices {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: baseline;
}

.catalog-sale-card__old {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1rem;
}

.catalog-sale-card__new {
  color: var(--accent-coral);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
}

.catalog-sale-card__save {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

.catalog-sale__note {
  margin: 1.35rem auto 0;
  max-width: 36rem;
  padding: 0.85rem 1.2rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 600;
  color: #fff;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 74, 0.5);
  background: rgba(255, 107, 74, 0.18);
  box-shadow: 0 0 22px rgba(255, 107, 74, 0.3);
}

.catalog-section .related {
  margin-top: 0;
}

/* ==========================================================================
   MONTAZH — price tables & chips
   ========================================================================== */
.price-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.15rem 0 0;
}

.price-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.28);
  background: rgba(0, 212, 255, 0.08);
}

.price-chip__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-chip__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-cyan);
}

@media (max-width: 560px) {
  .price-chips {
    flex-wrap: nowrap;
    gap: 0.45rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .price-chip {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    padding: 0.55rem 0.5rem;
    box-sizing: border-box;
  }

  .price-chip__label {
    font-size: 0.62rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .price-chip__value {
    font-size: 0.88rem;
    line-height: 1.2;
  }
}

.price-tables {
  display: grid;
  gap: 1.5rem;
}

.price-tabs {
  display: none;
}

@media (max-width: 959px) {
  .price-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    margin: 0 0 1rem;
    padding: 0.3rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 212, 255, 0.22);
    background: rgba(11, 26, 46, 0.55);
  }

  .price-tabs__btn {
    appearance: none;
    margin: 0;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-display);
    font-size: clamp(0.78rem, 3.2vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.65rem 0.35rem;
    cursor: pointer;
    transition:
      color 0.25s var(--ease),
      background 0.25s var(--ease),
      border-color 0.25s var(--ease),
      box-shadow 0.25s var(--ease);
  }

  .price-tabs__btn:hover {
    color: var(--text-white);
  }

  .price-tabs__btn.is-active,
  .price-tabs__btn[aria-selected="true"] {
    color: var(--text-on-dark);
    background: rgba(0, 212, 255, 0.16);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.18);
  }

  .price-tables-tabs--ready .price-tables--trio > .price-table-card:not(.is-active) {
    display: none;
  }

  .price-tables--trio > .price-table-card.is-active .price-table-card__title {
    font-size: 1.05rem;
  }
}

@media (min-width: 960px) {
  .price-tables--duo {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-tables--trio {
    grid-template-columns: repeat(3, 1fr);
  }

  .price-tables-tabs--ready .price-tables--trio > .price-table-card:not(.is-active) {
    display: block;
  }
}

.price-table-card {
  padding: 1.25rem 1.15rem 1.35rem;
  overflow: hidden;
}

.price-table-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.price-table-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.12);
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.price-table-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.price-table-card__note {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-table-wrap {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.15rem;
  padding: 0 0.15rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 320px;
}

.price-table th,
.price-table td {
  padding: 0.7rem 0.65rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.price-table th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.price-table td:last-child,
.price-table th:last-child {
  text-align: right;
  white-space: nowrap;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table__model {
  color: rgba(232, 241, 250, 0.92);
  font-weight: 500;
}

.price-table__meta {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}

.price-table__price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-coral);
}

.price-table__type {
  vertical-align: middle;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.06);
  border-right: 1px solid rgba(0, 212, 255, 0.12);
  white-space: nowrap;
  padding-inline: 0.55rem;
}

.price-table__empty {
  text-align: right;
  color: var(--text-muted);
  font-weight: 500;
}

.price-table--freon th:nth-child(n + 2),
.price-table--freon td:nth-child(n + 2) {
  text-align: right;
}

.price-table--freon thead th {
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.1);
  border-bottom: 1px solid rgba(0, 212, 255, 0.28);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-block: 0.65rem;
}

.price-table--freon thead th:first-child {
  border-radius: 8px 0 0 0;
}

.price-table--freon thead th:last-child {
  border-radius: 0 8px 0 0;
}

@media (max-width: 560px) {
  .price-table-card {
    padding: 1rem 0.7rem 1.1rem;
  }

  .price-table-wrap {
    margin: 0;
    padding: 0;
  }

  .price-table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
    font-size: 0.72rem;
  }

  .price-table th,
  .price-table td {
    padding: 0.5rem 0.28rem;
  }

  .price-table th {
    white-space: normal;
    letter-spacing: 0.02em;
    font-size: 0.62rem;
    line-height: 1.2;
  }

  .price-table td:last-child,
  .price-table th:last-child,
  .price-table--freon td:nth-child(n + 2) {
    white-space: normal;
  }

  .price-table__model {
    font-size: 0.7rem;
    line-height: 1.25;
    word-break: break-word;
  }

  .price-table__price {
    font-size: 0.72rem;
    letter-spacing: -0.01em;
  }

  .price-table--freon thead th {
    padding-block: 0.5rem;
    letter-spacing: 0.02em;
  }
}

/* ==========================================================================
   MONTAZH — approach + price bands
   ========================================================================== */
.montazh-approach {
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
  padding-bottom: clamp(1.15rem, 2.2vw, 1.65rem);
}

.montazh-approach .section__head {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  max-width: none;
}

.montazh-approach__title {
  line-height: 1.2;
}

.montazh-approach .montazh-prices__lead {
  max-width: none;
}

.approach-lead {
  max-width: 680px;
  margin: clamp(1.5rem, 3vw, 2.1rem) auto 0;
  padding: 20px 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: var(--blur-card);
  -webkit-backdrop-filter: var(--blur-card);
  box-shadow: var(--shadow-soft);
  box-sizing: border-box;
}

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

.approach-lead__top:not(:has(.approach-lead__timer)) {
  justify-content: flex-start;
}

.approach-lead__top--center {
  justify-content: center;
}

.approach-lead--simple .approach-lead__copy {
  text-align: center;
  margin-bottom: 1.15rem;
}

.approach-lead--simple .approach-lead__eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.28);
  background: rgba(0, 212, 255, 0.08);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.approach-lead--simple .approach-lead__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.approach-lead--simple .approach-lead__title::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 2px;
  margin: 0.55rem auto 0.6rem;
  border-radius: 2px;
  background: var(--grad-brand);
  opacity: 0.8;
}

.approach-lead--simple .approach-lead__sub {
  margin: 0;
  max-width: 26rem;
  margin-inline: auto;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-muted);
}

.approach-lead__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent-coral);
  white-space: nowrap;
}

.approach-lead__badge i {
  font-size: 1.05rem;
}

.approach-lead__timer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--grad-brand);
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: var(--glow-cyan);
}

.approach-lead__headline {
  margin: 8px 0 16px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.approach-lead__headline span {
  color: var(--accent-coral);
}

.approach-lead__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 8px;
}

.approach-lead__form input {
  flex: 1;
  min-width: 160px;
  width: auto;
  padding: 12px 14px;
  border-radius: 50px;
  border: 1px solid var(--border-strong);
  background: rgba(15, 28, 44, 0.55);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 14px;
  text-align: center;
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.approach-lead__form input::placeholder {
  color: rgba(155, 176, 201, 0.55);
}

.approach-lead__form input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15), var(--glow-cyan);
}

.approach-lead__form .btn {
  flex: 1;
  min-width: 140px;
  border-radius: 50px;
  white-space: nowrap;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.approach-lead__form .btn i {
  margin-left: 0.35rem;
}

.approach-lead__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.approach-lead__note i {
  color: var(--accent-cyan);
}

@media (max-width: 550px) {
  .approach-lead {
    padding: 16px;
  }

  .approach-lead__top {
    flex-direction: column;
    align-items: stretch;
  }

  .approach-lead__badge,
  .approach-lead__timer {
    justify-content: center;
    text-align: center;
  }

  .approach-lead__headline {
    font-size: 18px;
  }

  .approach-lead__timer {
    font-size: 14px;
    padding: 6px 12px;
  }

  .approach-lead__badge {
    font-size: 15px;
  }

  .approach-lead__note {
    font-size: 11px;
  }

  /* Mobile: name + order on one row; phone full width below */
  .approach-lead__form {
    align-items: stretch;
  }

  .approach-lead__form > input[name="name"] {
    order: 1;
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }

  .approach-lead__form > .btn {
    order: 2;
    flex: 0 0 auto;
    min-width: 0;
    padding-inline: 0.95rem;
  }

  .approach-lead__contact {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }

  .approach-lead__contact .form-contact-label,
  .approach-lead__contact .form-contact-label--compact {
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
    padding-inline: 0.1rem;
    gap: 0.22rem 0.28rem;
    font-size: clamp(0.68rem, 3.1vw, 0.8rem);
  }

  .approach-lead__contact .form-contact-label__item {
    flex-shrink: 0;
  }

  .approach-lead__contact input {
    width: 100%;
    min-width: 0;
  }
}

.montazh-band--prices {
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: clamp(1.35rem, 2.8vw, 2rem);
  background: rgba(26, 48, 72, 0.45);
  border-bottom: 1px solid var(--border);
}

.montazh-band--prices .section__head {
  margin-bottom: clamp(1.1rem, 2.2vw, 1.6rem);
  max-width: none;
}

.montazh-band--prices .section__title {
  white-space: nowrap;
}

.montazh-band--prices .section__lead,
.montazh-prices__lead {
  max-width: none;
}

.montazh-prices__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
}

.montazh-prices__lead span {
  display: block;
  white-space: nowrap;
}

.page-hero .montazh-prices__lead {
  align-items: flex-start;
  text-align: left;
}

.page-hero__tagline {
  margin-top: 0.45rem;
  padding-left: 0.7rem;
  border-left: 2px solid var(--accent-cyan);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2.1vw, 1.22rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--accent-cyan-bright);
  white-space: normal;
  text-wrap: balance;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.14), transparent 72%);
  border-radius: 0 0.35rem 0.35rem 0;
  padding-block: 0.28rem 0.32rem;
  padding-right: 0.55rem;
}

@media (max-width: 720px) {
  .montazh-band--prices .section__title {
    white-space: normal;
  }

  .montazh-prices__lead span {
    white-space: normal;
  }

  .page-hero--air .montazh-prices__lead span:first-child {
    white-space: nowrap;
    font-size: clamp(0.88rem, 3.9vw, 1.05rem);
    letter-spacing: -0.01em;
  }
}

.montazh-tight {
  padding-block: clamp(1.5rem, 3vw, 2.35rem);
}

.montazh-tight .section__head {
  margin-bottom: clamp(1.1rem, 2.2vw, 1.65rem);
}

#etapy {
  padding-block: clamp(1.15rem, 2.4vw, 1.85rem);
}

#etapy .section__head {
  margin-bottom: clamp(0.75rem, 1.6vw, 1.1rem);
}

#etapy .section__title {
  margin-bottom: 0.45rem;
}

#etapy .section__lead--nowrap {
  font-size: clamp(0.88rem, 1.6vw, 0.98rem);
  line-height: 1.35;
}

#etapy .why__rail .why-item {
  padding: 0.95rem 1rem 0.9rem;
  gap: 0.45rem 0.75rem;
}

#etapy .why-item__num {
  width: 2.15rem;
  height: 2.15rem;
  font-size: 0.72rem;
}

#etapy .why__rail .why-item__title {
  font-size: 1rem;
}

#etapy .why__rail .why-item__text {
  font-size: 0.875rem;
  line-height: 1.42;
}

@media (min-width: 900px) {
  #etapy .why__rail .why-item {
    padding: 1rem 0.85rem 0.95rem;
    row-gap: 0.4rem;
  }
}

.montazh-band--package {
  border-block: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.06), transparent 40%),
    rgba(18, 32, 48, 0.92);
}

.montazh-band--extra {
  background: rgba(12, 22, 34, 0.55);
  border-bottom: 1px solid var(--border);
}

.montazh-band--extra .section__head {
  max-width: none;
  text-align: center;
}

.montazh-band--extra .section__title {
  white-space: nowrap;
}

.montazh-extra__block {
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
}

.montazh-extra__block-head {
  margin-bottom: 1rem;
  text-align: center;
}

.montazh-extra__block-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
}

.montazh-extra__block-lead {
  margin: 0 auto;
  max-width: 46rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .montazh-band--extra .section__title {
    white-space: normal;
  }
}

.montazh-band--faq {
  background: rgba(26, 48, 72, 0.4);
  border-block: 1px solid var(--border);
}

.montazh-band--related {
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.05), transparent 42%),
    rgba(18, 32, 48, 0.92);
  border-bottom: 1px solid var(--border);
}

.price-include-note {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.925rem;
}

.mount-steps {
  display: grid;
  gap: 0.75rem;
  counter-reset: mount-step;
}

@media (min-width: 800px) {
  .mount-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mount-steps__item {
  position: relative;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  counter-increment: mount-step;
}

.mount-steps__item::before {
  content: counter(mount-step, decimal-leading-zero);
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-cyan);
  line-height: 1.4;
}

.mount-steps__item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   SERVICE TOC (NexiFy-style, SV Service palette)
   ========================================================================== */
.service-page-with-toc {
  position: relative;
}

.service-toc {
  position: fixed;
  top: calc(var(--header-h) + 1.25rem);
  left: 16px;
  width: 196px;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.service-toc.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-toc__title {
  display: flex;
  align-items: center;
  gap: 0.45em;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.service-toc__title::before {
  content: "\f14e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.95em;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent-cyan);
  line-height: 1;
}

.service-toc__body {
  position: relative;
  padding-left: 11px;
}

.service-toc__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-toc__link {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-toc__link:hover,
.service-toc__link.is-active {
  color: var(--accent-cyan);
}

.service-toc__link.is-active {
  font-weight: 600;
}

.service-toc__track {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.15);
}

.service-toc__indicator {
  position: absolute;
  left: 0;
  width: 100%;
  border-radius: 999px;
  background: var(--accent-cyan);
  transition: top 0.25s ease, height 0.25s ease;
  top: 0;
  height: 24px;
}

.service-toc-toggle {
  display: none;
}

@media (min-width: 992px) and (max-width: 1440px) {
  .service-toc {
    width: 168px;
    left: 12px;
  }

  .service-toc__link {
    font-size: 0.86rem;
  }
}

@media (max-width: 991px) {
  .service-toc {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    width: auto;
    z-index: 1300;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

  .service-toc.is-visible {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .service-toc.is-mobile-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .service-toc::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 14, 24, 0.62);
  }

  .service-toc__inner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: min(78dvh, 640px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px 20px calc(20px + env(safe-area-inset-bottom, 0px));
    border-radius: 22px 22px 0 0;
    background: rgba(12, 22, 34, 0.98);
    border-top: 1px solid rgba(0, 212, 255, 0.22);
    box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.35);
    transform: translateY(18px);
    transition: transform 0.22s ease;
  }

  .service-toc.is-mobile-open .service-toc__inner {
    transform: translateY(0);
  }

  .service-toc__title {
    margin-bottom: 14px;
    color: var(--accent-cyan);
  }

  .service-toc__track {
    display: none;
  }

  .service-toc__nav {
    gap: 4px;
  }

  .service-toc__link {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--text);
    font-size: 1rem;
  }

  .service-toc__link:last-child {
    border-bottom: 0;
  }

  .service-toc__link.is-active {
    color: var(--accent-cyan);
  }

  .service-toc-toggle {
    position: fixed;
    left: max(calc(1.25rem + 3.35rem + 0.5rem), env(safe-area-inset-left, 0px) + 1rem + 3.35rem + 0.5rem);
    right: auto;
    bottom: max(1.75rem, env(safe-area-inset-bottom, 0px) + 1.75rem);
    z-index: 1190;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.35rem;
    height: 3.35rem;
    padding: 0;
    border: 1px solid rgba(0, 212, 255, 0.35);
    border-radius: 50%;
    background: rgba(12, 22, 34, 0.92);
    color: var(--accent-cyan);
    font: inherit;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition:
      opacity 0.28s var(--ease),
      visibility 0.28s var(--ease),
      transform 0.28s var(--ease),
      background-color 0.25s var(--ease),
      border-color 0.25s var(--ease);
  }

  .service-toc-toggle.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .service-toc-toggle:hover,
  .service-toc-toggle:focus-visible {
    background: rgba(0, 212, 255, 0.14);
    border-color: var(--accent-cyan);
    color: #fff;
  }

  .service-toc-toggle:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 3px;
  }

  .service-toc-toggle i {
    font-size: 1.05rem;
  }

  body.service-toc-mobile-open {
    overflow: hidden;
  }
}

@media (max-width: 600px) {
  .service-toc-toggle {
    width: 2.95rem;
    height: 2.95rem;
    left: max(calc(0.85rem + 2.95rem + 0.45rem), env(safe-area-inset-left, 0px) + 0.65rem + 2.95rem + 0.45rem);
    bottom: max(1.75rem, env(safe-area-inset-bottom, 0px) + 1.75rem);
  }
}

@media (min-width: 992px) {
  .service-toc-toggle {
    display: none !important;
  }
}

/* ==========================================================================
   VENTILATION PAGE
   ========================================================================== */
.page-hero--vent .page-hero__inner {
  max-width: none;
}

@media (max-width: 879px) {
  .page-hero--vent:has(.page-hero__title--vent) {
    padding-top: 1rem;
  }

  .page-hero--vent:has(.page-hero__title--vent) .breadcrumb {
    margin-bottom: 0.65rem;
  }

  .page-hero__title--vent {
    font-size: clamp(2.3rem, 7.2vw, 3rem);
  }
}

@media (min-width: 900px) {
  .page-hero--vent .page-hero__actions {
    width: auto;
    gap: 0.8rem;
  }

  .page-hero--vent .page-hero__actions .btn {
    flex: 0 1 auto;
    padding: 0.85rem 1.55rem;
    font-size: 0.9375rem;
  }
}

.page-hero--vent .page-hero__split {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.page-hero--vent .page-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
  max-width: 24rem;
}

.page-hero--vent .hero-perks--aside {
  margin-top: 0;
  width: 100%;
  max-width: none;
  gap: 0.55rem;
}

.page-hero--vent .hero-perks--aside li,
.page-hero--vent .page-hero__rating {
  min-height: 3.35rem;
  width: 100%;
  box-sizing: border-box;
}

.page-hero__title--vent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12em;
  margin-bottom: 1rem;
  line-height: 1.12;
}

.page-hero__title-line {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.7rem;
}

.page-hero__title--vent .page-hero__place {
  margin: 0;
  flex-shrink: 0;
  font-size: 0.52em;
  padding: 0.38em 0.72em 0.42em;
}

.page-hero__title--vent .page-hero__kicker {
  display: block;
  margin: 0;
  font-size: 0.85em;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-white);
}

.hero-perks {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  width: max-content;
  max-width: 100%;
}

.hero-perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  margin: 0;
  padding: 0.75rem 1rem 0.78rem 0.9rem;
  box-sizing: border-box;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.32);
  background: rgba(12, 22, 34, 0.55);
  backdrop-filter: var(--blur-card);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.hero-perks i {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 5px;
  background: var(--accent-cyan);
  color: #122536;
  font-size: 0.68rem;
  text-shadow: none;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.35);
}

@media (min-width: 880px) {
  .page-hero--vent .page-hero__split {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
    column-gap: 2.75rem;
    align-items: start;
  }

  .page-hero--chystka .page-hero__split,
  .page-hero--montazh.page-hero--vent .page-hero__split {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .page-hero--chystka .hero-perks,
  .page-hero--montazh.page-hero--vent .hero-perks {
    margin-top: 0.1rem;
    justify-self: end;
    max-width: none;
  }
}

.hero-perks__text--nowrap {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .hero-perks__text--nowrap {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .page-hero__title-line {
    flex-wrap: wrap;
  }

  .page-hero__title--vent .page-hero__place {
    font-size: 0.58em;
  }
}

.vent-jump {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.vent-jump__item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.15rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 212, 255, 0.16);
  background: rgba(14, 26, 40, 0.72);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.vent-jump__item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.vent-jump__icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.35rem;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.12);
  color: var(--accent-cyan);
  font-size: 1.05rem;
}

.vent-jump__item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
}

.vent-jump__item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.vent-dirs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vent-dirs__col {
  width: 100%;
  padding: 1.25rem 1.25rem 1rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(0, 212, 255, 0.16);
  background: rgba(14, 26, 40, 0.82);
  box-sizing: border-box;
}

.vent-dirs__head {
  display: grid;
  grid-template-columns: 6px 1fr;
  column-gap: 0.75rem;
  align-items: start;
  margin-bottom: 0.9rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--accent-cyan);
}

.vent-dirs__head::before {
  content: "";
  grid-row: 1 / span 2;
  width: 6px;
  height: 48px;
  margin-top: 0.15rem;
  border-radius: 3px;
  background: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.35);
}

.vent-dirs__head h3 {
  grid-column: 2;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-white);
}

.vent-dirs__head p {
  grid-column: 2;
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.vent-dirs__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}

.vent-dirs__fold-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin: 0.15rem 0 0;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.08);
  color: var(--accent-cyan);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.vent-dirs__fold-toggle i {
  font-size: 0.78rem;
}

.vent-dirs__split.is-open .vent-dirs__fold-toggle,
.vent-dirs__fold-toggle[hidden] {
  display: none !important;
}

@media (max-width: 639.98px) {
  .vent-dirs__split[data-vent-dirs-fold]:not(.is-open) .vent-dirs__fold-toggle {
    display: inline-flex;
    order: 2;
  }

  .vent-dirs__split[data-vent-dirs-fold] > ul:first-of-type {
    order: 1;
  }

  .vent-dirs__split[data-vent-dirs-fold] .vent-dirs__fold-list {
    order: 3;
  }

  .vent-dirs__split[data-vent-dirs-fold]:not(.is-open) .vent-dirs__fold-item,
  .vent-dirs__split[data-vent-dirs-fold]:not(.is-open) .vent-dirs__fold-list {
    display: none;
  }
}

.vent-dirs__split ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vent-dirs__split li {
  position: relative;
  margin: 0;
  padding: 0.6rem 0.85rem 0.6rem 2.25rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-left: 4px solid var(--accent-cyan);
  background: rgba(0, 212, 255, 0.08);
  color: rgba(232, 241, 250, 0.94);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.45;
}

.vent-dirs__split li::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 50%;
  width: 15px;
  height: 15px;
  margin-top: -8px;
  border-radius: 50%;
  background: rgba(12, 22, 34, 0.9);
  box-shadow: inset 0 0 0 1.5px var(--accent-cyan);
}

.vent-dirs__split li::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 50%;
  width: 6px;
  height: 4px;
  margin-top: -4px;
  border-left: 2px solid var(--accent-cyan);
  border-bottom: 2px solid var(--accent-cyan);
  transform: rotate(-45deg);
}

.vent-brands-caption {
  text-align: center;
  margin: 1.75rem 0 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 3px solid var(--accent-cyan);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-white);
}

.vent-brands {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin: 0 0 0.25rem;
}

.vent-brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 78px;
  min-height: 78px;
  padding: 10px 8px;
  border-radius: 12px;
  border: 1px solid #d7dee8;
  background: #fff;
}

.vent-brands__item img {
  display: block;
  max-width: 90%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
}

#objects,
#project,
#install,
#service,
#repair,
#video,
#objects ~ #team {
  border-top: 1px solid var(--border);
}

#objects,
#install,
#repair,
#video {
  background: rgba(26, 48, 72, 0.4);
}

#project,
#service {
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.05), transparent 42%),
    rgba(18, 32, 48, 0.92);
}

#objects .section__eyebrow,
#project .section__eyebrow,
#install .section__eyebrow,
#service .section__eyebrow,
#repair .section__eyebrow,
#video .section__eyebrow {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}

#objects .section__head,
#project .section__head,
#install .section__head,
#service .section__head,
#repair .section__head,
#video .section__head,
#faq .section__head,
#faq ~ .montazh-band--related .section__head {
  max-width: none;
}

#objects .section__title,
#project .section__title,
#install .section__title,
#service .section__title,
#repair .section__title,
#video .section__title,
#faq .section__title,
#faq ~ .montazh-band--related .section__title {
  display: block;
  text-align: center;
}

#objects .section__title,
#install .section__title,
#service .section__title,
#repair .section__title,
#faq .section__title,
#faq ~ .montazh-band--related .section__title {
  white-space: nowrap;
  font-size: clamp(1.25rem, 3.4vw, 2.5rem);
}

/* Long UA/RU titles ("Може знадобитись…", "Может понадобиться…") must wrap on mobile */
@media (max-width: 720px) {
  #objects .section__title,
  #install .section__title,
  #service .section__title,
  #repair .section__title,
  #faq .section__title,
  #faq ~ .montazh-band--related .section__title {
    white-space: normal;
    max-width: 100%;
  }
}

.vent-service__intro {
  max-width: 48rem;
  margin: 0 auto 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.vent-service__intro strong {
  color: var(--text-white);
  font-weight: 600;
}

@media (min-width: 640px) {
  .vent-jump {
    grid-template-columns: repeat(2, 1fr);
  }

  .vent-dirs__split {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 1rem;
  }

  .vent-brands {
    grid-template-columns: repeat(3, 1fr);
  }

  .vent-brands__item:last-child {
    grid-column: auto;
    max-width: none;
    width: auto;
  }
}

@media (max-width: 639px) {
  /* Prana — лише на десктопі / планшеті */
  .vent-brands__item:last-child {
    display: none;
  }

  body:has(.page-hero--vent) .cta-band__actions {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  body:has(.page-hero--vent) .cta-band__actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.75rem 0.55rem;
    font-size: clamp(0.72rem, 3.2vw, 0.85rem);
    white-space: nowrap;
  }
}

@media (min-width: 960px) {
  .vent-jump {
    grid-template-columns: repeat(4, 1fr);
  }

  .vent-brands {
    grid-template-columns: repeat(5, 1fr);
  }
}

.vent-gallery {
  position: relative;
  margin-top: 1.5rem;
  padding: 0 48px;
}

.vent-gallery__track {
  display: flex;
  justify-content: safe center;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.vent-gallery__track::-webkit-scrollbar {
  display: none;
}

.vent-gallery__item {
  flex: 0 0 calc((100% - 40px) / 6);
  width: calc((100% - 40px) / 6);
  aspect-ratio: 1 / 1;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  background: rgba(12, 22, 34, 0.72);
  position: relative;
  scroll-snap-align: start;
}

.vent-gallery__item img,
.vent-gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s var(--ease);
}

.vent-gallery__item video {
  position: absolute;
  inset: 0;
  background: #0c1622;
}

.vent-gallery__item:hover img,
.vent-gallery__item:focus img,
.vent-gallery__item:hover video,
.vent-gallery__item:focus video {
  transform: scale(1.08);
}

#ventVideoGallery .vent-gallery__item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
  transform: translate(-40%, -50%);
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.45));
  pointer-events: none;
  z-index: 1;
}

.vent-video-like {
  appearance: none;
  border: 0;
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem 0.38rem;
  border-radius: 999px;
  background: rgba(12, 22, 34, 0.72);
  border: 1px solid rgba(0, 212, 255, 0.28);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  color: rgba(0, 212, 255, 0.55);
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.vent-video-like span {
  font-size: 0.68rem;
  font-weight: 700;
  min-width: 0.55rem;
  text-align: center;
  color: inherit;
}

.vent-video-like.is-on,
.vent-video-like:hover,
.vent-video-like:focus-visible {
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.16);
  border-color: var(--accent-cyan);
}

.vent-video-like:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}

.vent-video-like.is-pop {
  animation: works-like-pop 0.35s var(--ease);
}

.vent-video-react {
  position: absolute;
  right: 0.75rem;
  bottom: 0.85rem;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  pointer-events: none;
}

.vent-video-react__btn {
  appearance: none;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  margin: 0;
  padding: 0.35rem 0.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(12, 22, 34, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  line-height: 1;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  transition: color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.vent-video-react__btn--heart {
  color: #fe2c55;
}

.vent-video-react__btn--thumb {
  color: #2dd4bf;
}

.vent-video-react__btn--wow {
  color: #fbbf24;
}

.vent-video-react__btn i {
  font-size: 1.35rem;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.55));
}

.vent-video-react__btn span {
  min-width: 0.7rem;
  text-align: center;
  color: inherit;
}

.vent-video-react__btn:hover,
.vent-video-react__btn:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

.vent-video-react__btn--heart:hover,
.vent-video-react__btn--heart:focus-visible {
  color: #fe2c55;
}

.vent-video-react__btn--thumb:hover,
.vent-video-react__btn--thumb:focus-visible {
  color: #2dd4bf;
}

.vent-video-react__btn--wow:hover,
.vent-video-react__btn--wow:focus-visible {
  color: #fbbf24;
}

.vent-video-react__btn:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}

.vent-video-react__btn.is-on {
  border-color: currentColor;
  background: rgba(254, 44, 85, 0.16);
}

.vent-video-react__btn--heart.is-on {
  color: #fe2c55;
  border-color: rgba(254, 44, 85, 0.55);
  background: rgba(254, 44, 85, 0.16);
}

.vent-video-react__btn--thumb.is-on {
  color: #2dd4bf;
  border-color: rgba(45, 212, 191, 0.55);
  background: rgba(45, 212, 191, 0.16);
}

.vent-video-react__btn--wow.is-on {
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.55);
  background: rgba(251, 191, 36, 0.16);
}

.vent-video-react__btn.is-pop {
  animation: works-like-pop 0.35s var(--ease);
}

.vent-lightbox__media--video-like {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  max-height: 100%;
}

.vent-lightbox__media--video-like .vent-lightbox__video {
  display: block;
  max-width: 100%;
  max-height: min(86vh, 920px);
}

.vent-video-like--lightbox {
  top: auto;
  left: auto;
  right: 0.85rem;
  bottom: 0.85rem;
  font-size: 1.05rem;
  padding: 0.38rem 0.55rem;
  z-index: 6;
}

.vent-video-like--lightbox span {
  font-size: 0.82rem;
}

.vent-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 50%;
  background: rgba(12, 22, 34, 0.92);
  color: var(--accent-cyan);
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(0, 212, 255, 0.08);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.vent-gallery__nav:hover,
.vent-gallery__nav:focus-visible {
  background: rgba(0, 212, 255, 0.14);
  border-color: var(--accent-cyan);
  color: #fff;
}

.vent-gallery__nav:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}

.vent-gallery__nav--prev { left: 0; }
.vent-gallery__nav--next { right: 0; }

.vent-lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 16, 26, 0.94);
  padding: 48px 72px 56px;
  box-sizing: border-box;
}

.vent-lightbox.is-open {
  display: flex;
}

.vent-lightbox__media {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  max-height: 100%;
}

.vent-lightbox__img,
.vent-lightbox__video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  background: #000;
}

.vent-lightbox__video {
  -webkit-touch-callout: none;
}

.vent-lightbox__media .vent-lightbox__img,
.vent-lightbox__media .vent-lightbox__video {
  display: block;
}

.vent-lightbox__media .works__like {
  top: 0.75rem;
  left: 0.75rem;
  font-size: 1.28rem;
  padding: 0.4rem 0.58rem;
  z-index: 5;
}

.vent-lightbox__close,
.vent-lightbox__prev,
.vent-lightbox__next {
  position: absolute;
  background: rgba(12, 22, 34, 0.92);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 212, 255, 0.35);
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  padding: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(0, 212, 255, 0.08);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.vent-lightbox__close {
  top: 16px;
  right: 16px;
  font-size: 1.25rem;
}

.vent-lightbox__prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.vent-lightbox__next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.vent-lightbox__close:hover,
.vent-lightbox__prev:hover,
.vent-lightbox__next:hover,
.vent-lightbox__close:focus-visible,
.vent-lightbox__prev:focus-visible,
.vent-lightbox__next:focus-visible {
  background: rgba(0, 212, 255, 0.14);
  border-color: var(--accent-cyan);
  color: #fff;
}

.vent-lightbox__close:focus-visible,
.vent-lightbox__prev:focus-visible,
.vent-lightbox__next:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}

.vent-lightbox__counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.vent-lightbox--video .vent-lightbox__media {
  height: min(86vh, 920px);
  max-width: min(100%, 430px);
}

.vent-lightbox__stack {
  position: relative;
  width: min(100%, 430px);
  height: min(86vh, 920px);
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  background: #000;
  border-radius: 12px;
  aspect-ratio: 9 / 16;
}

.vent-lightbox__stack .vent-lightbox__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  background: #000;
  will-change: transform;
}

.vent-lightbox__stack .vent-lightbox__video.is-idle {
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}

.vent-lightbox__stack .vent-lightbox__video.is-active {
  visibility: visible;
  z-index: 2;
  transform: translateY(0);
}

.vent-lightbox__stack .vent-lightbox__video.is-entering {
  visibility: visible;
  z-index: 3;
}

.vent-lightbox__stack .vent-lightbox__video.is-leave-up {
  transform: translateY(-100%);
  z-index: 2;
}

.vent-lightbox__stack .vent-lightbox__video.is-leave-down {
  transform: translateY(100%);
  z-index: 2;
}

.vent-lightbox--video .vent-lightbox__video {
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: min(86vh, 920px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

.works-ig-rail {
  position: absolute;
  right: 0.65rem;
  bottom: 5.5rem;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.05rem;
  pointer-events: none;
}

.works-ig-rail a,
.works-ig-rail button {
  pointer-events: auto;
}

.works-ig-rail__btn {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
  transition: transform 0.2s var(--ease), color 0.2s var(--ease);
}

.works-ig-rail__btn i {
  font-size: 1.55rem;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}

.works-ig-rail__btn.is-on {
  color: #ff3040;
}

.works-ig-rail__btn.is-pop {
  animation: works-like-pop 0.35s var(--ease);
}

.works-ig-rail__btn:hover,
.works-ig-rail__btn:focus-visible {
  transform: scale(1.08);
  color: #fff;
}

.works-ig-rail__btn.is-on:hover,
.works-ig-rail__btn.is-on:focus-visible {
  color: #ff3040;
}

.works-ig-rail__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.works-ig-rail__thumb {
  display: block;
  width: 2.15rem;
  height: 2.15rem;
  margin-top: 0.15rem;
  border-radius: 0.35rem;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.works-ig-rail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.works-ig-meta {
  position: absolute;
  left: 0.85rem;
  right: 4.25rem;
  bottom: 1rem;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  pointer-events: none;
  text-align: left;
}

.works-ig-meta a {
  pointer-events: auto;
}

.works-ig-meta__user {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
  width: fit-content;
}

.works-ig-meta__user img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #fff;
  background: #1a1030;
}

.works-ig-meta__caption {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.35;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vent-lightbox--photo .vent-lightbox__counter {
  bottom: auto;
  top: 18px;
}

.works-tt-rail {
  position: absolute;
  right: 0.7rem;
  bottom: 4.6rem;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.05rem;
  pointer-events: none;
}

.works-tt-rail a,
.works-tt-rail button {
  pointer-events: auto;
}

.works-tt-rail__avatar {
  position: relative;
  display: block;
  width: 3.15rem;
  height: 3.15rem;
  margin-bottom: 0.35rem;
  border-radius: 50%;
  overflow: visible;
}

.works-tt-rail__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  display: block;
  background: #1a1030;
}

.works-tt-rail__plus {
  position: absolute;
  left: 50%;
  bottom: -0.28rem;
  transform: translateX(-50%);
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: #fe2c55;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.28rem;
  text-align: center;
  border: 2px solid #000;
}

.works-tt-rail__btn {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.18rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
}

.works-tt-rail__btn i {
  font-size: 1.85rem;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.65));
}

.works-tt-rail__btn.is-on {
  color: #fe2c55;
}

.works-tt-rail__btn[data-tt-react="heart"] {
  color: #fe2c55;
}

.works-tt-rail__btn[data-tt-react="thumb"] {
  color: #2dd4bf;
}

.works-tt-rail__btn[data-tt-react="wow"] {
  color: #fbbf24;
}

.works-tt-rail__btn.is-pop {
  animation: works-like-pop 0.35s var(--ease);
}

.works-tt-rail__btn:hover,
.works-tt-rail__btn:focus-visible {
  color: #fff;
}

.works-tt-rail__btn[data-tt-react="heart"]:hover,
.works-tt-rail__btn[data-tt-react="heart"]:focus-visible,
.works-tt-rail__btn[data-tt-react="heart"].is-on:hover,
.works-tt-rail__btn[data-tt-react="heart"].is-on:focus-visible {
  color: #fe2c55;
}

.works-tt-rail__btn[data-tt-react="thumb"]:hover,
.works-tt-rail__btn[data-tt-react="thumb"]:focus-visible,
.works-tt-rail__btn[data-tt-react="thumb"].is-on:hover,
.works-tt-rail__btn[data-tt-react="thumb"].is-on:focus-visible {
  color: #2dd4bf;
}

.works-tt-rail__btn[data-tt-react="wow"]:hover,
.works-tt-rail__btn[data-tt-react="wow"]:focus-visible,
.works-tt-rail__btn[data-tt-react="wow"].is-on:hover,
.works-tt-rail__btn[data-tt-react="wow"].is-on:focus-visible {
  color: #fbbf24;
}

.works-tt-rail__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
  border-radius: 6px;
}

@media (max-width: 992px) {
  .vent-gallery__item {
    flex-basis: calc((100% - 24px) / 4);
    width: calc((100% - 24px) / 4);
  }
}

@media (max-width: 768px) {
  .vent-gallery {
    padding: 0 40px;
  }

  .vent-gallery__track {
    gap: 6px;
  }

  .vent-gallery__item {
    flex-basis: calc((100% - 12px) / 3);
    width: calc((100% - 12px) / 3);
  }

  .vent-lightbox {
    padding: 56px 12px 52px;
  }

  .vent-lightbox__prev,
  .vent-lightbox__next {
    width: 38px;
    height: 38px;
  }

  .vent-lightbox__prev { left: 8px; }
  .vent-lightbox__next { right: 8px; }

  /* Photos: swipe sideways — hide nav arrows */
  #ventLightbox .vent-lightbox__prev,
  #ventLightbox .vent-lightbox__next,
  .vent-lightbox--photo .vent-lightbox__prev,
  .vent-lightbox--photo .vent-lightbox__next {
    display: none;
  }

  /* Videos: TikTok vertical swipe — hide arrows, keep video visible */
  #ventVideoLightbox .vent-lightbox__prev,
  #ventVideoLightbox .vent-lightbox__next,
  .vent-lightbox--video .vent-lightbox__prev,
  .vent-lightbox--video .vent-lightbox__next {
    display: none;
  }

  #ventVideoLightbox,
  .vent-lightbox--video {
    padding: 0;
    background: #000;
    align-items: center;
    justify-content: center;
  }

  #ventVideoLightbox .vent-lightbox__media,
  #ventVideoLightbox .vent-lightbox__media--video-like,
  .vent-lightbox--video .vent-lightbox__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100vw, calc(100dvh * 9 / 16));
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  #ventVideoLightbox .vent-lightbox__stack,
  .vent-lightbox--video .vent-lightbox__stack {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    aspect-ratio: auto;
  }

  #ventVideoLightbox .vent-lightbox__video,
  #ventVideoLightbox .vent-lightbox__media--video-like .vent-lightbox__video,
  .vent-lightbox--video .vent-lightbox__video {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    background: #000;
  }

  #ventVideoLightbox .vent-lightbox__stack .vent-lightbox__video,
  .vent-lightbox--video .vent-lightbox__stack .vent-lightbox__video {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
  }

  #ventVideoLightbox .vent-lightbox__close,
  .vent-lightbox--video .vent-lightbox__close {
    top: max(12px, env(safe-area-inset-top, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    z-index: 5;
  }

  #ventVideoLightbox .vent-lightbox__counter,
  .vent-lightbox--video .vent-lightbox__counter {
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    z-index: 5;
  }

  .works-tt-rail {
    right: 0.55rem;
    bottom: 4.2rem;
    gap: 0.9rem;
  }

  .works-ig-rail {
    right: 0.5rem;
    bottom: 5.2rem;
    gap: 0.9rem;
  }

  .works-ig-meta {
    left: 0.7rem;
    right: 3.8rem;
    bottom: 0.85rem;
  }
}

/* ==========================================================================
   BLOG — listing, article, author
   ========================================================================== */
.page-hero--blog {
  min-height: 0;
  padding: 2.2rem 0 1.4rem;
}

.page-hero--blog .page-hero__inner {
  max-width: 920px;
}

.page-hero--article {
  min-height: 0;
  padding: 1.6rem 0 0.4rem;
}

.page-hero--article .page-hero__inner {
  max-width: 1140px;
}

.blog-list {
  padding-top: 0.5rem;
  padding-bottom: var(--section-space);
}

.blog-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .blog-list__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: var(--blur-card);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.35);
  background: var(--bg-card-hover);
}

.blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-elevated);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.04);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.15rem 1.2rem 1.3rem;
  flex: 1;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-white);
}

.blog-card__title a {
  color: inherit;
}

.blog-card__title a:hover {
  color: var(--accent-cyan);
}

.blog-card__excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.blog-card__meta i {
  color: var(--accent-cyan);
  margin-right: 0.3rem;
}

.blog-card__more {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--accent-cyan);
}

.blog-card__more i {
  margin-left: 0.3rem;
  font-size: 0.75rem;
}

.blog-article-wrap {
  padding: 0.4rem 0 var(--section-space);
}

.blog-article {
  max-width: 1140px;
  margin: 0 auto;
}

.blog-article__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.22;
  margin: 0.35rem 0 1rem;
}

.blog-article__info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  padding: 0.75rem 1rem;
  margin-bottom: 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

@media (min-width: 1100px) {
  .blog-article__info {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.7rem 0.9rem;
  }
}

.blog-article__author {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.blog-article__author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 212, 255, 0.45);
}

.blog-article__author-text {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 0.35rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.blog-article__author-text .b,
.blog-article__stat .b {
  color: var(--text-muted);
  font-weight: 500;
  margin-right: 0.15rem;
}

.blog-article__author a {
  color: var(--accent-cyan);
  font-weight: 600;
}

.blog-article__stat {
  font-size: 0.82rem;
  color: var(--text-white);
  white-space: nowrap;
}

.blog-article__rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.blog-article__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
  color: #F5C542;
  letter-spacing: 0;
}

.blog-rate__btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.1rem;
  color: rgba(245, 197, 66, 0.32);
  cursor: pointer;
  line-height: 1;
  font-size: 1.05rem;
}

.blog-rate__btn.is-on,
.blog-rate__btn:hover,
.blog-rate__btn:focus-visible {
  color: #F5C542;
}

.blog-article__rating.is-voted .blog-rate__btn {
  cursor: default;
}

.blog-article__rating-msg {
  color: var(--accent-cyan);
  font-size: 0.78rem;
}

.blog-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 2rem;
}

.blog-pager__num,
.blog-pager__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

a.blog-pager__num:hover,
a.blog-pager__nav:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.12);
  color: var(--accent-cyan-bright);
  box-shadow: var(--glow-cyan);
}

.blog-pager__num.is-active {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--bg-deep);
  box-shadow: var(--glow-cyan);
}

.blog-pager__nav.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.blog-article__hero {
  margin: 0 0 1.6rem;
  text-align: center;
}

.blog-article__hero img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.blog-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
}

.blog-content > *:first-child {
  margin-top: 0;
}

.blog-content h2,
.blog-content h3 {
  font-family: var(--font-display);
  color: var(--text-white);
  line-height: 1.3;
  margin: 1.7rem 0 0.75rem;
}

.blog-content h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

.blog-content h3 {
  font-size: 1.15rem;
}

.blog-content p {
  margin: 0 0 1rem;
}

.blog-content a {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-content a:hover {
  color: var(--accent-cyan-bright);
}

.blog-content ul,
.blog-content ol {
  margin: 0 0 1.15rem 1.15rem;
  padding: 0;
}

.blog-content li {
  margin: 0.35rem 0;
}

.blog-content li::marker {
  color: var(--accent-cyan);
}

.blog-content .toc,
.blog-content ul:has(> li > a[href^="#"]) {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: var(--radius-sm);
}

.blog-content img,
.blog-content__img {
  display: block;
  max-width: min(100%, 720px);
  width: auto;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  margin: 1.35rem auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.blog-content p:has(> img),
.blog-content p:has(> a > img) {
  text-align: center;
}

.blog-info-card {
  margin: 1.5rem 0 1.75rem;
}

.blog-info-table td:last-child,
.blog-info-table th:last-child {
  text-align: left;
  white-space: normal;
}

.blog-info-table td:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-white);
  white-space: nowrap;
}

.blog-info-table__icon {
  text-align: center;
  color: var(--accent-cyan);
  font-size: 1.2rem;
  width: 3.2rem;
}

.blog-info-table__icon i {
  color: var(--accent-cyan);
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.22);
}

.blog-flow {
  margin: 1.5rem auto 1.75rem;
  max-width: 860px;
  padding: 1.15rem 1.2rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.blog-flow figcaption {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 1rem;
}

.blog-flow__grid {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 720px) {
  .blog-flow__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.blog-flow__unit {
  padding: 1rem;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: var(--radius-sm);
}

.blog-flow__unit h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
}

.blog-flow__unit p {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
}

.blog-flow__unit p:last-child {
  margin-bottom: 0;
}

.blog-flow__unit i {
  color: var(--accent-cyan);
  margin-right: 0.35rem;
}

.blog-flow__note {
  margin: 0.9rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.blog-content strong {
  color: var(--text-white);
  font-weight: 600;
}

.blog-content em,
.blog-content i:not([class*="fa-"]) {
  color: var(--text-white);
}

.blog-article__footer {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 720px) {
  .blog-article__footer {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.blog-share__label {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.blog-share__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.blog-share__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-white);
  font-size: 0.88rem;
  background: var(--bg-card);
}

.blog-share__links a:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.blog-comments {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
}

.blog-comments__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.blog-comments__published {
  margin-bottom: 1.25rem;
}

.blog-comments__compose {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.blog-comments__form-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.blog-comments__lead {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.45;
}

.blog-comments__list {
  display: grid;
  gap: 0.85rem;
}

.blog-comments__item {
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.blog-comments__text {
  margin: 0 0 0.65rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

.blog-comments__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: baseline;
  color: var(--muted);
  font-size: 0.88rem;
}

.blog-comments__meta strong {
  color: var(--text-white);
}

.blog-comments__empty {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.blog-comments__form {
  display: grid;
  gap: 0.85rem;
}

.blog-comments__form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
}

.blog-comments__form input,
.blog-comments__form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  font: inherit;
}

.blog-comments__form input:focus,
.blog-comments__form textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
}

.blog-comments__msg {
  margin: 0;
  font-size: 0.92rem;
}

.blog-comments__msg.is-ok {
  color: #7dcea0;
}

.blog-comments__msg.is-err {
  color: #f1948a;
}

/* TikTok-style blog actions (likes / comments / share) */
.blog-tiktok {
  position: fixed;
  right: max(0.85rem, env(safe-area-inset-right, 0px) + 0.85rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
}

.blog-tiktok__btn,
.blog-tiktok__sheet {
  pointer-events: auto;
}

.blog-tiktok__btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  min-width: 3.1rem;
  font: inherit;
}

.blog-tiktok__icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  position: relative;
  background: rgba(12, 16, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 1.15rem;
  transition: transform 0.22s var(--ease), background 0.22s var(--ease), border-color 0.22s var(--ease);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.blog-tiktok__btn:hover .blog-tiktok__icon,
.blog-tiktok__btn:focus-visible .blog-tiktok__icon {
  transform: scale(1.06);
  border-color: rgba(255, 255, 255, 0.28);
}

.blog-tiktok__btn.is-pop .blog-tiktok__icon {
  animation: blog-tiktok-pop 0.42s var(--ease);
}

.blog-tiktok__btn--like.is-liked .blog-tiktok__icon {
  background: rgba(254, 44, 85, 0.18);
  border-color: rgba(254, 44, 85, 0.55);
  color: #fe2c55;
}

.blog-tiktok__btn--save.is-saved .blog-tiktok__icon {
  background: rgba(252, 211, 77, 0.2);
  border-color: rgba(252, 211, 77, 0.65);
  color: #fcd34d;
}

.blog-tiktok__btn--booking .blog-tiktok__icon {
  color: var(--accent-cyan);
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.12);
}

.blog-tiktok__btn--booking:hover .blog-tiktok__icon,
.blog-tiktok__btn--booking:focus-visible .blog-tiktok__icon {
  border-color: rgba(0, 212, 255, 0.55);
  background: rgba(0, 212, 255, 0.2);
}

.blog-tiktok__btn--booking .blog-tiktok__label {
  color: var(--accent-cyan);
}

.blog-tiktok__count,
.blog-tiktok__label {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.1;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
  max-width: 4.5rem;
  text-align: center;
}

.blog-tiktok__label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.88);
}

.blog-tiktok__sheet {
  position: absolute;
  right: calc(100% + 0.55rem);
  bottom: 0;
  min-width: 10.5rem;
}

.blog-tiktok__sheet-inner {
  display: grid;
  gap: 0.35rem;
  padding: 0.55rem;
  border-radius: 14px;
  background: rgba(12, 16, 24, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.blog-tiktok__sheet-link {
  display: block;
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: var(--text-white);
  font-size: 0.86rem;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.blog-tiktok__sheet-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-cyan);
}

.blog-tiktok__toast {
  position: absolute;
  right: calc(100% + 0.65rem);
  bottom: 0;
  margin: 0;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  background: rgba(12, 16, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-white);
  font-size: 0.78rem;
  line-height: 1.35;
  white-space: normal;
  max-width: min(16rem, 70vw);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

@keyframes blog-tiktok-pop {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.18);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 899px) {
  .blog-tiktok {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 1px;
    overflow: visible;
    opacity: 0;
    pointer-events: none;
  }

  .blog-tiktok__btn {
    pointer-events: auto;
  }

  .blog-tiktok__sheet:not([hidden]),
  .blog-tiktok__toast:not([hidden]) {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    z-index: 1300;
    opacity: 1;
    pointer-events: auto;
  }

  .blog-tiktok__sheet-inner {
    min-width: 12rem;
  }
}

@media (max-width: 600px) {
  .blog-tiktok__sheet:not([hidden]),
  .blog-tiktok__toast:not([hidden]) {
    bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 900px) and (max-width: 1280px) {
  .blog-tiktok {
    right: max(0.45rem, env(safe-area-inset-right, 0px) + 0.45rem);
  }
}

.blog-author {
  padding-top: 0.4rem;
  padding-bottom: var(--section-space);
}

.blog-author__card {
  display: grid;
  gap: 1.4rem;
  padding: 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 920px;
}

@media (min-width: 720px) {
  .blog-author__card {
    grid-template-columns: 220px 1fr;
    gap: 1.8rem;
    padding: 1.7rem;
  }
}

.blog-author__photo {
  margin: 0;
}

.blog-author__photo img {
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}

.blog-author__card h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 1rem 0 0.4rem;
  color: var(--accent-cyan);
}

.blog-author__card h2:first-child {
  margin-top: 0;
}

.blog-author__card p {
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.blog-author__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.blog-author__social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-white);
}

.blog-author__social a:hover {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

/* ── Product card dual buttons ── */
.product-card__actions {
  display: flex;
  gap: .5rem;
  margin-top: auto;
}
.product-card__actions .btn {
  flex: 1;
  text-align: center;
  font-size: .85rem;
  padding: .6rem .4rem;
  white-space: nowrap;
}

/* ── Clients band ── */
.clients-band {
  padding-block: 3rem 2rem;
}
.clients-band .section__title {
  text-align: center;
  margin-bottom: 2rem;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}
.clients-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: var(--radius, 12px);
  padding: 1.2rem 1rem;
  transition: border-color .25s, box-shadow .25s;
}
.clients-grid__item:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 16px rgba(0,194,203,.25);
}
.clients-grid__item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  opacity: .85;
  transition: opacity .25s;
}
.clients-grid__item:hover img {
  opacity: 1;
}
@media (max-width: 900px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Callback modal + site reviews (admin API) ---------- */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
}

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

.checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 28, 0.72);
  backdrop-filter: blur(4px);
}

.checkout-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  max-height: min(92vh, 40rem);
  overflow: auto;
  padding: 3.5rem 1.35rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-soft);
}

.checkout-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--text-white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.checkout-modal__title {
  display: block;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
}

.checkout-modal__form {
  display: grid;
  gap: 0.85rem;
}

.checkout-modal__form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-required {
  color: var(--accent-coral);
  font-weight: 700;
  margin-left: 0;
}

.field-label {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  max-width: 100%;
  line-height: 1.25;
  gap: 0;
}

.field-label .form-required {
  flex: 0 0 auto;
}

.approach-lead__field {
  flex: 1 1 160px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}

.approach-lead__field .field-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.approach-lead__field input {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.site-review-form__req {
  color: var(--accent-coral);
  font-weight: 700;
}

.form-contact-label {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.28rem;
  white-space: nowrap;
  line-height: 1.2;
  max-width: 100%;
}

.form-contact-label__item {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  white-space: nowrap;
}

.form-contact-label__item > span {
  font-weight: 600;
}

.form-contact-label__sep {
  opacity: 0.55;
  font-weight: 500;
  flex-shrink: 0;
}

.form-contact-label i {
  font-size: 0.92em;
  line-height: 1;
  flex-shrink: 0;
  color: var(--accent-cyan);
}

.form-contact-label--compact {
  gap: 0.2rem;
  font-size: clamp(0.56rem, 2.1vw, 0.72rem);
}

.form-contact-label--compact .form-contact-label__item {
  gap: 0.12rem;
}

.form-contact-label--compact i {
  font-size: 0.88em;
}

.approach-lead__contact {
  flex: 1 1 200px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}

.approach-lead__contact .form-contact-label {
  justify-content: center;
  width: 100%;
}

.approach-lead__contact .field-label {
  width: 100%;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(155, 176, 201, 0.88);
  line-height: 1.25;
}

.approach-lead__contact .form-contact-label--compact {
  gap: 0.35rem;
  font-size: 14px;
}

.approach-lead__contact .form-contact-label--compact .form-contact-label__item {
  gap: 0.25rem;
}

.approach-lead__contact .form-contact-label--compact i {
  font-size: 0.92em;
}

.approach-lead__contact input {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 12px 14px;
  text-align: center;
}

.checkout-modal__form input,
.checkout-modal__form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--text-white);
  background: var(--bg-card);
}

.checkout-modal__form input:focus,
.checkout-modal__form textarea:focus {
  outline: 2px solid rgba(0, 212, 255, 0.35);
  border-color: var(--accent-cyan);
}

.checkout-modal__msg {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-coral);
}

.checkout-modal__msg.is-ok {
  color: #4ade80;
}

.callback-modal__lead {
  margin: -0.35rem 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.callback-modal__lead--order {
  display: grid;
  gap: 0.35rem;
  line-height: 1.45;
}

.callback-modal__lead-line {
  display: block;
}

.callback-modal__lead-product {
  color: var(--text-white);
  font-weight: 600;
}

body.is-callback-modal-open {
  overflow: hidden;
}

body.is-booking-modal-open {
  overflow: hidden;
}

.booking-modal__dialog {
  width: min(100%, 32rem);
  max-height: min(92vh, 44rem);
}

.booking-cal {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.booking-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.booking-cal__label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  flex: 1;
}

.booking-cal__nav {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--accent-cyan);
  cursor: pointer;
}

.booking-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
}

.booking-cal__wd {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.15rem 0;
}

.booking-cal__pad {
  display: block;
  min-height: 2.2rem;
}

.booking-cal__day {
  min-height: 2.2rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-white);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.booking-cal__day.is-partial:not(.is-disabled) {
  border-color: rgba(0, 212, 255, 0.35);
}

.booking-cal__day.is-selected {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.35), rgba(0, 153, 204, 0.22));
  border-color: var(--accent-cyan);
  color: #fff;
}

.booking-cal__day.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-cal__slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.booking-cal__slot {
  display: grid;
  gap: 0.15rem;
  min-height: 3rem;
  padding: 0.45rem 0.35rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--text-white);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.booking-cal__slot.is-selected {
  border-color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.14);
  color: var(--accent-cyan);
}

.booking-cal__slot.is-taken {
  opacity: 0.45;
  cursor: not-allowed;
}

.booking-cal__slot-note {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
}

.checkout-modal__form select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--text-white);
  background: var(--bg-card);
  color-scheme: dark;
}

.checkout-modal__form select option {
  background: var(--bg-base);
  color: var(--text-white);
}

.booking-modal__tg {
  margin-top: 0.5rem;
}

.booking-modal__fields {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.booking-modal__fields.is-locked {
  opacity: 0.62;
  pointer-events: none;
}

@media (min-width: 900px) {
  .booking-modal__dialog {
    width: min(100%, 48rem);
    max-height: none;
    overflow: hidden;
    padding: 2.6rem 1.35rem 1.1rem;
  }

  .booking-modal__dialog .checkout-modal__title {
    margin: 0 0 0.35rem;
    font-size: 1.2rem;
  }

  .booking-modal__dialog .callback-modal__lead {
    margin: 0 0 0.65rem;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .booking-modal__layout {
    display: grid;
    grid-template-columns: minmax(0, 16.75rem) minmax(0, 1fr);
    gap: 0.85rem 1.25rem;
    align-items: start;
  }

  .booking-cal {
    gap: 0.45rem;
    margin-bottom: 0;
  }

  .booking-cal__label {
    font-size: 0.92rem;
  }

  .booking-cal__nav {
    width: 1.9rem;
    height: 1.9rem;
    font-size: 0.75rem;
  }

  .booking-cal__grid {
    gap: 0.18rem;
  }

  .booking-cal__wd {
    font-size: 0.62rem;
    padding: 0.05rem 0;
  }

  .booking-cal__pad {
    min-height: 1.55rem;
  }

  .booking-cal__day {
    min-height: 1.55rem;
    font-size: 0.78rem;
    border-radius: 8px;
  }

  .booking-cal__slots {
    gap: 0.35rem;
  }

  .booking-cal__slot {
    min-height: 2.35rem;
    padding: 0.35rem 0.25rem;
    font-size: 0.82rem;
    border-radius: 10px;
  }

  .booking-cal__slot-note {
    font-size: 0.56rem;
  }

  .booking-modal__fields {
    margin: 0;
    padding: 0;
    border: 0;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 0.75rem;
    align-content: start;
  }

  .booking-modal__fields > label:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .booking-modal__fields > label:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .booking-modal__fields > label:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }

  .booking-modal__fields > label:nth-child(4) {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .booking-modal__fields > label:nth-child(2) .field-label,
  .booking-modal__fields > label:nth-child(2) .form-contact-label {
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .booking-modal__fields.is-locked {
    opacity: 0.62;
    pointer-events: none;
  }

  .booking-modal__form {
    min-width: 0;
    display: grid;
    gap: 0.45rem;
  }

  .booking-modal__form label {
    gap: 0.22rem;
    font-size: 0.78rem;
    min-width: 0;
  }

  .booking-modal__form .field-label {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    max-width: 100%;
  }

  .booking-modal__form .form-contact-label {
    font-size: 0.72rem;
    gap: 0.22rem;
  }

  .booking-modal__form .form-required {
    flex: 0 0 auto;
  }

  .booking-modal__form input,
  .booking-modal__form select,
  .booking-modal__form textarea {
    padding: 0.52rem 0.62rem;
    font-size: 0.88rem;
  }

  .booking-modal__fields .booking-modal__notes,
  .booking-modal__form .checkout-modal__msg,
  .booking-modal__form .btn {
    grid-column: 1 / -1;
  }

  .booking-modal__form textarea {
    min-height: 2.35rem;
    resize: vertical;
  }

  .booking-modal__form .btn {
    margin-top: 0.15rem;
    padding: 0.62rem 0.85rem;
    font-size: 0.92rem;
  }

  .booking-modal__form .checkout-modal__msg {
    font-size: 0.82rem;
  }
}

.exit-intent__dialog {
  text-align: center;
  max-width: 26rem;
}

.exit-intent__wait {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent-coral-soft, #ff8f6b);
  line-height: 1.15;
}

.exit-intent__lead {
  margin: 0.35rem 0 0.85rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.45;
}

.exit-intent__badge {
  margin: 0 auto 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  min-height: 5.5rem;
  border-radius: 50%;
  border: 2px solid rgba(0, 212, 255, 0.45);
  background:
    radial-gradient(circle at 35% 30%, rgba(0, 212, 255, 0.28), transparent 55%),
    rgba(12, 22, 34, 0.88);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.12), 0 12px 28px rgba(0, 0, 0, 0.35);
}

.exit-intent__badge span {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent-cyan-bright);
}

.exit-intent__note {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.exit-intent__note-line {
  display: block;
}

.exit-intent__actions {
  display: grid;
  gap: 0.55rem;
}

body.is-exit-intent-open {
  overflow: hidden;
}

.reviews-top {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
}

@media (min-width: 900px) {
  .reviews-top {
    grid-template-columns: minmax(14rem, 17rem) minmax(0, 1fr);
    align-items: stretch;
    gap: 1rem;
  }
}

.kharkiv-media {
  margin: 1.5rem 0 1.5rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.kharkiv-media__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}

.kharkiv-media__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.kharkiv-media__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.75rem;
  padding: 1rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.kharkiv-media__item:hover {
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.08);
}

.kharkiv-media__item img {
  display: block;
  max-width: 100%;
  max-height: 3.25rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 760px) {
  .kharkiv-media__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.reviews-socials {
  margin: 0 0 1.5rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.reviews-socials__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}

.reviews-socials__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
}

.reviews-socials__links .social-link {
  width: 100%;
  height: 4.25rem;
  font-size: 1.75rem;
  border-radius: 14px;
  border: 1px solid transparent;
  color: #fff;
}

.reviews-socials__links .social-link[aria-label="Facebook"] {
  background: #1877f2;
  border-color: #1877f2;
}

.reviews-socials__links .social-link[aria-label="Instagram"] {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #dc2743;
}

.reviews-socials__links .social-link[aria-label="Telegram"] {
  background: #229ed9;
  border-color: #229ed9;
}

.reviews-socials__links .social-link[aria-label="TikTok"] {
  background: #010101;
  border-color: #25f4ee;
  box-shadow: inset 2px 0 0 #25f4ee, inset -2px 0 0 #fe2c55;
}

.reviews-socials__links .social-link:hover {
  color: #fff;
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.reviews-socials__links .social-link[aria-label="TikTok"]:hover {
  box-shadow:
    inset 2px 0 0 #25f4ee,
    inset -2px 0 0 #fe2c55,
    0 8px 20px rgba(0, 0, 0, 0.28);
}

@media (max-width: 520px) {
  .reviews-socials__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-socials__links .social-link {
    height: 3.75rem;
    font-size: 1.5rem;
  }
}

.reviews-rating-wrap {
  display: flex;
  margin: 0;
  height: 100%;
}

.reviews-rating-wrap .reviews-rating {
  width: 100%;
  min-width: 0;
  height: 100%;
}

.site-rating {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  height: 100%;
}

@media (min-width: 640px) {
  .site-rating {
    grid-template-columns: minmax(8.5rem, 10.5rem) minmax(0, 1fr);
    align-items: center;
    gap: 0.9rem 1.1rem;
  }
}

.site-rating__avg-label,
.site-rating__cat-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
}

.site-rating__avg-score {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  background: linear-gradient(
    145deg,
    var(--accent-cyan-bright) 0%,
    var(--accent-cyan) 55%,
    var(--accent-mid) 100%
  );
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.35);
}

.site-rating__avg-count {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.site-rating__avg-stars,
.site-rating__cat-stars {
  display: inline-flex;
  gap: 0.12rem;
  color: #f4c430;
}

.site-rating__cats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

@media (min-width: 640px) {
  .site-rating__cats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.site-rating__cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.45rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.site-rating__cat-title {
  width: 100%;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
}

.site-rating__cat-score {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
}

.reviews__grid--page .review-card.is-hidden-review {
  display: none;
}

.reviews-more-wrap {
  display: flex;
  justify-content: center;
  margin: 1.15rem 0 0;
}

.site-review-form {
  margin-top: 1.65rem;
  padding: 1rem 1.05rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.site-review-form__title {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--text-white);
}

.site-review-form__body {
  display: grid;
  gap: 1rem 1.35rem;
}

@media (min-width: 780px) {
  .site-review-form__body {
    grid-template-columns: minmax(13.5rem, 16.5rem) minmax(0, 1fr);
  }
}

.site-review-form__criteria {
  display: grid;
  gap: 0.4rem;
}

.site-review-form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.site-review-form__row-label {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.site-review-stars {
  display: inline-flex;
  gap: 0.14rem;
}

.site-review-stars__btn {
  border: 0;
  padding: 0;
  background: none;
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.95rem;
  cursor: pointer;
}

.site-review-stars__btn.is-on,
.site-review-stars__btn:hover,
.site-review-stars__btn.is-hover {
  color: #f4c430;
}

.site-review-form__fields {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 560px) {
  .site-review-form__fields {
    grid-template-columns: minmax(11rem, 15rem) minmax(0, 1fr);
  }
}

.site-review-form__meta {
  display: grid;
  gap: 0.55rem;
}

.site-review-form__field {
  display: grid;
  gap: 0.25rem;
}

.site-review-form__field span {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-white);
}

.site-review-form__field input,
.site-review-form__field textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  font: inherit;
}

.site-review-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-top: 0.75rem;
}

.site-review-form__note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.site-review-form__msg.is-ok {
  color: #4ade80;
}

.site-review-form__msg.is-err {
  color: var(--accent-coral);
}

.toast.is-err {
  border-color: rgba(255, 107, 74, 0.45);
}

@media (max-width: 899px) {
  .checkout-modal {
    place-items: center;
    align-items: center;
    justify-items: center;
    padding: 0.75rem;
    padding-bottom: calc(0.75rem + 4.35rem + env(safe-area-inset-bottom, 0px));
  }

  .checkout-modal__dialog {
    width: min(100%, 28rem);
    max-height: min(calc(100svh - 6rem), 40rem);
    border-radius: var(--radius);
  }

  /* Booking: calendar + form, centered on viewport */
  .checkout-modal.booking-modal {
    place-items: center;
    align-items: center;
    justify-items: center;
    padding: 0.5rem;
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
  }

  .booking-modal .booking-modal__dialog {
    display: flex;
    flex-direction: column;
    width: min(100%, 26rem);
    max-width: 26rem;
    height: auto;
    max-height: min(calc(100dvh - 1rem), calc(100svh - 1rem));
    overflow: hidden;
    padding: 2rem 0.75rem 0.65rem;
    margin: auto;
  }

  .booking-modal .checkout-modal__close {
    top: 0.45rem;
    right: 0.45rem;
    width: 2rem;
    height: 2rem;
    font-size: 1.1rem;
  }

  .booking-modal .checkout-modal__title {
    margin: 0 0 0.12rem;
    font-size: clamp(0.92rem, 3.6vw, 1.1rem);
    line-height: 1.15;
  }

  .booking-modal .callback-modal__lead {
    margin: 0 0 0.3rem;
    font-size: clamp(0.66rem, 2.7vw, 0.78rem);
    line-height: 1.2;
  }

  .booking-modal__layout {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
    overflow: hidden;
  }

  .booking-modal .booking-cal {
    flex: 0 0 auto;
    margin-bottom: 0;
    gap: 0.22rem;
    width: 100%;
    min-width: 0;
  }

  .booking-modal .booking-cal__head {
    gap: 0.25rem;
  }

  .booking-modal .booking-cal__label {
    font-size: clamp(0.72rem, 3vw, 0.88rem);
  }

  .booking-modal .booking-cal__nav {
    width: 1.65rem;
    height: 1.65rem;
    font-size: 0.65rem;
    border-radius: 8px;
  }

  .booking-modal .booking-cal__grid {
    gap: 0.1rem;
  }

  .booking-modal .booking-cal__wd {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: unset;
    height: clamp(1.25rem, 4.5vw, 1.5rem);
    min-height: 0;
    font-size: clamp(0.55rem, 2.3vw, 0.64rem);
    padding: 0;
  }

  .booking-modal .booking-cal__pad {
    aspect-ratio: unset;
    height: clamp(1.25rem, 4.5vw, 1.5rem);
    min-height: 0;
  }

  .booking-modal .booking-cal__day {
    aspect-ratio: unset;
    height: clamp(1.25rem, 4.5vw, 1.5rem);
    min-height: 0;
    font-size: clamp(0.68rem, 2.8vw, 0.78rem);
    border-radius: 6px;
    padding: 0;
  }

  .booking-modal .booking-cal__slots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.25rem;
  }

  .booking-modal .booking-cal__slot {
    height: auto;
    min-height: clamp(1.75rem, 6vw, 2.1rem);
    padding: 0.22rem 0.15rem;
    font-size: clamp(0.68rem, 2.8vw, 0.76rem);
    border-radius: 8px;
    align-content: center;
  }

  .booking-modal .booking-cal__slot-note {
    display: block;
    font-size: clamp(0.5rem, 2vw, 0.58rem);
    line-height: 1.1;
  }

  .booking-modal .booking-modal__form {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow: hidden;
    width: 100%;
  }

  .booking-modal .booking-modal__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem 0.45rem;
    flex: 0 0 auto;
    align-content: start;
    overflow: hidden;
  }

  .booking-modal .booking-modal__fields > label:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .booking-modal .booking-modal__fields > label:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .booking-modal .booking-modal__fields > label:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }

  .booking-modal .booking-modal__fields > label:nth-child(4) {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .booking-modal .booking-modal__fields .booking-modal__notes,
  .booking-modal .booking-modal__form .checkout-modal__msg,
  .booking-modal .booking-modal__form .btn {
    grid-column: 1 / -1;
  }

  .booking-modal .booking-modal__fields .booking-modal__notes {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
  }

  .booking-modal .booking-modal__fields .booking-modal__notes textarea {
    min-height: 2.4rem;
    resize: vertical;
  }

  .booking-modal .checkout-modal__form label {
    gap: 0.08rem;
    font-size: clamp(0.58rem, 2.3vw, 0.68rem);
    line-height: 1.15;
    min-width: 0;
  }

  .booking-modal .checkout-modal__form .field-label {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    max-width: 100%;
  }

  .booking-modal .checkout-modal__form .form-contact-label {
    gap: 0.2rem;
    font-size: clamp(0.58rem, 2.15vw, 0.7rem);
    flex: 0 1 auto;
    min-width: 0;
  }

  .booking-modal .checkout-modal__form .form-contact-label__item {
    gap: 0.1rem;
  }

  .booking-modal .checkout-modal__form .form-required {
    flex: 0 0 auto;
  }

  .booking-modal .checkout-modal__form input,
  .booking-modal .checkout-modal__form select,
  .booking-modal .checkout-modal__form textarea {
    padding: 0.32rem 0.42rem;
    font-size: clamp(0.72rem, 3vw, 0.82rem);
  }

  .booking-modal .booking-modal__form .btn {
    margin-top: 0;
    padding: 0.42rem 0.65rem;
    font-size: clamp(0.78rem, 3.1vw, 0.88rem);
    flex-shrink: 0;
  }

  .booking-modal .booking-modal__form .checkout-modal__msg {
    font-size: 0.66rem;
    line-height: 1.15;
  }
}

@media (max-width: 899px) and (max-height: 700px) {
  .booking-modal .booking-modal__dialog {
    padding: 1.85rem 0.5rem 0.4rem;
  }

  .booking-modal .checkout-modal__title {
    font-size: 0.88rem;
  }

  .booking-modal .callback-modal__lead {
    margin-bottom: 0.2rem;
    font-size: 0.64rem;
  }

  .booking-modal__layout {
    gap: 0.22rem;
  }

  .booking-modal .booking-cal {
    gap: 0.15rem;
  }

  .booking-modal .booking-cal__wd,
  .booking-modal .booking-cal__pad,
  .booking-modal .booking-cal__day {
    height: clamp(1.1rem, 4vw, 1.3rem);
  }

  .booking-modal .booking-cal__nav {
    width: 1.35rem;
    height: 1.35rem;
  }

  .booking-modal .booking-cal__day {
    font-size: 0.62rem;
    border-radius: 5px;
  }

  .booking-modal .booking-cal__slot {
    height: auto;
    min-height: clamp(1.5rem, 5vw, 1.7rem);
    padding: 0.15rem 0.1rem;
    font-size: 0.64rem;
  }

  .booking-modal .booking-modal__fields {
    gap: 0.18rem 0.32rem;
  }

  .booking-modal .checkout-modal__form input,
  .booking-modal .checkout-modal__form select {
    padding: 0.26rem 0.34rem;
    font-size: 0.7rem;
  }

  .booking-modal .booking-modal__form .btn {
    padding: 0.36rem 0.5rem;
    font-size: 0.76rem;
  }
}


/* Live chat widget (opens from contact FAB) */
.svs-chat {
  position: fixed;
  right: max(1.1rem, env(safe-area-inset-right, 0px) + 0.85rem);
  bottom: max(5.6rem, env(safe-area-inset-bottom, 0px) + 5.4rem);
  z-index: 1195;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  pointer-events: none;
}
.svs-chat[hidden] { display: none !important; }
.svs-chat.is-open { pointer-events: auto; }
.svs-chat__panel,
.svs-chat__form,
.svs-chat__x {
  pointer-events: auto;
}
.svs-chat__panel {
  width: min(92vw, 22.5rem);
  height: min(70vh, 28rem);
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #0c1622;
  border: 1px solid rgba(0, 212, 255, 0.28);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}
.svs-chat__panel[hidden] { display: none !important; }
.svs-chat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  background: rgba(0, 212, 255, 0.1);
  border-bottom: 1px solid rgba(0, 212, 255, 0.18);
  color: #fff;
}
.svs-chat__head-main {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.svs-chat__head-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 212, 255, 0.45);
  flex: 0 0 auto;
}
.svs-chat__head strong { display: block; font-size: 0.95rem; }
.svs-chat__head span { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 0.1rem; }
.svs-chat__x {
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
}
.svs-chat__messages {
  flex: 1;
  overflow: auto;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #08101a;
}
.svs-chat__bubble {
  max-width: 85%;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.35;
  color: #e8eef5;
}
.svs-chat__bubble p { margin: 0; white-space: pre-wrap; word-break: break-word; }
.svs-chat__bubble p + .svs-chat__image-link,
.svs-chat__image-link + p { margin-top: 0.35rem; }
.svs-chat__image-link {
  display: block;
  line-height: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.svs-chat__image {
  display: block;
  max-width: min(220px, 100%);
  max-height: 180px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.svs-chat__image-link:hover .svs-chat__image,
.svs-chat__image-link:focus-visible .svs-chat__image {
  transform: scale(1.02);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
body.is-svs-chat-lightbox-open { overflow: hidden; }
.svs-chat-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1210;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.svs-chat-lightbox[hidden] { display: none !important; }
.svs-chat-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.svs-chat-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(4, 10, 18, 0.88);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.svs-chat-lightbox__close {
  position: absolute;
  top: max(0.75rem, env(safe-area-inset-top, 0px) + 0.5rem);
  right: max(0.75rem, env(safe-area-inset-right, 0px) + 0.5rem);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
.svs-chat-lightbox__close:hover,
.svs-chat-lightbox__close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}
.svs-chat-lightbox__img {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 720px);
  max-height: min(88vh, 860px);
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.svs-chat__bubble--system {
  align-self: center;
  max-width: 95%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.72);
  font-size: 0.8rem;
  text-align: center;
}
.svs-chat__bubble--me {
  align-self: flex-end;
  background: rgba(0, 212, 255, 0.22);
  border: 1px solid rgba(0, 212, 255, 0.28);
}
.svs-chat__bubble--admin {
  align-self: flex-start;
  background: rgba(255,255,255,0.1);
}
.svs-chat__form {
  display: grid;
  gap: 0.45rem;
  padding: 0.65rem;
  border-top: 1px solid rgba(0, 212, 255, 0.15);
  background: #0c1622;
}
.svs-chat__name,
.svs-chat__row input {
  width: 100%;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 10px;
  background: rgba(8, 14, 24, 0.9);
  color: #fff;
  padding: 0.55rem 0.7rem;
  font: inherit;
}
.svs-chat__row {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.svs-chat__attach {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 10px;
  background: rgba(8, 14, 24, 0.9);
  color: rgba(0, 212, 255, 0.9);
  cursor: pointer;
}
.svs-chat__attach:hover { background: rgba(0, 212, 255, 0.12); }
.svs-chat__row input[type="text"] { flex: 1; }
.svs-chat__row button[type="submit"] {
  border: 0;
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  background: var(--accent-cyan, #00d4ff);
  color: #081018;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .svs-chat {
    right: max(0.75rem, env(safe-area-inset-right, 0px) + 0.5rem);
    left: max(0.75rem, env(safe-area-inset-left, 0px) + 0.5rem);
    bottom: max(5.4rem, env(safe-area-inset-bottom, 0px) + 5.2rem);
    align-items: stretch;
  }
  .svs-chat__panel { width: 100%; }
}
