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

html { scroll-behavior: smooth; }

body { background: #FFFFFF; }
:root {
  --color-graphite-10: rgba(155, 161, 165, 0.1);
  --color-black-5: rgba(0, 0, 0, 0.05);
  --color-white: #FFFFFF;
  --color-white-100: #FFFFFF;
  --color-white-80: rgba(255, 255, 255, 0.8);
  --color-black-100: #000000;
  --color-black-70: rgba(0, 0, 0, 0.7);
  --color-orange: #FD783A;
}

body {
  background: var(--color-graphite-10);
  font-family: 'Manrope', sans-serif;
}

/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */

.s-hero {
  width: 100%;
  background: var(--color-graphite-10);
  padding: 8px 8px 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  min-height: 600px;
}

.s-hero__container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 156px;
  overflow: hidden;
}

.s-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 156px;
}

.s-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Mobile image — hidden on desktop/tablet */
.s-hero__bg img.hero-img-mobile { display: none; }
.s-hero__bg img.hero-img-desktop { display: block; }

.s-hero__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 96px;
}

/* Left: title + subtitle */
.s-hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

/* Desktop title: 3 рядки через <br> в HTML */
.s-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(48px, 5vw, 96px);
  line-height: 0.9;
  letter-spacing: -4px;
  text-transform: uppercase;
  color: var(--color-white-100);
  white-space: nowrap;
}

.s-hero__title .thin-italic {
  font-weight: 300;
  font-style: italic;
}

.s-hero__subtitle {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: var(--color-white-80);
  white-space: nowrap;
}

/* Right: description + button */
.s-hero__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 420px;
  flex-shrink: 0;
}

.s-hero__desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-white-80);
}

.s-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid var(--color-orange);
  border-radius: 20px;
  background: transparent;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-white-100);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  min-width: 157px;
  height: 66px;
}
.s-hero__btn:hover {
  background: var(--color-orange);
  color: var(--color-white);
}

/* ── Hero TABLET (481–1024px) ── */
@media (min-width: 481px) and (max-width: 1024px) {
  .s-hero {
    height: 100vh;
    min-height: 600px;
    padding: 8px 8px 4px 8px;
  }

  .s-hero__container { border-radius: 156px; }
  .s-hero__bg { border-radius: 156px; }

  .s-hero__inner {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 80px 96px 280px 96px;
  }

  .s-hero__left {
    width: 100%;
    align-items: center;
    gap: 16px;
    text-align: center;
    flex: unset;
  }

  /* font-size щоб текст влізав в 2 рядки */
  .s-hero__title {
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -4px;
    text-align: center;
    white-space: normal;
  }

  .s-hero__subtitle {
    font-size: 20px;
    text-align: center;
    white-space: normal;
  }

  .s-hero__right {
    width: 100%;
    align-items: center;
    gap: 32px;
    padding: 0 80px;
  }

  .s-hero__desc {
    text-align: center;
    width: 100%;
  }

  /* Кнопку прибираємо на таблеті */
  .s-hero__btn { display: none; }
}

/* ── Hero MOBILE (до 480px) ── */
@media (max-width: 480px) {
  .s-hero {
    height: 100vh;
    min-height: 600px;
    padding: 8px 8px 4px 8px;
  }

  .s-hero__container {
    border-radius: 106px;
    height: 100%;
  }

  .s-hero__bg { border-radius: 106px; }

  /* Mobile image */
  .s-hero__bg img.hero-img-desktop { display: none; }
  .s-hero__bg img.hero-img-mobile { display: block; }

  .s-hero__inner {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 80px 24px 202px 24px;
  }

  .s-hero__left {
    width: 100%;
    max-width: 326px;
    align-items: center;
    gap: 8px;
    flex: unset;
  }

  .s-hero__title {
    font-size: 38px;
    line-height: 42px;
    letter-spacing: -2px;
    text-align: center;
    white-space: normal;
  }

  .s-hero__subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--color-white-100);
    white-space: normal;
  }

  /* Кнопку прибираємо на мобайлі */
  .s-hero__btn { display: none; }

  .s-hero__right {
    width: 100%;
    max-width: 326px;
    align-items: center;
    gap: 24px;
    padding: 0;
  }

  .s-hero__desc {
    text-align: center;
  }

  /* Mobile зображення для When Need і We Build */
  .s-when-need__img-bg img {  }
  .s-we-build__img-bg img  {  }

}

/* ════════════════════════════════════════
   HERO TITLE — br visibility per breakpoint
════════════════════════════════════════ */

/* За замовчуванням всі br приховані */
.br-desktop-1,
.br-desktop-2,
.br-tablet-1,
.br-mobile-1 { display: none; }

/* Desktop >1024: 3 рядки
   LANDING PAGE
   FOR ADS IN
   5 DAYS */
@media (min-width: 1025px) {
  .br-desktop-1 { display: block; }
  .br-desktop-2 { display: block; }
  .br-tablet-1  { display: none; }
  .br-mobile-1  { display: none; }
}

/* Tablet 481–1024: 2 рядки
   LANDING PAGE FOR ADS IN
   5 DAYS */
@media (min-width: 481px) and (max-width: 1024px) {
  .br-desktop-1 { display: none; }
  .br-desktop-2 { display: none; }
  .br-tablet-1  { display: block; }
  .br-mobile-1  { display: none; }
}

/* Mobile до 480: 2 рядки
   LANDING PAGE
   FOR ADS IN 5 DAYS */
@media (max-width: 480px) {
  .br-desktop-1 { display: none; }
  .br-desktop-2 { display: none; }
  .br-tablet-1  { display: none; }
  .br-mobile-1  { display: block; }
}

/* ════════════════════════════════════════
   WHEN NEED SECTION
════════════════════════════════════════ */

.s-when-need {
  width: 100%;
  background: var(--color-graphite-10);
  padding: 4px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.s-when-need__container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Left — image */
.s-when-need__img-wrap {
  height: 800px;
  border-radius: 156px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.s-when-need__img-bg {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  overflow: hidden;
}

.s-when-need__img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Right — text */
.s-when-need__text {
  height: 800px;
  background: var(--color-white);
  border-radius: 156px;
  padding: 32px 144px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  overflow: hidden;
}

.s-when-need__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--color-black-100);
}

.s-when-need__heading .thin-italic {
  font-weight: 300;
  font-style: italic;
}

.s-when-need__heading .bold {
  font-weight: 600;
  font-style: normal;
}

.s-when-need__body {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-black-70);
  width: 460px;
  max-width: 100%;
}

.s-when-need__note {
  background: var(--color-graphite-10);
  border-radius: 100px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 524px;
  max-width: 100%;
}

.s-when-need__note-star {
  position: absolute;
  top: -16px;
  left: 32px;
  font-family: 'Archivo', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--color-orange);
  font-weight: 400;
  user-select: none;
}

.s-when-need__note-text {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-black-70);
  width: 460px;
  max-width: 100%;
  text-align: center;
}

