@charset "UTF-8";

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

:root {
  --yellow: #FDF567;
  --light: #F1F1F1;
  --white: #FFF;
  --black: #000;
}

body {
  font-family: "Inter Tight", sans-serif;
  background: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}



/* ─── CONTAINER ─────────────────────────────── */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

/* ─── HEADER ─────────────────────────────── */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.08);
}

.header__inner {
  padding: 0;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

/* ─── LOGO ───────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo__svg {
  height: 40px;
  width: auto;
}

/* ─── NAV ────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 20px;
}

.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.18s;
  white-space: nowrap;
}

.nav__link:hover {
  background: var(--yellow);
}

.spacer {
  flex: 1;
  display: none;
}

/* ─── CONTACTS BLOCK ─────────────────────── */
.contacts {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.contacts__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  flex-shrink: 0;
  text-decoration: none;
}

.contacts__icon:hover {
  transform: scale(1.1);
}

.contacts__icon--viber {
  background: #F1F1F1;
}

.contacts__icon--telegram {
  background: #F1F1F1;
}

.contacts__icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* ─── PHONE DROPDOWN ─────────────────────── */
.phone-dropdown {
  position: relative;
  flex-shrink: 0;
}

.phone-dropdown__trigger {
  display: flex;
  align-items: center;
  background: var(--yellow);
  border-radius: 50px;
  padding: 0 4px 0 14px;
  height: 38px;
  gap: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.18s;
  font-family: "Inter Tight", sans-serif;
}

.phone-dropdown__trigger:hover {
  background: #f0e840;
}

.phone-dropdown__number {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.phone-dropdown__chevron {
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.phone-dropdown__chevron svg {
  width: 14px;
  height: 14px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2.5;
}

.phone-dropdown.is-open .phone-dropdown__chevron {
  transform: rotate(180deg);
}

.phone-dropdown__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 8px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-dropdown.is-open .phone-dropdown__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.phone-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.16s;
}

.phone-dropdown__item:hover {
  background: var(--yellow);
}

.phone-dropdown__item-icon {
  width: 32px;
  height: 32px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.16s;
}

.phone-dropdown__item:hover .phone-dropdown__item-icon {
  background: rgba(0, 0, 0, 0.1);
}

.phone-dropdown__item-icon svg {
  width: 15px;
  height: 15px;
  fill: var(--black);
}

.phone-dropdown__item-info {
  display: flex;
  flex-direction: column;
}

.phone-dropdown__item-num {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--black);
}

.phone-dropdown__item-name {
  font-size: 11.5px;
  font-weight: 500;
  color: #777;
  margin-top: 1px;
}

/* ─── BURGER ─────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: var(--light);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  gap: 5px;
  flex-shrink: 0;
  transition: background 0.18s;
}

.burger:hover {
  background: var(--yellow);
}

.burger__line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.32s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.2s;
  transform-origin: center;
}

.burger.is-open .burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open .burger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.is-open .burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE OVERLAY ─────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.is-open {
  pointer-events: all;
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1.5px solid var(--light);
}

.mobile-menu__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, transform 0.2s;
}

.mobile-menu__close:hover {
  background: #f0e840;
  transform: rotate(90deg);
}

.mobile-menu__close svg {
  width: 16px;
  height: 16px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2.5;
}

.mobile-menu__nav {
  padding: 12px 0;
}

.mobile-menu__nav-link {
  display: block;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--light);
  transition: background 0.16s, padding-left 0.16s;
}

.mobile-menu__nav-link:last-child {
  border-bottom: none;
}

.mobile-menu__nav-link:hover {
  background: var(--yellow);
  padding-left: 32px;
}

.mobile-menu__phones {
  padding: 16px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.mobile-menu__phone-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--light);
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  transition: background 0.18s;
}

.mobile-menu__phone-card:hover {
  background: var(--yellow);
}

.mobile-menu__phone-text {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--black);
}

.mobile-menu__phone-icon {
  width: 34px;
  height: 34px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s;
}

.mobile-menu__phone-card:hover .mobile-menu__phone-icon {
  background: rgba(0, 0, 0, 0.12);
}

.mobile-menu__phone-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--black);
}

/* ════════════════════════════════════════════
   ─── HERO SECTION ───────────────────────────
   ════════════════════════════════════════════ */
.hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 40px 64px;
  text-align: center;
}