/* When Need — Tablet */
@media (min-width: 481px) and (max-width: 1024px) {
  .s-when-need__container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .s-when-need__img-wrap {
    height: 800px;
    border-radius: 156px;
    width: 100%;
  }
  .s-when-need__text {
    height: 800px;
    border-radius: 156px;
    padding: 32px 144px;
    width: 100%;
    justify-content: center;
  }
  .s-when-need__body { width: 100%; max-width: 460px; }
  .s-when-need__note { width: 524px; max-width: 100%; }
}

/* When Need — Mobile */
@media (max-width: 480px) {
  .s-when-need__container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .s-when-need__img-wrap {
    width: 100%;
    height: 580px;
    border-radius: 156px;
  }
  .s-when-need__img-bg { border-radius: 100px; }
  .s-when-need__text {
    width: 100%;
    height: auto;
    border-radius: 106px;
    padding: 80px 64px;
    gap: 24px;
  }
  .s-when-need__heading { font-size: 38px; letter-spacing: -2px; }
  .s-when-need__body { width: 100%; max-width: 100%; }
  .s-when-need__note {
    border-radius: 60px;
    padding: 32px;
    width: 246px;
    max-width: 100%;
  }
  .s-when-need__note-text { width: 182px; max-width: 100%; }
}

/* ════════════════════════════════════════
   WE BUILD SECTION
════════════════════════════════════════ */

.s-we-build {
  width: 100%;
  background: var(--color-graphite-10);
  padding: 4px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.s-we-build__container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Left — text */
.s-we-build__text {
  height: 800px;
  background: var(--color-white);
  border-radius: 156px;
  padding: 32px 144px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  overflow: hidden;
}

.s-we-build__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--color-black-100);
}
.s-we-build__heading .thin-italic {
  font-weight: 300;
  font-style: italic;
}
.s-we-build__heading .bold {
  font-weight: 600;
  font-style: normal;
}

.s-we-build__body {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-black-70);
  width: 460px;
  max-width: 100%;
}

.s-we-build__note {
  background: var(--color-graphite-10);
  border-radius: 100px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 524px;
  max-width: 100%;
}

.s-we-build__note-star {
  position: absolute;
  top: -16px;
  left: 32px;
  font-family: 'Archivo', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--color-orange);
  font-weight: 400;
  user-select: none;
}

.s-we-build__note-text {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-black-70);
  width: 460px;
  max-width: 100%;
  text-align: center;
}

/* Right — image */
.s-we-build__img-wrap {
  height: 800px;
  border-radius: 156px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.s-we-build__img-bg {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  overflow: hidden;
}

.s-we-build__img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* We Build — Tablet */
@media (min-width: 481px) and (max-width: 1024px) {
  .s-we-build__container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .s-we-build__img-wrap {
    order: -1;
    width: 100%;
    height: 800px;
    border-radius: 156px;
  }
  .s-we-build__text {
    height: 800px;
    border-radius: 156px;
    padding: 32px 144px;
    width: 100%;
  }
  .s-we-build__body { width: 100%; max-width: 460px; }
  .s-we-build__note { width: 524px; max-width: 100%; }
}

/* We Build — Mobile */
@media (max-width: 480px) {
  .s-we-build__container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .s-we-build__img-wrap {
    order: -1;
    width: 100%;
    height: 580px;
    border-radius: 156px;
  }
  .s-we-build__img-bg { border-radius: 100px; }
  .s-we-build__text {
    width: 100%;
    height: auto;
    border-radius: 106px;
    padding: 80px 64px;
    gap: 24px;
  }
  .s-we-build__heading { font-size: 38px; letter-spacing: -2px; }
  .s-we-build__body { width: 100%; max-width: 100%; }
  .s-we-build__note {
    border-radius: 60px;
    padding: 32px;
    width: 246px;
    max-width: 100%;
  }
  .s-we-build__note-text { width: 182px; max-width: 100%; }
}

/* ════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ── Hero title animation ──
   Весь h1 починається невидимим.
   JS додає клас .anim-in — тоді кожен .hero-word виїжджає знизу */
.s-hero__title {
  overflow: hidden;
}

/* Кожне слово/група огорнуте в .hero-word через JS */
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hero title: Medium = 500, Thin Italic = 100 */
.hero-word.medium { font-weight: 600; font-style: normal; }
.hero-word.bold { font-weight: 600; font-style: normal; }
.hero-word.thin-italic { font-weight: 300; font-style: italic; }

.s-hero__title.anim-in .hero-word {
  opacity: 1;
  transform: translateY(0);
}

/* Затримки для кожного слова */
.s-hero__title.anim-in .hero-word:nth-child(1)  { transition-delay: 0.05s; }
.s-hero__title.anim-in .hero-word:nth-child(2)  { transition-delay: 0.12s; }
.s-hero__title.anim-in .hero-word:nth-child(3)  { transition-delay: 0.19s; }
.s-hero__title.anim-in .hero-word:nth-child(4)  { transition-delay: 0.26s; }
.s-hero__title.anim-in .hero-word:nth-child(5)  { transition-delay: 0.33s; }
.s-hero__title.anim-in .hero-word:nth-child(6)  { transition-delay: 0.40s; }
.s-hero__title.anim-in .hero-word:nth-child(7)  { transition-delay: 0.47s; }

/* Subtitle і right block */
.s-hero__subtitle { opacity: 0; transform: translateY(16px); }
.s-hero__subtitle.anim-in {
  animation: fadeUp 0.7s 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
}
.s-hero__right { opacity: 0; transform: translateY(16px); }
.s-hero__right.anim-in {
  animation: fadeUp 0.7s 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════
   HERO TITLE — рядки по брейкпоінтах
════════════════════════════════════════ */

/* Базово: кожен .line = один рядок (display:block) */
.s-hero__title .line {
  display: block;
  overflow: hidden;
}
.s-hero__title .line > span {
  display: block;
}

/* Desktop >1024: 3 рядки, nowrap, font-size 96px */
@media (min-width: 1025px) {
  .s-hero__title {
    font-size: 96px;
    line-height: 86px;
    letter-spacing: -4px;
    white-space: nowrap;
  }
  .s-hero__title .line { display: block; }
  .s-hero__title .line > span { display: block; }
  /* Показуємо desktop-only span */
  .s-hero__title .desktop-only { display: inline; }
  .s-hero__title .tablet-only  { display: none; }
  .s-hero__title .mobile-only  { display: none; }
}

/* Tablet 481–1024: 2 рядки, font-size 82px */
@media (min-width: 481px) and (max-width: 1024px) {
  .s-hero__title {
    font-size: 82px;
    line-height: 82px;
    letter-spacing: -4px;
    white-space: nowrap;
    text-align: center;
  }
  .s-hero__title .line { display: block; }
  .s-hero__title .line > span { display: block; }
  .s-hero__title .desktop-only { display: none; }
  .s-hero__title .tablet-only  { display: block; }
  .s-hero__title .mobile-only  { display: none; }
}

/* Mobile до 480: 2 рядки, font-size 38px */
@media (max-width: 480px) {
  .s-hero__title {
    font-size: 38px;
    line-height: 42px;
    letter-spacing: -2px;
    white-space: nowrap;
    text-align: center;
  }
  .s-hero__title .line { display: block; }
  .s-hero__title .line > span { display: block; }
  .s-hero__title .desktop-only { display: none; }
  .s-hero__title .tablet-only  { display: none; }
  .s-hero__title .mobile-only  { display: block; }
}

/* Анімація рядків */
.s-hero__title .line > span {
  transform: translateY(110%);
  opacity: 0;
}
.s-hero__title.anim-in .line > span {
  animation: lineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.s-hero__title.anim-in .line:nth-child(1) > span { animation-delay: 0.10s; }
.s-hero__title.anim-in .line:nth-child(2) > span { animation-delay: 0.22s; }
.s-hero__title.anim-in .line:nth-child(3) > span { animation-delay: 0.34s; }


/* br в мобайл заголовку метрик */
.br-mob-metrics { display: none; }
@media (max-width: 480px) {
  .br-mob-metrics { display: block; }
}
/* ════════════════════════════════════════
   METRICS SECTION
════════════════════════════════════════ */

.s-metrics {
  width: 100%;
  background: var(--color-graphite-10);
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-metrics__container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

/* ── LEFT BLOCK ── */
.s-metrics__left {
  flex: 1;
  height: 808px;
  background: var(--color-white);
  border-radius: 156px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  text-align: center;
}

.s-metrics__label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 38px;
  line-height: normal;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-black-100);
}

.s-metrics__label .thin-italic {
  font-weight: 300;
  font-style: italic;
}

.s-metrics__price {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.s-metrics__price-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 224px;
  line-height: 224px;
  letter-spacing: -0.06em;
  color: var(--color-black-100);
}

.s-metrics__price-sym {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 224px;
  line-height: 224px;
  color: rgba(0,0,0,0.3); /* Graphite/Graphite 70 */
}

.s-metrics__desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-black-70);
  width: 460px;
  max-width: 100%;
}

/* ── RIGHT BLOCK ── */
.s-metrics__right {
  flex: 1;
  height: 808px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  position: relative;
}

/* Зірочка — в правому верхньому куті першої картки (Responsive Design) */
.s-metrics__star {
  display: none; /* використовуємо star всередині картки */
}

.s-metric-card__star {
  position: absolute;
  top: 24px;
  left: 32px;
  font-family: 'Archivo', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--color-orange);
  font-weight: 400;
  user-select: none;
}

/* Дві колонки карток */
.s-metrics__col {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Картка метрики */
.s-metric-card {
  flex: 1;
  min-height: 280px;
  background: var(--color-white);
  border-radius: 156px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  gap: 8px;
  text-align: center;
  position: relative;
}

.s-metric-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  line-height: normal;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--color-black-100);
}

.s-metric-card__title .thin-italic {
  font-weight: 300;
  font-style: italic;
}

.s-metric-card__title .bold {
  font-weight: 600;
  font-style: normal;
}

.s-metric-card__sub {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-black-70);
  max-width: 280px;
}
/* ── METRICS DESKTOP RESPONSIVE (1025–1440px) ── */
@media (min-width: 1025px) and (max-width: 1440px) {
  .s-metrics__left {
    width: 50%;
    padding: 40px;
  }
  .s-metrics__price-num, .s-metrics__price-sym {
    font-size: 160px;
    line-height: 160px;
  }
  .s-metrics__price-unit {
    font-size: 80px;
  }
}

/* ── METRICS TABLET (481–1024px) ── */
@media (min-width: 481px) and (max-width: 1024px) {
  .s-metrics__container {
    flex-direction: column;
    gap: 8px;
  }

  .s-metrics__left {
    width: 100%;
    height: auto;
    padding: 144px 64px;
    border-radius: 156px;
    gap: 64px;
  }

  .s-metrics__price-num,
  .s-metrics__price-sym {
    font-size: 224px;
    line-height: 224px;
  }

  .s-metrics__right {
    width: 100%;
    height: 799px;
    flex-direction: row;
    gap: 8px;
    position: relative;
  }

  .s-metrics__col {
    flex: 1;
    height: 100%;
  }

  /* Однакова висота карток на таблеті */
  .s-metric-card {
    flex: none;
    height: 395.5px;
    border-radius: 156px;
    padding: 40px 32px;
    min-height: 0;
  }

  .s-metric-card__sub {
    max-width: 220px;
    font-size: 14px;
  }
}

/* ── MOBILE (до 480px) ── */
@media (max-width: 480px) {
  .s-metrics__container {
    flex-direction: column;
    gap: 8px;
  }

  .s-metrics__left {
    width: 100%;
    height: auto;
    padding: 112px 24px;
    border-radius: 106px;
    gap: 32px;
    justify-content: center;
  }

  .s-metrics__label {
    font-size: 38px;
    letter-spacing: -2px;
    margin-bottom: 0;
  }

  .s-metrics__price-num,
  .s-metrics__price-sym {
    font-size: 120px;
    line-height: 224px;
  }

  .s-metrics__desc {
    width: 100%;
    padding: 0 64px;
  }

  .s-metrics__right {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 8px;
    position: relative;
  }

  .s-metrics__star {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: block;
    text-align: left;
    padding: 8px 0;
    font-size: 32px;
  }

  .s-metrics__col {
    width: 100%;
    flex-direction: column;
  }

  .s-metric-card {
    width: 100%;
    height: auto;
    min-height: 280px;
    border-radius: 106px;
    padding: 40px 24px;
  }

  .s-metric-card__star {
    width: 24px;
    height: 24px;
    top: 16px;
    left: 16px;
  }

  .s-metric-card__sub {
    max-width: 246px;
  }
}

/* ════════════════════════════════════════
   AI WILL FIT SECTION
════════════════════════════════════════ */

.s-ai-fit {
  width: 100%;
  background: var(--color-graphite-10);
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-ai-fit__container {
  width: 100%;
  height: 804px;
  border-radius: 156px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 202px 188px;
}

/* Background */
.s-ai-fit__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 156px;
}

.s-ai-fit__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.s-ai-fit__bg .ai-fit-bg-mobile { display: none; }
.s-ai-fit__bg .ai-fit-bg-desktop { display: block; }

/* Glass card */
.s-ai-fit__card {
  position: relative;
  z-index: 1;
  width: 1024px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  backdrop-filter: blur(44px);
  -webkit-backdrop-filter: blur(44px);
}