.hero__title {
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
  max-width: 920px;
  margin: 0 auto 14px;
}

.hero__sub {
  font-size: 14px;
  font-weight: 400;
  color: #999;
  /* margin-bottom: 40px; */
}

/* ─── PHOTO STRIP ─── */
.hero__strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  /* margin-bottom: 44px; */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  /* padding: 20px 0; */
  overflow: hidden;
}

.hero__photo {
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

/* inner two photos */
.hero__photo:nth-child(2) {
  width: 384px;
  height: 384px;
  transform: rotate(-4.5deg);
}

.hero__photo:nth-child(3) {
  width: 384px;
  height: 384px;
  transform: rotate(4.5deg);
}

/* outer photos cropped on the outer side (left/right) */
.hero__photo:nth-child(1) {
  width: 384px;
  height: 384px;
  transform: rotate(-17deg);
  margin-left: -80px;
  margin-top: 13rem;
  flex-shrink: 0;
}

.hero__photo:nth-child(4) {
  width: 384px;
  height: 384px;
  transform: rotate(17deg);
  margin-right: -80px;
  margin-top: 13rem;
  flex-shrink: 0;
}

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

/* coloured placeholder cards */
.hero__photo--p1 {
  background: #c4b5a0;
}

.hero__photo--p2 {
  background: #2d2d2d;
}

.hero__photo--p3 {
  background: #3a3a4a;
}

.hero__photo--p4 {
  background: #b8afa8;
}

/* ════════════════════════════════════════════
   ─── REUSABLE CTA BUTTON  .btn-cta ──────────
   ════════════════════════════════════════════

   Default:  [ Безкоштовна консультація ] (●yellow)
   Hover:    (●black) [ Безкоштовна консультація ]

   The dot is OUTSIDE the yellow pill, adjacent to it.
   Default: dot on the right with yellow bg.
   Hover:   dot moves to left, becomes black bg.

   Markup:
     <a href="#" class="btn-cta">
       <span class="btn-cta__dot-slot btn-cta__dot-slot--left"><span class="btn-cta__dot btn-cta__dot--left">→</span></span>
       <span class="btn-cta__label">Текст кнопки</span>
       <span class="btn-cta__dot-slot btn-cta__dot-slot--right"><span class="btn-cta__dot btn-cta__dot--right">↗</span></span>
     </a>
*/
/* Wrapper so dot can sit outside pill */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  text-decoration: none;
}

/* The yellow pill (label only) */
.btn-cta__label {
  order: 1;
  display: flex;
  align-items: center;
  background: var(--yellow);
  border-radius: 50px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s;
}

.btn-cta:hover .btn-cta__label {
  background: #f5ee50;
}