/* Title wrapper */
.s-ai-fit__title-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.s-ai-fit__title-row-left {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.s-ai-fit__title-row-right {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.s-ai-fit__title-ai,
.s-ai-fit__title-fit {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 86px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-white-100);
}

.s-ai-fit__title-ai {
  letter-spacing: -2px;
}

.s-ai-fit__title-ai .medium {
  font-weight: 600;
  font-style: normal;
}

.s-ai-fit__title-fit {
  letter-spacing: -6px;
}

/* Bullet lists — 2 columns on desktop */
.s-ai-fit__lists {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.s-ai-fit__list {
  list-style: disc;
  list-style-position: outside;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s-ai-fit__list li {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-white-100);
}

/* ── AI FIT TABLET (481–1024px) ── */
@media (min-width: 481px) and (max-width: 1024px) {
  .s-ai-fit__container {
    height: 804px;
    border-radius: 156px;
    padding: 202px 112px;
  }

  .s-ai-fit__card {
    width: 784px;
    padding: 64px;
    gap: 32px;
    border-radius: 40px;
  }

  .s-ai-fit__title-ai,
  .s-ai-fit__title-fit {
    font-size: 72px;
  }

  .s-ai-fit__title-ai { letter-spacing: -2px; }
  .s-ai-fit__title-fit { letter-spacing: -6px; }

  /* Single column list on tablet */
  .s-ai-fit__lists {
    grid-template-columns: 1fr;
  }
}

/* ── AI FIT MOBILE (до 480px) ── */
@media (max-width: 480px) {
  .s-ai-fit {
    padding: 4px 8px;
  }

  .s-ai-fit__container {
    height: auto;
    border-radius: 106px;
    padding: 144px 24px;
  }

  .s-ai-fit__bg { border-radius: 106px; }

  .s-ai-fit__bg .ai-fit-bg-desktop { display: none; }
  .s-ai-fit__bg .ai-fit-bg-mobile { display: block; }

  .s-ai-fit__card {
    width: 100%;
    padding: 48px 24px;
    gap: 48px;
    border-radius: 40px;
  }

  .s-ai-fit__title-ai,
  .s-ai-fit__title-fit {
    font-size: 38px;
    letter-spacing: -2px;
    text-align: center;
  }

  .s-ai-fit__title-wrap {
    align-items: center;
  }

  .s-ai-fit__title-row-left {
    justify-content: center;
  }

  .s-ai-fit__title-row-right {
    justify-content: center;
  }

  /* Single column list */
  .s-ai-fit__lists {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════
   NOT FULL WEBSITE SECTION
════════════════════════════════════════ */

.s-not-full {
  width: 100%;
  background: var(--color-graphite-10);
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-not-full__container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Left — image */
.s-not-full__img-wrap {
  height: 800px;
  border-radius: 156px;
  overflow: hidden;
  position: relative;
}

.s-not-full__img-bg {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  overflow: hidden;
}

.s-not-full__img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Right — text */
.s-not-full__text {
  height: 800px;
  background: var(--color-white);
  border-radius: 156px;
  padding: 32px 144px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  overflow: hidden;
}

.s-not-full__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  line-height: normal;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--color-black-100);
}

.s-not-full__heading .medium {
  font-weight: 600;
  font-style: normal;
}

.s-not-full__heading .thin-italic {
  font-weight: 300;
  font-style: italic;
}

.s-not-full__body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-black-70);
  max-width: 460px;
}

/* Note block */
.s-not-full__note {
  background: var(--color-black-5);
  border-radius: 100px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 524px;
  max-width: 100%;
}

.s-not-full__note-star {
  position: absolute;
  top: -16px;
  left: 32px;
  font-family: 'Archivo', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--color-orange);
  font-weight: 400;
  user-select: none;
}

.s-not-full__note-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-black-70);
  width: 460px;
  max-width: 100%;
  text-align: center;
}

/* ── NOT FULL TABLET (481–1024px) ── */
@media (min-width: 481px) and (max-width: 1024px) {
  .s-not-full__container {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .s-not-full__img-wrap {
    width: 100%;
    height: 800px;
    border-radius: 156px;
  }

  .s-not-full__img-bg {
    border-radius: 100px;
  }

  .s-not-full__text {
    width: 100%;
    height: 800px;
    border-radius: 156px;
    padding: 32px 144px;
    gap: 24px;
  }

  .s-not-full__body { width: 100%; max-width: 460px; }
  .s-not-full__note { width: 524px; max-width: 100%; }
}

/* ── NOT FULL MOBILE (до 480px) ── */
@media (max-width: 480px) {
  .s-not-full__container {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .s-not-full__img-wrap {
    width: 100%;
    height: 580px;
    border-radius: 156px;
  }

  .s-not-full__img-bg {
    border-radius: 100px;
  }

  .s-not-full__text {
    width: 100%;
    height: auto;
    border-radius: 106px;
    padding: 80px 64px;
    gap: 24px;
  }

  .s-not-full__note {
    border-radius: 60px;
    padding: 32px;
    width: 246px;
    max-width: 100%;
  }

  .s-not-full__note-text { width: 182px; max-width: 100%; }
}

/* ════════════════════════════════════════
   HOW IT WORKS SECTION
════════════════════════════════════════ */

.s-how {
  width: 100%;
  background: var(--color-graphite-10);
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-how__container {
  width: 100%;
  background: var(--color-white);
  border-radius: 156px;
  padding: 144px 0 176px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* Header row — desktop: horizontal, space-between */
.s-how__header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
}

.s-how__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 86px;
  line-height: normal;
  letter-spacing: -4px;
  text-transform: uppercase;
  color: var(--color-black-100);
}

.s-how__title .thin-italic {
  font-weight: 300;
  font-style: italic;
}

.s-how__title .medium {
  font-weight: 600;
  font-style: normal;
}

.s-how__desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-black-70);
  max-width: 420px;
  text-align: left;
}

/* Cards row */
.s-how__cards {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0 64px;
  gap: 10px;
}

.s-how__card {
  flex: 1 1 0;
  min-width: 0;
  min-height: 265px;
  background: var(--color-black-5);
  border-radius: 72px;
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.s-how__card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  line-height: normal;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--color-black-100);
}

.s-how__card-title .thin-italic {
  font-weight: 300;
  font-style: italic;
}

.s-how__card-title .medium {
  font-weight: 600;
  font-style: normal;
}

.s-how__card-body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-black-70);
}

/* ── HOW IT WORKS DESKTOP RESPONSIVE (1025–1728px) ── */
@media (min-width: 1025px) and (max-width: 1728px) {
  .s-how__card {
    padding: 64px 24px 64px 24px;
  }
  .s-how__card-title {
    display: flex;
    flex-direction: column;
  }
}

/* Dots — hidden on desktop */
.s-how__dots {
  display: none;
}

.s-how__dot {
  width: 32px;
  height: 1px;
  border-radius: 0;
  background: var(--color-black-5);
  transition: background 0.3s;
}

.s-how__dot.active {
  background: var(--color-orange);
}

/* ── HOW TABLET (481–1024px) ── */
@media (min-width: 481px) and (max-width: 1024px) {
  .s-how__container {
    border-radius: 156px;
    padding: 144px 0 176px 0;
    gap: 64px;
  }

  .s-how__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 64px;
  }

  .s-how__title {
    font-size: 64px;
    letter-spacing: -4px;
  }

  .s-how__desc {
    max-width: 680px;
  }

  .s-how__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    padding: 0 64px;
    gap: 10px;
  }

  .s-how__card {
    min-height: 0;
    padding: 64px;
  }
}

/* ── HOW MOBILE (до 480px) ── */
@media (max-width: 480px) {
  .s-how {
    padding: 4px 8px;
  }

  .s-how__container {
    border-radius: 106px;
    padding: 112px 24px;
    gap: 64px;
  }

  .s-how__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 0 8px;
  }

  .s-how__title {
    font-size: 38px;
    letter-spacing: -2px;
  }

  .s-how__desc {
    max-width: 100%;
    text-align: center;
  }

  /* Horizontal scroll */
  .s-how__cards {
    width: calc(100% + 24px);
    margin-right: -24px;
    display: flex;
    flex-direction: row;
    padding: 0;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
  }

  .s-how__cards::-webkit-scrollbar { display: none; }

  .s-how__card {
    flex: 0 0 calc(100% - 24px);
    min-height: 276px;
    padding: 64px 32px;
    border-radius: 72px;
    scroll-snap-align: start;
  }

  /* Show dots on mobile */
  .s-how__dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
}

/* Disable reveal animation on how cards mobile */
@media (max-width: 480px) {
  .s-how__card.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ════════════════════════════════════════
   PROJECTS SECTION
════════════════════════════════════════ */

.s-projects {
  width: 100%;
  background: var(--color-graphite-10);
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-projects__container {
  width: 100%;
  background: var(--color-white);
  border-radius: 156px;
  padding: 144px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* Header — desktop: horizontal space-between */
.s-projects__header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
}

.s-projects__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 86px;
  line-height: normal;
  letter-spacing: -4px;
  text-transform: uppercase;
  color: var(--color-black-100);
}

.s-projects__title .thin-italic {
  font-weight: 300;
  font-style: italic;
}

.s-projects__title .medium {
  font-weight: 600;
  font-style: normal;
}

.s-projects__desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-black-70);
  max-width: 420px;
  text-align: left;
}

/* Cards grid — 2 columns */
.s-projects__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 48px;
  gap: 8px;
}

/* Card */
.s-projects__card {
  position: relative;
  border-radius: 156px;
  overflow: hidden;
  aspect-ratio: 899 / 800;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.15s ease;
}

.s-projects__card-empty {
  border-radius: 156px;
  aspect-ratio: 899 / 800;
}

.s-projects__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

/* Dark overlay with glass card on hover */
.s-projects__card-overlay {
  display: none;
}

.s-projects__card-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  border-radius: 72px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  width: 380px;
  min-height: 360px;
  justify-content: center;
  transition: transform 0.3s ease;
}

.s-projects__card:hover .s-projects__card-content {
  transform: translate(-50%, -50%);
}

/* Button hidden by default, appears on hover */
.s-projects__card-btn {
  opacity: 0;
  height: 0;
  padding: 0 24px;
  margin-top: -16px;
  border-width: 0;
  overflow: hidden;
  transition: opacity 0.3s, height 0.3s, padding 0.3s, margin-top 0.3s, border-width 0.3s;
  pointer-events: none;
}

.s-projects__card:hover .s-projects__card-btn {
  opacity: 1;
  height: 52px;
  padding: 16px 24px;
  margin-top: 0;
  border-width: 1px;
  pointer-events: auto;
}

.s-projects__card:hover .s-projects__card-content {
  transform: translate(-50%, -50%);
}

.s-projects__card-cat {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.s-projects__card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-white-100);
}

.s-projects__card-name .thin-italic {
  font-weight: 300;
  font-style: italic;
}

.s-projects__card-name .medium {
  font-weight: 600;
  font-style: normal;
}

/* Button */
.s-projects__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-orange);
  border-width: 0; /* Hidden by default */
  border-radius: 20px;
  background: transparent;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  color: var(--color-white-100);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.s-projects__card-btn:hover {
  background: var(--color-orange);
  color: var(--color-white-100);
  border-color: var(--color-orange);
}

/* ── PROJECTS TABLET (481–1024px) ── */
@media (min-width: 481px) and (max-width: 1024px) {
  .s-projects__container {
    border-radius: 156px;
    padding: 144px 0;
    gap: 64px;
  }

  .s-projects__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 64px;
  }

  .s-projects__title {
    font-size: 64px;
    letter-spacing: -4px;
  }

  .s-projects__desc {
    max-width: 680px;
    text-align: left;
  }

  .s-projects__grid {
    grid-template-columns: 1fr;
    padding: 0 48px;
    gap: 8px;
  }

  .s-projects__card {
    aspect-ratio: 899 / 800;
    border-radius: 156px;
  }

  .s-projects__card-empty {
    display: none;
  }

  .s-projects__card-btn {
    opacity: 1;
    pointer-events: auto;
    height: auto;
    margin-top: 0;
    padding: 16px 24px;
    border-width: 1px;
  }
}

/* ── PROJECTS MOBILE (до 480px) ── */
@media (max-width: 480px) {
  .s-projects {
    padding: 4px 8px;
  }

  .s-projects__container {
    border-radius: 106px;
    padding: 112px 24px 24px 24px;
    gap: 64px;
  }

  .s-projects__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    padding: 0 24px;
  }

  .s-projects__title {
    font-size: 38px;
    letter-spacing: -2px;
  }

  .s-projects__desc {
    max-width: 100%;
    text-align: center;
  }

  .s-projects__grid {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 16px;
  }

  .s-projects__card {
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
    border-radius: 48px;
    background: var(--color-black-100);
    display: flex;
    flex-direction: column;
  }

  .s-projects__card-empty {
    display: none;
  }

  .s-projects__card-img {
    height: 300px;
    flex: 0 0 auto;
    border-radius: 48px 48px 0 0;
  }

  /* On mobile cards read as image plus text, not image-only tiles. */
  .s-projects__card-content {
    position: static;
    transform: none;
    opacity: 1;
    width: 100%;
    min-height: 0;
    height: auto;
    padding: 28px 24px 32px;
    border-radius: 0 0 48px 48px;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.98), rgba(0, 0, 0, 1));
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .s-projects__card:hover .s-projects__card-content {
    transform: none;
  }

  .s-projects__card-btn {
    opacity: 1;
    pointer-events: auto;
    height: auto;
    margin-top: 0;
    padding: 16px 24px;
    border-width: 1px;
  }

  .s-projects__card-name {
    font-size: 30px;
    letter-spacing: 0;
  }

  .s-projects__card-cat {
    font-size: 12px;
    letter-spacing: 0.6px;
  }

  /* Mobile images */
}

/* ════════════════════════════════════════
   YOUR CHOICE SECTION
════════════════════════════════════════ */