/* Dot slot — fixed size, holds both dots via absolute */
.btn-cta__dot-slot {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.btn-cta__dot-slot--right {
  order: 2;
}

.btn-cta__dot-slot--left {
  order: 0;
  width: 0;
  overflow: hidden;
  transition: width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta:hover .btn-cta__dot-slot--left {
  width: 52px; /* 48px dot + 4px gap */
}

.btn-cta__dot {
  position: absolute;
  inset: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.22s;
}

/* Right dot — visible default, shrinks out on hover */
.btn-cta__dot--right {
  background: var(--yellow);
  color: var(--black);
  transform: scale(1);
  opacity: 1;
}

.btn-cta:hover .btn-cta__dot--right {
  transform: scale(0);
  opacity: 0;
}

/* Left dot — hidden default, pops in on hover */
.btn-cta__dot--left {
  background: var(--black);
  color: var(--yellow);
  transform: scale(0);
  opacity: 0;
}

.btn-cta:hover .btn-cta__dot--left {
  transform: scale(1);
  opacity: 1;
}

/* ─── BREAKPOINTS ────────────────────────── */
@media (max-width: 1024px) {
  .header__inner {
    padding: 0;
    gap: 24px;
  }
  .nav__link {
    padding: 6px 10px;
    font-size: 13.5px;
  }
  .hero {
    padding: 48px 0 52px;
  }
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .header__inner {
    padding: 0;
    gap: 12px;
  }
  .burger {
    display: flex;
  }
  /* collapse phone pill to icon circle */
  .phone-dropdown__number {
    display: none;
  }
  .phone-dropdown__chevron {
    display: none;
  }
  .phone-dropdown__trigger {
    padding: 0;
    width: 36px;
    height: 36px;
    justify-content: center;
    border-radius: 50%;
    background: var(--yellow);
  }
  /* tiny phone icon inside collapsed trigger */
  .phone-dropdown__trigger::after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E") no-repeat center/contain;
  }
  .hero {
    padding: 36px 0 44px;
  }
  .hero__strip {
    gap: 20px;
  }
  .hero__photo:nth-child(1) {
    width: 140px;
    height: 140px;
    margin-left: -60px;
    margin-top: 5rem;
  }
  .hero__photo:nth-child(2) {
    width: 140px;
    height: 140px;
  }
  .hero__photo:nth-child(3) {
    width: 140px;
    height: 140px;
  }
  .hero__photo:nth-child(4) {
    width: 140px;
    height: 140px;
    margin-right: -60px;
    margin-top: 5rem;
  }
}
@media (max-width: 390px) {
  .header__inner {
    padding: 0;
    height: 58px;
  }
  .contacts__icon {
    width: 32px;
    height: 32px;
  }
  .logo__svg {
    height: 34px;
  }
  .hero {
    padding: 28px 0 36px;
  }
  .hero__strip {
    gap: 6px;
  }
  .hero__photo:nth-child(1),
  .hero__photo:nth-child(4) {
    display: none;
  }
  .hero__photo:nth-child(2),
  .hero__photo:nth-child(3) {
    width: 47%;
    height: 210px;
    margin: 0;
    transform: none;
  }
}
/* ════════════════════════════════════════════
   ─── VIDEO SECTION ───────────────────────────
   ════════════════════════════════════════════ */
.videos {
  padding: 60px 0 50px;
  overflow: hidden;
}

.videos__inner {
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 40px;
}

.videos__label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.videos__label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  border: 1.5px solid var(--black);
  flex-shrink: 0;
}

.videos__title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
}

.videos__desc {
  font-size: 14px;
  font-weight: 400;
  color: #999;
  line-height: 1.6;
  max-width: 260px;
  text-align: right;
  padding-top: 6px;
}

/* ─── SLIDER ─── */
.videos__slider-wrap {
  overflow: hidden;
  padding: 0 0 0 0px; /* left indent aligns with layout */
  cursor: grab;
}

.videos__slider-wrap:active {
  cursor: grabbing;
}

.videos__track {
  display: flex;
  gap: 14px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* ─── VIDEO CARD ─── */
.vcard {
  position: relative;
  flex-shrink: 0;
  /* width: 220px; */
  width: 300px;
  /* height: 160px; */
  height: 250px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--light);
  transition: transform 0.2s;
}

.vcard:hover {
  transform: scale(1);
}

.vcard__thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}

.vcard:hover .vcard__thumb {
  transform: scale(1.06);
}

/* placeholder colours */
.vcard__thumb--1 {
  background-color: #3a3a3a;
  background-image: url("https://stock.mangorini.online/wp-content/themes/mostock/assets/img/vid1.png");
}

.vcard__thumb--2 {
  background-color: #d4c8be;
  background-image: url("https://stock.mangorini.online/wp-content/themes/mostock/assets/img/vid2.png");
}