.s-choice {
  width: 100%;
  background: var(--color-graphite-10);
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-choice__container {
  width: 100%;
  background: var(--color-white);
  border-radius: 156px;
  padding: 144px 0 176px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* Header — desktop: horizontal space-between */
.s-choice__header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
}

.s-choice__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 86px;
  line-height: normal;
  letter-spacing: -4px;
  text-transform: uppercase;
  color: var(--color-black-100);
}

.s-choice__title .thin-italic {
  font-weight: 300;
  font-style: italic;
}

.s-choice__title .medium {
  font-weight: 600;
  font-style: normal;
}

.s-choice__desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-black-70);
  max-width: 420px;
  text-align: left;
}

/* Cards — 3 columns */
.s-choice__cards {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0 64px;
  gap: 10px;
  overflow: visible;
}

.s-choice__card {
  flex: 1;
  background: var(--color-black-5);
  border-radius: 72px;
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  overflow: visible;
}

.s-choice__card-star {
  position: absolute;
  top: -16px;
  left: 32px;
  font-family: 'Archivo', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--color-orange);
  font-weight: 400;
  user-select: none;
}

.s-choice__card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  line-height: normal;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--color-black-100);
}

.s-choice__card-title .thin-italic {
  font-weight: 300;
  font-style: italic;
}

.s-choice__card-title .medium {
  font-weight: 600;
  font-style: normal;
}

.s-choice__card-body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-black-70);
}

.s-choice__card-price {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-black-100);
  margin-top: auto;
}

/* Dots hidden on desktop */
.s-choice__dots { display: none; }
.s-choice__dot {
  width: 32px;
  height: 1px;
  background: var(--color-black-5);
  transition: background 0.3s;
}
.s-choice__dot.active { background: var(--color-orange); }

/* ── CHOICE TABLET (481–1024px) ── */
@media (min-width: 481px) and (max-width: 1024px) {
  .s-choice__container {
    border-radius: 156px;
    padding: 144px 0 176px 0;
    gap: 64px;
  }

  .s-choice__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 64px;
  }

  .s-choice__title {
    font-size: 64px;
    letter-spacing: -4px;
  }

  .s-choice__desc { max-width: 680px; }

  /* First card full width, next two in a row */
  .s-choice__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 64px;
    gap: 10px;
  }

  .s-choice__card:first-child {
    grid-column: 1 / -1;
  }
}

/* ── CHOICE MOBILE (до 480px) ── */
@media (max-width: 480px) {
  .s-choice {
    padding: 4px 8px;
  }

  .s-choice__container {
    border-radius: 106px;
    padding: 112px 24px;
    gap: 64px;
  }

  .s-choice__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 0 8px;
  }

  .s-choice__title {
    font-size: 38px;
    letter-spacing: -2px;
  }

  .s-choice__desc {
    max-width: 100%;
    text-align: center;
  }

  .s-choice__cards {
    width: calc(100% + 24px);
    margin-right: -24px;
    display: flex;
    flex-direction: row;
    padding: 40px 0 0 0;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
  }

  .s-choice__cards::-webkit-scrollbar { display: none; }

  .s-choice__card {
    flex: 0 0 calc(100% - 24px);
    padding: 64px 32px;
    border-radius: 72px;
    scroll-snap-align: start;
  }

  .s-choice__card.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .s-choice__dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
}

/* ════════════════════════════════════════
   PRICE SECTION
════════════════════════════════════════ */

.s-price {
  width: 100%;
  background: var(--color-graphite-10);
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-price__container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 8px;
}

/* Card shared */
.s-price__card {
  flex: 1;
  border-radius: 156px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 808px;
}

.s-price__card-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 64px;
  text-align: center;
}

/* Dark card (сайт) */
.s-price__card--dark {
  background: var(--color-black-100);
}

.s-price__card-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.s-price__card-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.s-price__card--dark:hover .s-price__card-bg-img {
  transform: scale(1.05);
}

/* Light card (Site Support) */
.s-price__card--light {
  background: var(--color-white);
}

/* Labels */
.s-price__card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: var(--color-white-100);
}

.s-price__card-label .thin-italic { font-weight: 300; font-style: italic; }
.s-price__card-label .medium { font-weight: 600; font-style: normal; }

.s-price__card-label--dark {
  color: var(--color-black-100);
}

/* Price numbers */
.s-price__price-row {
  display: flex;
  align-items: flex-end;
}

.s-price__price-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 224px;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--color-white-100);
}

.s-price__price-num--dark {
  color: var(--color-black-100);
}

.s-price__price-sym {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 224px;
  line-height: 1;
  color: var(--color-orange);
}

.s-price__price-sym--gray {
  color: rgba(155, 161, 165, 0.7);
}

.s-price__price-unit {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 120px;
  line-height: 1;
  color: rgba(155, 161, 165, 0.7);
}

/* Descriptions */
.s-price__card-desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-black-70);
  max-width: 460px;
}

.s-price__card-desc--light {
  color: rgba(255, 255, 255, 0.7);
}

/* Buttons — hidden on desktop, appear on hover */
.s-price__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  height: 0;
  padding: 0 24px;
  overflow: hidden;
  transition: opacity 0.3s, height 0.3s, padding 0.3s;
  pointer-events: none;
}

.s-price__card:hover .s-price__card-btn {
  opacity: 1;
  height: auto;
  padding: 24px;
  pointer-events: auto;
}

.s-price__card-btn--white {
  background: var(--color-white);
  color: var(--color-black-100);
  border: none;
}

.s-price__card-btn--orange {
  background: var(--color-orange);
  color: var(--color-white-100);
  border: none;
}

/* ── PRICE TABLET (481–1024px) ── */
@media (min-width: 481px) and (max-width: 1024px) {
  .s-price__container {
    flex-direction: column;
    gap: 8px;
  }

  .s-price__card {
    min-height: 800px;
    border-radius: 156px;
  }

  .s-price__card-inner {
    padding: 88px 64px;
  }

  .s-price__card-btn {
    opacity: 1;
    height: auto;
    padding: 24px;
    pointer-events: auto;
  }
}

/* ── PRICE MOBILE (до 480px) ── */
@media (max-width: 480px) {
  .s-price {
    padding: 4px 8px;
  }

  .s-price__container {
    flex-direction: column;
    gap: 8px;
  }

  .s-price__card {
    min-height: 740px;
    border-radius: 106px;
  }

  .s-price__card-inner {
    gap: 0;
    padding: 64px 32px;
    justify-content: center;
  }

  .s-price__card-inner .s-price__price-row {
    margin-top: 64px;
  }

  .s-price__card-inner .s-price__card-desc {
    margin-top: 64px;
  }

  .s-price__card-inner .s-price__card-btn {
    margin-top: 32px;
  }

  .s-price__price-num,
  .s-price__price-sym {
    font-size: 120px;
    line-height: 1;
  }

  .s-price__price-unit {
    font-size: 64px;
    line-height: 1;
  }

  .s-price__card-btn {
    opacity: 1;
    height: auto;
    padding: 24px;
    pointer-events: auto;
  }

  .s-price__card--light {
    min-height: 740px;
  }

  .s-price__card-label--dark {
    text-align: center;
  }
}


/* ═══════════════════════════════════════════
   FAQ'S
   ═══════════════════════════════════════════ */
.s-faq {
  background: var(--color-graphite-10);
  padding: 4px 8px;
}

.s-faq__container {
  background: #fff;
  border-radius: 156px;
  padding: 144px 64px;
  width: 100%;
  margin: 0 auto;
}

.s-faq__header {
  max-width: 1776px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.s-faq__title-wrap {
  width: 420px;
  flex-shrink: 0;
}

.s-faq__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 86px;
  line-height: auto;
  text-transform: uppercase;
  letter-spacing: -4px;
  color: #1a1a1a;
}

.s-faq__title-apo {
  font-weight: 300;
  font-style: italic;
  letter-spacing: -2px;
}

.s-faq__desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.7);
  max-width: 420px;
}

.s-faq__body {
  max-width: 1776px;
  margin: 144px auto 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.s-faq__label {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: rgba(42, 42, 42, 0.6);
}

.s-faq__list {
  position: relative;
}

.s-faq__list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(155, 161, 165, 0.3);
}

.s-faq__item {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.s-faq__num {
  flex: 1;
  padding-top: 47px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 24px;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: rgba(42, 42, 42, 0.6);
}

.s-faq__right {
  flex: 0 0 900px;
  max-width: 100%;
  border-top: 1px solid rgba(155, 161, 165, 0.3);
}

.s-faq__item:first-child .s-faq__right {
  border-top: none;
}

.s-faq__item:last-child .s-faq__right {
  border-bottom: 1px solid rgba(155, 161, 165, 0.3);
}

.s-faq__q-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 47px 0;
  gap: 10px;
}

.s-faq__q {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #1a1a1a;
}

.s-faq__toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.s-faq__toggle span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 48px;
  color: #F26722;
  line-height: 1;
  display: inline-block;
  width: 28px;
  text-align: center;
}

.s-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.s-faq__answer-wrap {
  overflow: hidden;
}

.s-faq__answer-wrap p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.7);
  max-width: 600px;
  padding-bottom: 64px;
}

.s-faq__item.open .s-faq__answer {
  grid-template-rows: 1fr;
}

/* ── FAQ TABLET (481–1024px) ── */
@media (max-width: 1024px) {
  .s-faq__container {
    max-width: 1008px;
    padding: 144px 64px;
  }

  .s-faq__header {
    max-width: 880px;
  }

  .s-faq__body {
    max-width: 880px;
  }

  .s-faq__num {
    width: 48px;
    flex: none;
  }

  .s-faq__list::before {
    left: 0;
    display: none; /* We don't need this pseudo-element if we apply borders on the item */
  }

  .s-faq__item {
    border-top: 1px solid rgba(155, 161, 165, 0.3);
  }
  .s-faq__item:last-child {
    border-bottom: 1px solid rgba(155, 161, 165, 0.3);
  }
  .s-faq__right {
    flex: 1;
    max-width: none;
    border-top: none;
  }
  .s-faq__item:first-child .s-faq__right {
    border-top: none;
  }
  .s-faq__item:last-child .s-faq__right {
    border-bottom: none;
  }

  .s-faq__q-row {
    align-items: flex-start;
  }

  .s-faq__toggle {
    margin-top: -6px;
  }
}


/* ── FAQ mobile ── */
@media (max-width: 480px) {
  .s-faq__container {
    border-radius: 100px;
    padding: 112px 8px;
  }

  .s-faq__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    max-width: 326px;
  }

  .s-faq__title-wrap {
    width: auto;
  }

  .s-faq__title {
    font-size: 38px;
  }

  .s-faq__desc {
    max-width: 326px;
  }

  .s-faq__body {
    max-width: 326px;
    margin-top: 80px;
    gap: 48px;
  }

  .s-faq__num {
    display: none;
  }

  .s-faq__list::before {
    left: 0;
  }

  .s-faq__q {
    font-size: 18px;
  }

  .s-faq__q-row {
    gap: 24px;
  }
}

/* ════════════════════════════════════════
   FOOTER SECTION
════════════════════════════════════════ */
.s-footer {
  background: var(--color-black-100);
  padding: 4px 8px 8px 8px;
}

.s-footer__container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 156px;
  padding: 112px 64px 144px 64px;
  display: flex;
  flex-direction: column;
  gap: 112px;
  width: 100%;
  margin: 0 auto;
}

.s-footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.s-footer__left {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 32px;
}

.s-footer__tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: var(--color-white-100);
}
.s-footer__tag .thin-italic {
  font-weight: 300;
  font-style: italic;
}
.s-footer__tag .medium {
  font-weight: 600;
  font-style: normal;
}

.s-footer__email {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 38px;
  line-height: normal;
  letter-spacing: -1.5px;
  color: var(--color-white-100);
  text-decoration: none;
  transition: color 0.3s;
}
.s-footer__email:hover {
  color: var(--color-orange);
}

.s-footer__desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.7);
  width: 460px;
  max-width: 100%;
  margin: 0 auto;
}

.s-footer__phone {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-white-100);
}
.s-footer__phone a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.s-footer__phone a:hover {
  color: var(--color-orange);
}

.s-footer__nav-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.s-footer__link {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  letter-spacing: -1px;
  color: var(--color-white-100);
  text-decoration: none;
  transition: color 0.3s;
}
.s-footer__link:hover {
  color: var(--color-orange);
}

.s-footer__link-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 15.6px;
  letter-spacing: 0.12px;
  color: rgba(255, 255, 255, 0.5);
  vertical-align: top;
}

.s-footer__social {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 32px;
}

.s-footer__social-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  letter-spacing: -1px;
  color: var(--color-white-100);
}

.s-footer__social-icons {
  display: flex;
  align-items: center;
  gap: 19px;
}

.s-footer__social-link {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-block;
}
.s-footer__social-link img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
}
.s-footer__social-link .img-hover {
  opacity: 0;
}
.s-footer__social-link:hover .img-normal {
  opacity: 0;
}
.s-footer__social-link:hover .img-hover {
  opacity: 1;
}

.s-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.s-footer__logo {
  position: relative;
  width: 140px;
  height: 70px;
  display: inline-block;
}
.s-footer__logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
}
.s-footer__logo .img-hover {
  opacity: 0;
}
.s-footer__logo:hover .img-normal {
  opacity: 0;
}
.s-footer__logo:hover .img-hover {
  opacity: 1;
}

.s-footer__copy {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: normal;
  color: rgba(255, 255, 255, 0.7);
}

/* ── FOOTER TABLET (481–1024px) ── */
@media (min-width: 481px) and (max-width: 1024px) {
  .s-footer__container {
    padding: 112px 64px 144px 64px;
    gap: 80px;
  }
  .s-footer__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }
  .s-footer__left {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .s-footer__desc {
    text-align: center;
  }
  .s-footer__nav-wrapper {
    justify-content: center;
    width: 100%;
  }
  .s-footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }
  .s-footer__social {
    align-items: center;
    text-align: center;
  }
}