.vcard__thumb--3 {
  background-color: #c8c8d8;
  background-image: url("https://stock.mangorini.online/wp-content/themes/mostock/assets/img/vid3.png");
}

.vcard__thumb--4 {
  background-color: #e8e0d0;
  background-image: url("https://stock.mangorini.online/wp-content/themes/mostock/assets/img/vid4.png");
}

.vcard__thumb--5 {
  background-color: #b8c8b8;
  background-image: url("/img/vid1.png");
}

/* dark overlay */
.vcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
  transition: background 0.2s;
}

.vcard:hover::after {
  background: rgba(0, 0, 0, 0.18);
}

/* play button */
.vcard__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--yellow);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.2s, background 0.2s;
}

.vcard__play:hover {
  transform: scale(1.1);
  background: #f5ee50;
}

.vcard__play svg {
  width: 20px;
  height: 20px;
  fill: var(--black);
  margin-left: 2px;
}

/* external link icon — top-right corner */
.vcard__link {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
  transform: translateY(-4px);
  text-decoration: none;
}

.vcard:hover .vcard__link {
  opacity: 1;
  transform: translateY(0);
}

.vcard__link:hover {
  background: rgba(255, 255, 255, 0.35);
}

.vcard__link svg {
  width: 14px;
  height: 14px;
}

/* ─── CONTROLS ─── */
.videos__controls {
  max-width: 1440px;
  margin: 28px auto 0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.videos__progress-wrap {
  flex: 1;
  max-width: 400px;
  height: 3px;
  background: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
}

.videos__progress-bar {
  height: 100%;
  background: var(--yellow);
  border-radius: 2px;
  width: 20%;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.videos__arrows {
  display: flex;
  gap: 6px;
}

.videos__arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #ccc;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
}

.videos__arrow:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: scale(1.05);
}

.videos__arrow svg {
  width: 16px;
  height: 16px;
}

/* ─── LIGHTBOX ─── */
.vlightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.vlightbox.is-open {
  pointer-events: all;
  opacity: 1;
}

.vlightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.vlightbox__box {
  position: relative;
  width: min(860px, 94vw);
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  transform: scale(0.92);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.vlightbox.is-open .vlightbox__box {
  transform: scale(1);
}

.vlightbox__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.vlightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.18s, transform 0.2s;
}

.vlightbox__close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: rotate(90deg);
}

.vlightbox__close svg {
  width: 14px;
  height: 14px;
  fill: none;
}

/* ─── VIDEO SECTION MOBILE ─── */
@media (max-width: 768px) {
  .videos {
    padding: 48px 0 40px;
  }
  .videos__inner {
    padding: 0 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }
  .videos__desc {
    text-align: left;
  }
  .videos__slider-wrap {
    padding-left: 20px;
  }
  .videos__controls {
    padding: 0 20px;
  }
  .vcard {
    width: 180px;
    height: 130px;
  }
  .videos__title {
    font-size: clamp(38px, 3.5vw, 46px);
    font-weight: 700;
  }
}
@media (max-width: 390px) {
  .videos__inner {
    padding: 0 16px;
  }
  .videos__slider-wrap {
    padding-left: 16px;
  }
  .videos__controls {
    padding: 0 16px;
  }
  .vcard {
    width: 160px;
    height: 116px;
  }
}
/* ════════════════════════════════════════════
   ─── BRANDS SECTION ──────────────────────────
   ════════════════════════════════════════════ */
.brands {
  padding: 60px 0 50px;
  overflow: hidden;
}

.brands__head {
  text-align: center;
  margin-bottom: 40px;
}

.brands__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.brands__label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  border: 1.5px solid var(--black);
  flex-shrink: 0;
}

.brands__title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--black);
}

/* ── Marquee rows ── */
.brands__row {
  position: relative;
  display: flex;
  overflow: hidden;
  margin-bottom: 14px;
}

/* fade edges */
.brands__row::before,
.brands__row::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.brands__row::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.brands__row::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.brands__track {
  display: flex;
  gap: 14px;
  /* animation is set inline per row for direction */
  will-change: transform;
  flex-shrink: 0;
}