/* ── FOOTER MOBILE (до 480px) ── */
@media (max-width: 480px) {
  .s-footer__container {
    border-radius: 106px;
    padding: 112px 48px 112px 48px;
    gap: 112px;
  }
  .s-footer__main {
    flex-direction: column;
    gap: 80px;
    align-items: flex-start;
  }
  .s-footer__left {
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 24px;
  }
  .s-footer__desc {
    width: 100%;
    max-width: none;
    text-align: center;
  }
  .s-footer__email {
    font-size: 26px;
  }
  .s-footer__nav-wrapper {
    justify-content: flex-start;
    margin-bottom: -32px; /* to compensate for 80px gap from main and create 48px gap to social */
  }
  .s-footer__nav {
    gap: 14px;
  }
  .s-footer__bottom {
    gap: 48px;
  }
}


/* ═══════════════════════════════════════════
   GET IN TOUCH
   ═══════════════════════════════════════════ */
.s-contact {
  background: linear-gradient(180deg, var(--color-graphite-10) 0%, #000000 100%);
  padding: 4px 8px;
}

.s-contact__container {
  position: relative;
  width: 100%;
  height: 800px;
  margin: 0 auto;
  border-radius: 156px;
  padding: 224px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../img/contact_section_background_desktop_tablet.webp') center / cover no-repeat, #0a0a0a;
  overflow: hidden;
}

.s-contact__left {
  flex: 1;
  max-width: 672px;
  padding-right: 80px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.s-contact__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 86px;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: -4px;
  color: var(--color-white-100);
}

.s-contact__title-thin {
  font-weight: 300;
  font-style: italic;
}

.s-contact__title-bold {
  font-weight: 600;
}

.s-contact__desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.s-contact__form {
  width: 720px;
  flex-shrink: 0;
  padding: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.s-contact__form-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.s-contact__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.s-contact__row {
  display: flex;
  gap: 20px;
}

.s-contact__group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s-contact__label {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: normal;
  color: var(--color-white-100);
}

.s-contact__input {
  width: 100%;
  height: 55px;
  padding: 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: var(--color-white-100);
  outline: none;
  transition: border-color 0.2s;
}

.s-contact__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.s-contact__input:focus {
  border-color: rgba(253, 120, 58, 0.3);
}

.s-contact__input.filled {
  border-color: var(--color-orange);
}

.s-contact__textarea {
  resize: none;
  overflow: hidden;
}

.s-contact__submit {
  width: 100%;
  padding: 24px 0;
  background: var(--color-white-100);
  border: none;
  border-radius: 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-black-100);
  cursor: pointer;
  transition: background 0.2s;
}

.s-contact__submit:hover {
  background: var(--color-orange);
}


/* ── CONTACT TABLET (481–1024px) ── */
@media (min-width: 481px) and (max-width: 1024px) {
  .s-contact__container {
    height: auto;
    flex-direction: column;
    align-items: center;
    padding: 112px 144px;
    gap: 64px;
  }

  .s-contact__left {
    width: 100%;
    padding-right: 0;
    align-items: center;
    text-align: center;
  }

  .s-contact__form {
    width: 720px;
    max-width: 100%;
  }
}


/* ── CONTACT MOBILE (до 480px) ── */
@media (max-width: 480px) {
  .s-contact__container {
    height: auto;
    flex-direction: column;
    align-items: center;
    border-radius: 106px;
    padding: 112px 24px;
    gap: 48px;
    background: url('../img/contact_section_background_mobile.webp') center / cover no-repeat, #0a0a0a;
  }

  .s-contact__desc {
    max-width: 325px;
  }

  .s-contact__left {
    width: 100%;
    padding-right: 0;
    align-items: center;
    text-align: center;
  }

  .s-contact__title {
    font-size: 38px;
    letter-spacing: -2px;
  }

  .s-contact__form {
    width: 100%;
    padding: 32px;
  }

  .s-contact__row {
    flex-direction: column;
    gap: 16px;
  }

  .s-contact__textarea {
    height: 121px;
  }
}


/* ═══════════════════════════════════════════
   NAV BAR
   ═══════════════════════════════════════════ */
.nav-bar {
  position: fixed;
  bottom: 112px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  height: 94px;
  max-width: 700px;
  width: max-content;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 35px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.nav-bar__logo {
  display: flex;
  align-items: center;
  padding-left: 24px;
}

.nav-bar__logo img {
  width: 112px;
  height: 56px;
  object-fit: contain;
}

.nav-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-bar__links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-bar__link {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-white-100);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-bar__link:hover {
  color: var(--color-orange);
}

.nav-bar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--color-white-100);
  border: none;
  border-radius: 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-black-100);
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.nav-bar__cta:hover {
  background: var(--color-orange);
  color: var(--color-white-100);
}

.nav-bar__burger {
  display: none;
}

/* ── NAV DESKTOP + TABLET: min 780px, лого = ширина кнопки, меню по центру ── */
@media (min-width: 481px) {
  .nav-bar {
    min-width: 880px;
    max-width: none;
  }

  .nav-bar__logo {
    width: 176px;
  }

  .nav-bar__links {
    position: absolute;
    left: 50%;
    transform: translateX(calc(-50% - 20px));
  }

  .nav-bar__cta {
    width: 176px;
    padding: 24px 0;
    white-space: nowrap;
  }
}

/* ── NAV TABLET (481–1024px) ── */
@media (min-width: 481px) and (max-width: 1024px) {
  .nav-bar {
    bottom: 7.5vh;
  }
}


/* ── МОБІЛЬНЕ МЕНЮ (панель) ── */
.nav-menu {
  position: fixed;
  left: 8px;
  right: 8px;
  transform: translateY(24px);
  bottom: calc(7.5vh + 102px);
  z-index: 999;
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.nav-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-menu__link {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  letter-spacing: -1px;
  color: var(--color-white-100);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-menu__link:hover {
  color: var(--color-orange);
}

.nav-menu__link-num {
  font-size: 13px;
  vertical-align: super;
}


/* ── NAV MOBILE (до 480px) ── */
@media (max-width: 480px) {
  .nav-bar {
    bottom: 7.5vh;
    left: 8px;
    right: 8px;
    transform: none;
    width: auto;
    max-width: none;
  }

  .nav-bar__right {
    display: none;
  }

  .nav-bar__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px;
    background: var(--color-white-100);
    border: none;
    border-radius: 20px;
    cursor: pointer;
  }

  .nav-bar__burger-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    text-transform: uppercase;
    color: var(--color-black-100);
  }

  .nav-bar__burger-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 16px;
  }

  .nav-bar__burger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--color-black-100);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* Burger → X */
  .nav-bar.menu-open .nav-bar__burger-icon span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  .nav-bar.menu-open .nav-bar__burger-icon span:nth-child(2) {
    opacity: 0;
  }
  .nav-bar.menu-open .nav-bar__burger-icon span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
}