/* pause on hover */
.brands__row:hover .brands__track {
  animation-play-state: paused;
}

/* ── Brand tile ── */
.brand-tile {
  flex-shrink: 0;
  width: 180px;
  height: 90px;
  background: var(--light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s;
}

.brand-tile:hover {
  background: var(--yellow);
  transform: scale(1.03);
}

.brand-tile img {
  max-width: 70%;
  max-height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  filter: grayscale(1) contrast(1.1);
  transition: filter 0.2s;
}

.brand-tile:hover img {
  filter: grayscale(0);
}

/* SVG text logos (placeholder until real PNGs are added) */
.brand-tile__name {
  font-family: "Inter Tight", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.brand-tile__name--italic {
  font-style: italic;
}

.brand-tile__name--serif {
  font-family: Georgia, serif;
  font-size: 14px;
}

/* ── Keyframes ── */
@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.brands__footer {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: #999;
}

.brands__footer strong {
  font-weight: 800;
  color: var(--black);
}

@media (max-width: 768px) {
  .brands {
    padding: 44px 0 36px;
  }
  .brand-tile {
    width: 150px;
    height: 78px;
  }
}
@media (max-width: 390px) {
  .brand-tile {
    width: 130px;
    height: 68px;
  }
  .brand-tile__name {
    font-size: 12px;
  }
}
/* ════════════════════════════════════════════
   ─── SUBSCRIBE SECTION ───────────────────────
   ════════════════════════════════════════════ */
/* Subscribe section: full-width bg, photos float above */
.subscribe {
  background: var(--yellow);
  padding: 80px 0;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Photos sit absolute relative to .subscribe, outside content flow */
.subscribe__photo {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}

/* Left side: 2 stacked photos, top-left */
.subscribe__photo--tl {
  width: 145px;
  height: 190px;
  top: 70px;
  left: 10%;
  /* transform: rotate(-4deg); */
}

.subscribe__photo--bl {
  width: 175px;
  height: 130px;
  top: 200px;
  left: 7%;
  /* transform: rotate(3deg); */
}

/* Right side: 2 stacked photos, top-right */
.subscribe__photo--tr {
  width: 210px;
  height: 275px;
  top: -45px;
  right: 10%;
}

.subscribe__photo--br {
  width: 110px;
  height: 145px;
  top: 120px;
  right: 11%;
}

/* Bottom-center-right: 1 photo */
.subscribe__photo--bc {
  width: 130px;
  height: 170px;
  bottom: -70px;
  left: 22%;
  /* transform: rotate(2deg); */
}

.subscribe__photo--bt {
  width: 100px;
  height: 70px;
  right: 20%;
  bottom: 40px;
}

/* placeholder colours */
.subscribe__photo--tl {
  background: linear-gradient(135deg, #8888aa 0%, #443355 100%);
}

.subscribe__photo--bl {
  background: linear-gradient(135deg, #aabbcc 0%, #5577aa 100%);
}

.subscribe__photo--tr {
  background: linear-gradient(135deg, #cccccc 0%, #999 100%);
}

.subscribe__photo--br {
  background: linear-gradient(135deg, #99aabb 0%, #4466aa 100%);
}

.subscribe__photo--bc {
  background: linear-gradient(135deg, #bbccaa 0%, #668855 100%);
}

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

/* Centre content in a container */
.subscribe__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 650px;
  margin: 0 auto;
}

.subscribe__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.subscribe__label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--black);
  opacity: 0.45;
  flex-shrink: 0;
}

.subscribe__title {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 16px;
}

.subscribe__desc {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto 32px;
}

.subscribe__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

/* ── Messenger buttons: fixed width, pill shifts right on hover ── */
.btn-messenger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  font-family: "Inter Tight", sans-serif;
}

/* 48px fixed slot — holds both dots */
.btn-messenger__dot-slot {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.btn-messenger__dot-slot--right {
  order: 2;
}

.btn-messenger__dot-slot--left {
  order: 0;
  width: 0;
  overflow: hidden;
  transition: width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-messenger:hover .btn-messenger__dot-slot--left {
  width: 52px;
}

/* The colored pill */
.btn-messenger__label {
  order: 1;
  display: flex;
  align-items: center;
  border-radius: 50px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), filter 0.22s;
}

.btn-messenger--viber .btn-messenger__label {
  background: #665CAC;
  color: #fff;
}

.btn-messenger--telegram .btn-messenger__label {
  background: #2AABEE;
  color: #fff;
}

.btn-messenger:hover .btn-messenger__label {
  filter: brightness(1.12);
}

/* Dots — scale in/out */
.btn-messenger__dot {
  position: absolute;
  inset: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.22s;
}

.btn-messenger__dot svg {
  width: 20px;
  height: 20px;
}

/* Right dot — visible default, shrinks out */
.btn-messenger__dot--right {
  transform: scale(1);
  opacity: 1;
}

.btn-messenger:hover .btn-messenger__dot--right {
  transform: scale(0);
  opacity: 0;
}

/* Left dot — hidden default, pops in */
.btn-messenger__dot--left {
  transform: scale(0);
  opacity: 0;
}

.btn-messenger:hover .btn-messenger__dot--left {
  transform: scale(1);
  opacity: 1;
}

/* Dot colours */
.btn-messenger--viber .btn-messenger__dot {
  background: #665CAC;
}

.btn-messenger--telegram .btn-messenger__dot {
  background: #2AABEE;
}

.subscribe__note {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
}

.subscribe__note strong {
  font-weight: 800;
  color: var(--black);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  /* .subscribe { padding: 200px 0 60px; } */
  .subscribe__photo--tl {
    width: 120px;
    height: 140px;
    left: 2%;
    top: 15px;
  }
  .subscribe__photo--bl {
    width: 105px;
    height: 120px;
    left: 4%;
    top: 155px;
  }
  .subscribe__photo--tr {
    width: 115px;
    height: 135px;
    right: 2%;
    top: 10px;
  }
  .subscribe__photo--br {
    width: 100px;
    height: 115px;
    right: 4%;
    top: 145px;
  }
  .subscribe__photo--bc {
    display: none;
  }
  .subscribe img {
    display: none;
  }
}
@media (max-width: 390px) {
  /* .subscribe { padding: 175px 0 50px; } */
  .subscribe__photo--bl {
    display: none;
  }
  .subscribe__photo--br {
    display: none;
  }
  .subscribe__photo--bc {
    display: none;
  }
  .subscribe__btns {
    flex-direction: column;
    align-items: center;
  }
}
/* ════════════════════════════════════════════
   ─── CTA DARK BLOCK ──────────────────────────
   ════════════════════════════════════════════ */
.cta-dark {
  background: var(--black);
  padding: 72px 0;
}

.cta-dark__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: #777;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-dark__label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

.cta-dark__title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 32px;
}

.cta-dark__person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-dark__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #333;
}

.cta-dark__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.cta-dark__person-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.cta-dark__person-role {
  font-size: 12px;
  color: #666;
  font-weight: 400;
}

.cta-dark__right {
  padding-top: 8px;
}

.cta-dark__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.cta-dark__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.cta-dark__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

.cta-dark__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.cta-dark__check svg {
  width: 11px;
  height: 11px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-dark__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 768px) {
  .cta-dark {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 52px 0;
  }
}
@media (max-width: 390px) {
  .cta-dark {
    padding: 44px 0;
  }
}
/* ════════════════════════════════════════════
   ─── CONTACTS BLOCK ──────────────────────────
   ════════════════════════════════════════════ */
.contacts-block {
  background: #f4f4f4;
  padding: 72px 0;
}

.contacts-block__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: #aaa;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contacts-block__label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  border: 1.5px solid #999;
  flex-shrink: 0;
}

.contacts-block__title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 18px;
}

.contacts-block__desc {
  font-size: 14px;
  color: #777;
  line-height: 1.65;
  max-width: 380px;
}

/* Right: cards grid */
.contacts-block__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}

.contact-card {
  border-radius: 16px;
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
  text-decoration: none;
  transition: filter 0.2s, transform 0.18s;
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  transform: scale(1.02);
  filter: brightness(1.07);
}

.contact-card--viber {
  background: #665CAC;
  grid-column: 1;
  grid-row: 1;
}

.contact-card--telegram {
  background: #2AABEE;
  grid-column: 2;
  grid-row: 1;
}

.contact-card--phone {
  background: var(--white);
  grid-column: 1/-1;
  grid-row: 2;
}

/* arrow top-right */
.contact-card__arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}

.contact-card--phone .contact-card__arrow {
  background: var(--light);
}

.contact-card:hover .contact-card__arrow {
  background: rgba(255, 255, 255, 0.32);
}

.contact-card__arrow svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card--phone .contact-card__arrow svg {
  stroke: var(--black);
}

.contact-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}

.contact-card__icon svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}

.contact-card__name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.contact-card__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* Phone card — light version */
.contact-card--phone .contact-card__name {
  font-size: 13px;
  font-weight: 600;
  color: #999;
  margin-bottom: 6px;
}

.contact-card--phone .contact-card__number {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .contacts-block {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 52px 0;
  }
  .contacts-block__cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 390px) {
  .contacts-block {
    padding: 44px 0;
  }
  .contacts-block__cards {
    grid-template-columns: 1fr;
  }
  .contact-card--viber {
    grid-column: 1;
    grid-row: 1;
  }
  .contact-card--telegram {
    grid-column: 1;
    grid-row: 2;
  }
  .contact-card--phone {
    grid-column: 1;
    grid-row: 3;
  }
}
/* ════════════════════════════════════════════
   ─── FOOTER ──────────────────────────────────
   ════════════════════════════════════════════ */
.footer {
  background: var(--black);
  padding: 64px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Logo + tagline col ── */
.footer__logo {
  display: block;
  margin-bottom: 20px;
}

.footer__logo img {
  height: 44px;
  width: auto;
  display: block;
  /* invert to make logo white on dark bg if needed */
  filter: invert(1);
}

/* fallback if no image */
.footer__logo-fallback {
  display: flex;
  align-items: center;
}

.footer__logo-fallback svg {
  height: 44px;
  width: auto;
}

.footer__tagline {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  max-width: 200px;
}

/* ── Nav col ── */
.footer__col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 20px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #999;
  text-decoration: none;
  transition: color 0.18s;
  width: -moz-fit-content;
  width: fit-content;
}

.footer__nav-link:hover {
  color: var(--yellow);
}

/* ── Schedule col ── */
.footer__schedule {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__schedule-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 10px;
}

.footer__schedule-text {
  font-size: 14px;
  color: #999;
  line-height: 1.65;
}

/* ── Phone col ── */
.footer__phones {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__phone-link {
  font-size: 14px;
  font-weight: 600;
  color: #999;
  text-decoration: none;
  transition: color 0.18s;
  width: -moz-fit-content;
  width: fit-content;
}

.footer__phone-link:hover {
  color: var(--yellow);
}

/* ── Bottom bar ── */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 11px;
  color: #333;
  letter-spacing: 0.02em;
}

.footer__legal {
  display: flex;
  gap: 28px;
}

.footer__legal-link {
  font-size: 11px;
  color: #333;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.18s;
}

.footer__legal-link:hover {
  color: #666;
}

@media (max-width: 1024px) {
  .footer {
    padding: 52px 0 0;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 44px 0 0;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 390px) {
  .footer {
    padding: 40px 0 0;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 90%;
    margin: 0 auto;
  }
  .footer__legal {
    flex-direction: column;
    gap: 10px;
  }
}
/* ════════════════════════════════════════════
   ─── FEATURES SECTION ────────────────────────
   ════════════════════════════════════════════ */
.features {
  padding: 80px 0;
  /* display: grid; */
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ── Left: sticky ── */
.features__left {
  position: sticky;
  top: 80px; /* clears header */
  align-self: start;
}

.features__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: #aaa;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.features__label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--black);
  opacity: 0.35;
  flex-shrink: 0;
}

.features__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 20px;
}

.features__desc {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 380px;
}

/* ── Right: stacking cards ── */
.features__right {
  position: relative;
}

.features__stack {
  display: flex;
  flex-direction: column;
  gap: 0; /* no gap — cards overlap */
}

.feat-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 18px;
  padding: 24px 24px 26px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  /* sticky stacking: each card sticks at progressively lower top offset */
  position: sticky;
  will-change: transform;
  transition: box-shadow 0.25s;
  margin-bottom: 10px;
}

/* Each card gets top offset via inline style set in HTML */
.feat-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.feat-card__icon {
  width: 52px;
  height: 52px;
  background: var(--black);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-card__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.feat-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.feat-card__sub {
  font-size: 13px;
  color: #888;
  line-height: 1.55;
}

/* ── MOBILE: stacked layout, horizontal scroll cards ── */
@media (max-width: 768px) {
  .features > .container,
  .features [style*=grid-template-columns] {
    grid-template-columns: 1fr !important;
  }
  .cta-dark > .container,
  .contacts-block > .container {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .features {
    grid-template-columns: 1fr;
    padding: 52px 0;
    gap: 32px;
    overflow: hidden;
  }
  .features__left {
    position: static;
    padding: 0 5%;
  }
  .features__right {
    overflow: hidden;
  }
  .features__stack {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    padding: 0 5% 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  /* hide scrollbar */
  .features__stack::-webkit-scrollbar {
    display: none;
  }
  .features__stack {
    scrollbar-width: none;
  }
  .feat-card {
    flex-direction: column;
    min-width: 240px;
    max-width: 240px;
    flex-shrink: 0;
    position: static;
    scroll-snap-align: start;
    margin-bottom: 0;
  }
}
@media (max-width: 390px) {
  .features {
    padding: 44px 0;
  }
  .feat-card {
    min-width: 210px;
    max-width: 210px;
  }
}
/* ════════════════════════════════════════════
      ─── POPUP MODAL ─────────────────────────────
      ════════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.3s;
}

.popup-overlay.is-open {
  background: rgba(0, 0, 0, 0.55);
  pointer-events: all;
}

.popup {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 40px 36px;
  width: 100%;
  max-width: 420px;
  position: relative;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.28s;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.popup-overlay.is-open .popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, transform 0.18s;
}

.popup__close:hover {
  background: var(--yellow);
  transform: rotate(90deg);
}

.popup__close svg {
  width: 14px;
  height: 14px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.popup__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 28px;
  padding-right: 24px;
}

.popup__field-label {
  font-size: 12px;
  font-weight: 600;
  color: #aaa;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.popup__input {
  width: 100%;
  border: 2px solid var(--light);
  border-radius: 14px;
  padding: 14px 18px;
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  outline: none;
  transition: border-color 0.18s;
  margin-bottom: 20px;
  background: var(--white);
}

.popup__input:focus {
  border-color: var(--yellow);
}

.popup__input::-moz-placeholder {
  color: #bbb;
}

.popup__input::placeholder {
  color: #bbb;
}

/* Submit button — reuses btn-cta mechanics, full width */
.popup__submit {
  width: 100%;
  justify-content: center;
  background-color: transparent;
  border: none;
}

.popup__submit .btn-cta__label {
  flex: 1;
  justify-content: center;
}

@media (max-width: 480px) {
  .popup {
    padding: 32px 24px 28px;
    border-radius: 20px;
  }
  .popup__title {
    font-size: 22px;
  }



}

  .hf-message {
    display:none !important;
  } 
  .hf-message-success
  {
    display:none !important;
  }



/*# sourceMappingURL=style.css.map */