.new-page {
    --navbar-bg: #182645;
    --main-bg: #19639A;
    --hero-overlay: rgba(10, 31, 62, 0.7);
    --font-main: "Arsenal", sans-serif;
    --font-size-h2: 64px;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* --- New header --- */
  .header-new {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--navbar-bg);
    min-height: 64px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

  .header-new__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
  }

  .header-new__logo-img {
    width: 95px;
    height: auto;
    flex-shrink: 0;
  }

  .header-new__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

  .header-new__logo-title {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
  }

  .header-new__logo-subtitle {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    opacity: 0.95;
  }

  .header-new__right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .header-new__contact {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .header-new__phone {
    font-family: var(--font-main);
    padding: 10px 16px;
    border-radius: 100px;
    border: 1px solid #8b8b8b;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 150ms ease, border-color 150ms ease;
  }

  .header-new__phone:hover {
    border: 1px solid #fff;
    background-color: #fff;
    color: var(--navbar-bg);
  }

  .header-new__socials {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .header-new__social {
    width: 40px;
    height: 40px;
    border: 1px solid #8b8b8b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 150ms ease, border-color 150ms ease;
  }

  .header-new__social:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .header-new__social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .header-new__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .header-new__nav a {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border: 1px solid #fff;
    border-radius: 9999px;
    transition: background-color 150ms ease, color 150ms ease;
  }

  .header-new__nav a:hover {
    border: 1px solid #fff;
    color: var(--navbar-bg);
    background-color: #fff;
  }

  .header-new__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 150ms ease;
  }

  .header-new__burger:hover {
    border-color: #fff;
  }

  .header-new__burger-line {
    display: block;
    width: 60%;
    height: 1.5px;
    background: #fff;
    border-radius: 1px;
    transition: transform 200ms ease, opacity 200ms ease;
  }

  @media (max-width: 768px) {
    .header-new__burger {
      display: flex;
      align-items: center;
      order: 2;
    }

    .header-new__right {
      position: fixed;
      top: 81px;
      left: 0;
      right: 0;
      z-index: 999;
      flex-direction: column;
      align-items: stretch;
      gap: 24px;
      padding: 24px;
      background: var(--navbar-bg);
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
      max-height: calc(100vh - 64px);
      overflow-y: auto;
      transform: translateY(-100%);
      visibility: hidden;
      opacity: 0;
      transition: transform 250ms ease, visibility 250ms ease, opacity 250ms ease;
    }

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

    .header-new__contact {
      order: 0;
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: 16px;
    }

    .header-new__phone {
      justify-content: center;
      text-align: center;
    }

    .header-new__socials {
      justify-content: center;
    }

    .header-new__nav {
      order: 0;
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
    }

    .header-new__nav a {
      display: block;
      text-align: center;
      padding: 14px 24px;
    }

    body.header-menu-open .header-new__burger-line:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    body.header-menu-open .header-new__burger-line:nth-child(2) {
      opacity: 0;
    }

    body.header-menu-open .header-new__burger-line:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }

  /* --- Hero --- */
  .hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 64px 80px 80px;
    padding-top: calc(64px + 64px);
    overflow: hidden;
  }

  .hero-new__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  /* .hero-new::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
  } */

  .hero-new__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
  }

  .hero-new__title {
    font-family: var(--font-main);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: 0;
  }

  .hero-new__subtitle {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 24px;
  }

  .hero-new__text {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 32px;
    opacity: 0.95;
  }

  .hero-new__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
  }

  .hero-new__list li {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
  }

  .hero-new__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
  }

  .hero-new__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
  }

  .hero-new__btn {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    min-height: 48px;
    padding: 16px 32px;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
  }

  .hero-new__btn--primary {
    border: 1px solid #fff;
    background-color: #fff;
    color: #0A1F3E;
  }

  .hero-new__btn--primary:hover {
    background: none;
    color: #fff;
    border: 1px solid #fff;
  }

  .hero-new__btn--outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
  }

  .hero-new__btn--outline:hover {
    color: #0A1F3E;
    background-color: #fff;
  }

  .hero-new__promo {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    opacity: 0.9;
  }

  .hero-new__promo p {
    margin: 0 0 4px;
  }

  .hero-new__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #fff;
    animation: scroll-bounce 2s ease-in-out infinite;
  }

  .hero-new__scroll svg {
    width: 24px;
    height: 24px;
    display: block;
  }

  @keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  @media (max-width: 1024px) {
    .hero-new {
      padding: 48px 40px 64px;
      padding-top: calc(48px + 64px);
    }
    .hero-new__title {
      font-size: 36px;
    }
    .hero-new__subtitle {
      font-size: 18px;
    }
  }

  @media (max-width: 768px) {
    .hero-new {
      padding: 32px 24px 48px;
      padding-top: calc(32px + 80px);
    }
    .hero-new__title {
      font-size: 28px;
    }
    .hero-new__subtitle {
      font-size: 16px;
    }
    .hero-new__cta {
      flex-direction: column;
    }
    .hero-new__btn {
      width: 100%;
      max-width: 280px;
    }
  }

  /* --- Блок 2: Выберите формат отдыха (карточки как на скриншоте) --- */
  .format-section {
    padding: 100px 80px;
    /* max-width: 1280px; */
    margin: 0 auto;
  }

  .format-section__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px;
  }

  .format-section__title {
    font-family: var(--font-main);
    font-size: var(--font-size-h2);
    font-weight: 600;
    line-height: 1.20;
    color: #19639A;
    margin: 0;
    text-transform: uppercase;
  }

  .format-section__subtitle {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #4D4D4D;
    margin: 0 0 48px;
    padding-top: 8px;
  }

  .format-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
  }

  .format-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: #202D4F;
    text-decoration: none;
    color: #fff;
    transition: transform 200ms ease;
  }

  .format-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--card-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
  }

  .format-card:hover::after {
    transform: scale(1.08);
  }

  .format-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
  }

  .format-card__pills {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    pointer-events: none;
  }

  .format-card__pill {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    padding: 8px 14px;
    border-radius: 9999px;
    border: 1px solid #fff;
    backdrop-filter: blur(4px);
  }

  .format-card__content {
    position: relative;
    z-index: 2;
    padding: 28px;
  }

  .format-card__title {
    font-family: var(--font-main);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: 0.02em;
  }

  .format-card__desc {
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 18px;
  }

  .format-card__cta {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .format-card__cta::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid currentColor;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
  }

  .format-section__cta-wrap {
    text-align: center;
  }

  .format-section__cta {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    color: #19639A;
    background: transparent;
    border: 1px solid #19639A;
    border-radius: 9999px;
    padding: 16px 32px;
    min-height: 48px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 150ms ease, color 150ms ease;
  }

  .format-section__cta:hover {
    background-color: #19639A;
    color: #fff;
  }

  @media (max-width: 1024px) {
    .format-section {
      padding: 48px 40px 64px;
    }
    .format-section__head {
      gap: 20px;
      margin-bottom: 15px;
      flex-direction: column;
    }
    .format-section__grid {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    .format-card {
      min-height: 380px;
    }
  }

  /* --- Блок 3: Почему выбирают нас --- */
  .why-section {
    /* max-width: 1440px; */
    margin: 0 auto;
    padding: 100px 80px;
  }

  .why-section__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px;
  }

  .why-section__title {
    font-family: var(--font-main);
    font-size: var(--font-size-h2);
    font-weight: 600;
    line-height: 1.2;
    color: #19639A;
    margin: 0;
    max-width: 930px;
    flex-shrink: 0;
    text-transform: uppercase;
  }

  .why-section__body {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #4D4D4D;
    margin: 0;
    padding-top: 8px;
    max-width: 400px;
  }

  .why-section__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 48px;
  }

  .why-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: #EEF1F5;
    cursor: default;
  }

  .why-card__bg {
    position: absolute;
    inset: 0;
    background-image: var(--why-img);
    background-size: cover;
    background-position: center;
    border-radius: inherit;
    opacity: 1;
    filter: blur(3px);
    transition: filter 0.5s ease, transform 0.5s ease;
    transform: scale(1.05);
  }

  .why-card:hover .why-card__bg {
    filter: blur(0);
    transform: scale(1);
  }

  .why-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.65) 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
  }

  .why-card:hover::after {
    opacity: 1;
  }

  .why-card__inner {
    height: 100%;
    position: relative;
    z-index: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
  }

  .why-card__tag {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 9999px;
    padding: 5px 14px;
    display: inline-block;
    width: fit-content;
    transition: color 0.4s ease, border-color 0.4s ease;
  }

  .why-card:hover .why-card__tag {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
  }

  .why-card__text {
    font-family: var(--font-main);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
    margin: 0;
    transition: color 0.4s ease;
  }

  .why-card:hover .why-card__text {
    color: #fff;
  }

  .why-section__cta-wrap {
    text-align: center;
  }

  .why-section__cta {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    color: #19639A;
    background: transparent;
    border: 1px solid #19639A;
    border-radius: 9999px;
    padding: 16px 32px;
    min-height: 48px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 150ms ease, color 150ms ease;
  }

  .why-section__cta:hover {
    background-color: #19639A;
    color: #fff;
  }

  @media (max-width: 1200px) {
    .why-section__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 1024px) {
    .why-section {
      padding: 40px 40px 64px;
    }
    .why-section__head {
      flex-direction: column;
      gap: 16px;
    }
    .why-section__title {
      font-size: 32px;
      max-width: 100%;
    }
  }

  @media (max-width: 768px) {
    .why-section {
      padding: 40px 24px 56px;
    }
    .why-section__title {
      font-size: 28px;
    }
    .why-section__body {
      font-size: 16px;
      max-width: 100%;
    }
    .why-section__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .why-card {
      min-height: 200px;
    }
    .why-card__text {
      font-size: 15px;
    }
  }

  @media (max-width: 480px) {
    .why-section__grid {
      grid-template-columns: 1fr;
    }
  }

  /* --- Блок 4: Что такое флоатинг --- */
  .float-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    width: 100%;
  }

  .float-about__media {
    position: relative;
    min-height: 420px;
    background: #0A1F3E center/cover no-repeat;
  }

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

  .float-about__content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--navbar-bg);
  }

  .float-about__title {
    font-family: var(--font-main);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 40px;
  }

  .float-about__block {
    margin-bottom: 32px;
  }

  .float-about__block:last-of-type {
    margin-bottom: 40px;
  }

  .float-about__subtitle {
    font-family: var(--font-main);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 12px;
  }

  .float-about__text {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
  }

  .float-about__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .float-about__btn {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    min-height: 48px;
    padding: 16px 32px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
  }

  .float-about__btn--primary {
    background-color: #fff;
    color: #2D3F58;
    border: 1px solid #fff;
  }

  .float-about__btn--primary:hover {
    color: #fff;
    background: none;
  }

  .float-about__btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
  }

  .float-about__btn--outline:hover {
    background-color: #fff;
    color: #2D3F58;
  }

  @media (max-width: 1024px) {
    .float-about__content {
      padding: 48px 40px 64px;
    }
    .float-about__title {
      font-size: 36px;
      margin-bottom: 32px;
    }
  }

  @media (max-width: 768px) {
    .float-about {
      grid-template-columns: 1fr;
    }

    .float-about__media {
      min-height: 320px;
      order: -1;
    }

    .float-about__content {
      padding: 40px 24px 56px;
    }

    .float-about__title {
      font-size: 28px;
      margin-bottom: 28px;
    }

    .float-about__block {
      margin-bottom: 24px;
    }

    .float-about__block:last-of-type {
      margin-bottom: 32px;
    }

    .float-about__cta {
      flex-direction: column;
    }

    .float-about__btn {
      width: 100%;
      max-width: 280px;
    }
  }

  /* --- Блок 7: Подарочные сертификаты (текст слева, картинка справа) --- */
  .gift-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    width: 100%;
  }

  .gift-section__content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--navbar-bg);
  }

  .gift-section__title {
    font-family: var(--font-main);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 24px;
  }

  .gift-section__text {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 28px;
  }

  .gift-section__block {
    margin-bottom: 24px;
  }

  .gift-section__subtitle {
    font-family: var(--font-main);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 10px;
  }

  .gift-section__list {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding-left: 20px;
  }

  .gift-section__list li {
    margin-bottom: 4px;
  }

  .gift-section__text--no-margin {
    margin-bottom: 0;
  }

  .gift-section__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
  }

  .gift-section__btn {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    min-height: 48px;
    padding: 16px 32px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
  }

  .gift-section__btn--primary {
    background-color: #fff;
    color: #2D3F58;
    border: 1px solid #fff;
  }

  .gift-section__btn--primary:hover {
    color: #fff;
    background: none;
  }

  .gift-section__btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
  }

  .gift-section__btn--outline:hover {
    color: #2D3F58;
    background-color: #fff;
  }

  .gift-section__media {
    position: relative;
    min-height: 420px;
    background: #0A1F3E center/cover no-repeat;
  }

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

  @media (max-width: 1024px) {
    .gift-section__content {
      padding: 48px 40px 64px;
    }
    .gift-section__title {
      font-size: 36px;
      margin-bottom: 20px;
    }
  }

  @media (max-width: 768px) {
    .gift-section {
      grid-template-columns: 1fr;
    }

    .gift-section__media {
      min-height: 320px;
      order: 1;
    }

    .gift-section__content {
      order: 0;
      padding: 40px 24px 56px;
    }

    .gift-section__title {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .gift-section__cta {
      flex-direction: column;
      margin-top: 24px;
    }

    .gift-section__btn {
      width: 100%;
      max-width: 280px;
    }
  }

  /* --- Блок 8: Отзывы (Swiper) --- */
  .reviews-section {
    padding: 100px 80px;
    background: #fff;
    width: 100%;
  }

  .reviews-section__inner {
    /* max-width: 1280px; */
    margin: 0 auto;
  }

  .reviews-section__head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 48px;
  }

  .reviews-section__title {
    font-family: var(--font-main);
    font-size: var(--font-size-h2);
    font-weight: 600;
    line-height: 1.2;
    color: #19639A;
    margin: 0 0 16px;
    text-transform: uppercase;
  }

  .reviews-section__subtitle {
    text-align: end;
    font-family: var(--font-main);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.6;
    color: #4D4D4D;
    padding-top: 8px;
    margin: 0;
  }

  .reviews-swiper {
    overflow: hidden;
    padding: 8px 0 24px;
  }

  .reviews-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .reviews-swiper .swiper-slide {
    height: auto;
    width: auto;
  }

  .reviews-swiper__controls {
    display: none; /* пока скрыто */
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
  }

  .reviews-card {
    background: #c1cfd6;
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .reviews-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }

  .reviews-card__author {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    color: #333;
    margin: 0;
  }

  .reviews-card__rating {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .reviews-card__rating img {
    width: 20px;
    height: 20px;
  }

  .reviews-card__text {
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: #2b2b2b;
    margin: 0;
    flex: 1;
  }

  .reviews-section__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }

  .reviews-swiper .swiper-button-prev,
  .reviews-swiper .swiper-button-next {
    color: #19639A;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin: 0;
    width: 48px;
    height: 48px;
    border: 1px solid #19639A;
    border-radius: 9999px;
    transition: background-color 150ms ease, border-color 150ms ease;
  }

  .reviews-swiper .swiper-button-prev:hover,
  .reviews-swiper .swiper-button-next:hover {
    background: rgba(25, 99, 154, 0.1);
    border-color: #15507E;
  }

  .reviews-swiper .swiper-button-prev::after,
  .reviews-swiper .swiper-button-next::after {
    font-size: 20px;
  }

  .reviews-swiper .swiper-pagination {
    position: relative;
    margin: 0;
  }

  .reviews-swiper .swiper-pagination-bullet {
    background: rgba(25, 99, 154, 0.3);
  }

  .reviews-swiper .swiper-pagination-bullet-active {
    background: #19639A;
  }

  .reviews-section__cta-wrap {
    text-align: center;
    margin-top: 40px;
  }

  .reviews-section__cta {
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 600;
    color: #19639A;
    background: transparent;
    border: 1px solid #19639A;
    border-radius: 9999px;
    padding: 16px 32px;
    min-height: 48px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 150ms ease, color 150ms ease;
  }

  .reviews-section__cta:hover {
    color: #fff;
    background: var(--main-bg);
  }

  @media (max-width: 1024px) {
    .reviews-section {
      padding: 48px 40px 64px;
    }
    .reviews-section__title {
      font-size: 36px;
    }
  }

  @media (max-width: 768px) {
    .reviews-section__head {
      flex-direction: column;
    }
    .reviews-section {
      padding: 48px 24px 64px;
    }
    .reviews-section__title {
      font-size: 28px;
    }
    .reviews-section__subtitle {
      font-size: 16px;
      text-align: left;
    }
    .reviews-card {
      padding: 24px;
    }
    
    .reviews-swiper .swiper-wrapper {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 24px;
  }
  }

  /* --- Блок 5: Чистота и безопасность --- */
  .safety-section {
    position: relative;
    padding: 100px 80px;
    background-image: url("../images/service-spa/Rectangle4564.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
  }

  .safety-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }

  .safety-section > * {
    position: relative;
    z-index: 1;
  }

  .safety-section__inner {
    /* max-width: 1280px; */
    margin: 0 auto;
    text-align: center;
  }

  .safety-section__title {
    font-family: var(--font-main);
    font-size: var(--font-size-h2);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .safety-section__text {
    font-family: var(--font-main);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.6;
    color: #d7d7d7;
    margin: 0 auto 48px;
    max-width: 720px;
  }

  .safety-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }

  .safety-card {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: left;
  }

  .safety-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }

  .safety-card__num {
    font-family: var(--font-main);
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: var(--navbar-bg);
    margin: 0 0 16px;
  }

  .safety-card__desc {
    font-family: var(--font-main);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.5;
    color: #4D4D4D;
    margin: 0;
  }

  .safety-section__cta {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: var(--main-bg);
    border: none;
    border-radius: 9999px;
    padding: 16px 32px;
    min-height: 48px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 150ms ease;
  }

  .safety-section__cta:hover {
    background-color: #15507E;
  }

  @media (max-width: 1024px) {
    .safety-section__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .safety-section {
      padding: 48px 24px 64px;
    }
    .safety-section__title {
      font-size: 32px;
    }
    .safety-section__text {
      font-size: 16px;
      margin-bottom: 36px;
    }
    .safety-section__grid {
      grid-template-columns: 1fr;
      gap: 16px;
      margin-bottom: 36px;
    }
    .safety-card {
      padding: 24px 20px;
    }
    .safety-card__num {
      font-size: 40px;
    }
  }

  /* --- Блок 6: Акции --- */
  .promo-section {
    padding: 100px 80px;
    background: #fff;
    width: 100%;
  }

  .promo-section__inner {
    /* max-width: 1280px; */
    margin: 0 auto;
  }

  .promo-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .promo-section__titles {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    /* flex: 1;
    min-width: 0; */
  }

  .promo-section__title {
    font-family: var(--font-main);
    font-size: var(--font-size-h2);
    font-weight: 600;
    line-height: 1.2;
    color: #19639A;
    margin: 0 0 8px;
    text-transform: uppercase;
  }

  .promo-section__subtitle {
    font-family: var(--font-main);
    padding-top: 8px;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.5;
    color: #4D4D4D;
    margin: 0;
  }

  .promo-section__all {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    color: #19639A;
    background: #F0F0F0;
    border: none;
    border-radius: 9999px;
    padding: 12px 24px;
    min-height: 44px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 150ms ease, color 150ms ease;
  }

  .promo-section__all:hover {
    background: #E0E0E0;
    color: #0E3F61;
  }

  .promo-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .promo-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    color: #fff;
    transition: transform 200ms ease;
  }

  .promo-card--solid {
    background: #EEF1F5;
  }

  .promo-card--solid .promo-card__content {
    position: relative;
    z-index: 1;
  }

  .promo-card__bg {
    position: absolute;
    inset: 0;
    background-image: var(--promo-bg);
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 400ms ease;
  }

  .promo-card:hover .promo-card__bg {
    transform: scale(1.08);
  }

  .promo-card__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 100%);
  }

  .promo-card__content {
    position: relative;
    z-index: 1;
    padding: 28px;
  }

  .promo-card__label {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
    margin-bottom: 6px;
  }

  .promo-card__title {
    font-family: var(--font-main);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 8px;
  }

  .promo-card__label-dark {
    color: #2b2b2b;
  }

  .promo-card__title-dark {
    color: var(--navbar-bg);
  }

  .promo-card__desc-darl {
    color: #2b2b2b;
  }

  .promo-card__desc {
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
  }

  @media (max-width: 1024px) {
    .promo-section {
      padding: 48px 40px 64px;
    }
    .promo-section__title {
      font-size: 36px;
    }
  }

  @media (max-width: 768px) {
    .promo-section {
      padding: 48px 24px 64px;
    }
    .promo-section__head {
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 32px;
    }
    .promo-section__titles {
      flex-direction: column;
    }
    .promo-section__title {
      font-size: 28px;
    }
    .promo-section__subtitle {
      font-size: 16px;
    }
    .promo-section__grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .promo-card {
      min-height: 200px;
    }
    .promo-card__title {
      font-size: 20px;
    }
  }

  @media (max-width: 768px) {
    .format-section {
      padding: 40px 24px 56px;
    }
    .format-section__title {
      font-size: 32px;
    }
    .format-section__subtitle {
      font-size: 18px;
      margin-bottom: 32px;
    }
    .format-section__grid {
      grid-template-columns: 1fr;
      gap: 24px;
      margin-bottom: 32px;
    }
    .format-card {
      min-height: 360px;
    }
    .format-card__content {
      padding: 24px;
    }
    .format-card__title {
      font-size: 24px;
    }
    .format-card__desc {
      font-size: 16px;
    }
  }

  /* --- Блок 10: FAQ (как на скрине) --- */
  .new-page .new-faq {
    padding: 0px 80px 100px 80px;
    background: #fff;
    display: block;
    justify-content: unset;
  }

  .new-page .new-faq__title {
    font-family: var(--font-main);
    font-size: var(--font-size-h2);
    font-weight: 600;
    color: var(--main-bg);
    margin-bottom: 32px;
    letter-spacing: 0.02em;
  }

  .new-page .faq__list {
    max-width: none;
  }

  .new-page .faq__item {
    background: #F5F7FA;
    border: none;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 8px;
    overflow: hidden;
  }

  .new-page .faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 150ms ease;
  }

  .new-page .faq__question:hover {
    background: #EEEEEE;
  }

  .new-page .faq__toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    font-size: 20px;
    font-weight: 300;
    color: #484848;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #CCCCCC;
    border-radius: 50%;
    line-height: 1;
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
  }

  .new-page .faq__question:hover .faq__toggle {
    border-color: #999;
    color: #666;
  }

  .new-page .faq__answer {
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    transition: max-height 300ms ease-out, padding 300ms ease-out;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #4D4D4D;
    background: #F5F7FA;
  }

  .new-page .faq__question[aria-expanded="true"] + .faq__answer {
    /* max-height: 800px; */
    padding: 12px 24px 24px;
  }

  .new-page .faq__text {
    margin-bottom: 12px;
  }

  .new-page .faq__text:last-child {
    margin-bottom: 0;
  }

  .new-page .faq__container .faq__answer p,
  .new-page .faq__container .faq__answer ol,
  .new-page .faq__container .faq__answer ol li {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: #4D4D4D;
    margin: 0 0 12px;
  }

  .new-page .faq__btn {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 9999px;
    background: #19639A;
    color: #fff;
    text-decoration: none;
    transition: background-color 150ms ease;
  }

  .new-page .faq__btn:hover {
    background: #15507E;
  }

  .new-page .faq__asterisk {
    color: #19639A;
  }

  .new-page .faq__tooltip {
    background: #333;
    color: #fff;
  }

  @media (max-width: 768px) {
    .new-page .new-faq {
      padding: 48px 16px 64px;
    }

    .new-page .new-faq__title {
      font-size: 28px;
      margin-bottom: 24px;
    }

    .new-page .faq__question {
      padding: 16px 20px;
      font-size: 16px;
    }

    .new-page .faq__toggle {
      width: 32px;
      height: 32px;
      font-size: 18px;
    }

    .new-page .faq__answer {
      padding: 0 20px;
    }

    .new-page .faq__question[aria-expanded="true"] + .faq__answer {
      padding: 0 20px 16px;
    }
  }

  /* --- Блок 11: Форма записи (референс) --- */
  .form-section {
    padding: 100px 80px;
    background: var(--navbar-bg);
    width: 100%;
  }

  .form-section__wrap {
    max-width: 1100px;
    margin: 0 auto;
  }

  .form-section__card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
  }

  .form-section__content {
    flex: 1;
    padding: 48px 56px 56px;
    min-width: 0;
  }

  .form-section__title {
    font-family: var(--font-main);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: #0A1F3E;
    margin: 0 0 16px;
  }

  .form-section__subtitle {
    font-family: var(--font-main);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.5;
    color: #4D4D4D;
    margin: 0 0 8px;
  }

  .form-section__text {
    font-family: var(--font-main);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.5;
    color: #4D4D4D;
    margin: 0 0 28px;
  }

  .form-section__row {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .form-section__field {
    flex: 1;
    min-width: 160px;
  }

  .form-section__label {
    display: block;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    color: #787878;
    margin-bottom: 6px;
  }

  .form-section__input {
    width: 100%;
    font-family: var(--font-main);
    font-size: 16px;
    padding: 12px 16px;
    border: 1px solid #CCCCCC;
    border-radius: 999px;
    background: #fff;
    color: #333;
    box-sizing: border-box;
  }

  .form-section__input::placeholder {
    color: #999;
  }

  .form-section__input:focus {
    outline: none;
    border-color: #19639A;
    box-shadow: 0 0 0 2px rgba(25, 99, 154, 0.2);
  }

  .form-section__submit-wrap {
    flex-shrink: 0;
  }

  .form-section__submit {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #19639A;
    border: none;
    border-radius: 999px;
    padding: 14px 24px;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 150ms ease;
  }

  .form-section__submit:hover {
    background: #15507E;
  }

  .form-section__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #666;
    cursor: pointer;
  }

  .form-section__consent input {
    margin-top: 2px;
    flex-shrink: 0;
  }

  .form-section__consent a {
    color: #19639A;
    text-decoration: underline;
  }

  .form-section__consent a:hover {
    text-decoration: none;
  }

  .form-section__media {
    width: 42%;
    max-width: 420px;
    flex-shrink: 0;
    background: #f0f0f0;
  }

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

  @media (max-width: 900px) {
    .form-section__card {
      flex-direction: column;
    }
    .form-section__media {
      width: 100%;
      max-width: none;
      height: 280px;
    }
  }

  @media (max-width: 768px) {
    .form-section {
      padding: 48px 16px 64px;
    }
    .form-section__content {
      padding: 32px 24px 40px;
    }
    .form-section__title {
      font-size: 22px;
    }
    .form-section__row {
      flex-direction: column;
      align-items: stretch;
    }
    .form-section__submit-wrap {
      order: 1;
    }
    .form-section__submit {
      width: 100%;
    }
  }

  /* --- Блок 12: Контакты и карта --- */
  .contact-map {
    padding: 100px 80px;
    /* background: #efefef; */
    width: 100%;
  }

  .contact-map__wrap {
    /* max-width: 1280px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 16px;
    align-items: stretch;
  }

  .contact-map__card {
    background: #EEF1F5;
    border-radius: 8px;
    padding: 24px 20px 18px;
    display: flex;
    flex-direction: column;
  }

  .contact-map__phone {
    font-family: var(--font-main);
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--main-bg);
    text-decoration: none;
    margin-bottom: 12px;
  }

  .contact-map__mail {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.4;
    color: #4d4d4d;
    text-decoration: none;
    margin-bottom: 22px;
  }

  .contact-map__address {
    font-family: var(--font-main);
    font-size: 20px;
    line-height: 1.35;
    color: #4d4d4d;
    margin: 0 0 16px;
  }

  .contact-map__hours {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border: 1px solid #848484;
    border-radius: 9999px;
    font-family: var(--font-main);
    font-size: 14px;
    color: #363636;
    margin-bottom: 20px;
  }

  .contact-map__socials {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
  }

  .contact-map__social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #19639a;
    color: #19639a;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 150ms ease, color 150ms ease;
  }

  .contact-map__social:hover {
    background: #19639a;
    color: #fff;
  }

  .contact-map__social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .contact-map__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
  }

  .contact-map__btn {
    min-height: 44px;
    border-radius: 9999px;
    padding: 10px 20px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
  }

  .contact-map__btn--primary {
    background: var(--main-bg);
    border: 1px solid var(--main-bg);
    color: #fff;
  }

  .contact-map__btn--primary:hover {
    color: var(--main-bg);
    background: none;
    border-color: var(--main-bg);
  }

  .contact-map__btn--outline {
    background: transparent;
    border: 1px solid var(--main-bg);
    color: var(--main-bg);
  }

  .contact-map__btn--outline:hover {
    color: #fff;
    background: var(--main-bg);
  }

  .contact-map__note {
    margin: 0;
    font-family: var(--font-main);
    font-size: 12px;
    line-height: 1.5;
    color: #7a7a7a;
  }

  .contact-map__map {
    border-radius: 8px;
    overflow: hidden;
    min-height: 420px;
    background: #d8d8d8;
  }

  .contact-map__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  @media (max-width: 1024px) {
    .contact-map__wrap {
      grid-template-columns: 1fr;
    }

    .contact-map__map {
      min-height: 360px;
    }
  }

  @media (max-width: 768px) {
    .contact-map {
      padding: 40px 16px 64px;
    }

    .contact-map__phone {
      font-size: 32px;
    }

    .contact-map__address {
      font-size: 18px;
    }
  }

  /* --- Footer --- */
  .footer-new {
    background: var(--navbar-bg);
    color: #fff;
    padding: 48px 80px 24px;
  }

  .footer-new__wrap {
    /* max-width: 1280px; */
    margin: 0 auto;
  }

  .footer-new__top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px 48px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .footer-new__logo {
    display: inline-block;
    margin-bottom: 40px;
    text-decoration: none;
  }

  .footer-new__logo-img {
    width: 130px;
    height: auto;
    display: block;
  }

  .footer-new__nav-title,
  .footer-new__docs-title,
  .footer-new__legal-title {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px;
  }

  .footer-new__nav-list,
  .footer-new__docs-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer-new__nav-list li,
  .footer-new__docs-list li {
    margin-bottom: 8px;
  }

  .footer-new__nav-list a,
  .footer-new__docs-list a {
    font-family: var(--font-main);
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: color 150ms ease;
  }

  .footer-new__nav-list a:hover,
  .footer-new__docs-list a:hover {
    color: #B3DCEB;
  }

  .footer-new__legal-name,
  .footer-new__legal-item {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 4px;
    color: rgba(255, 255, 255, 0.9);
  }

  .footer-new__legal-name {
    font-weight: 600;
    margin-bottom: 8px;
  }

  .footer-new__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .footer-new__copy {
    font-family: var(--font-main);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
  }

  .footer-new__socials {
    display: flex;
    gap: 12px;
  }

  .footer-new__social {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 150ms ease, border-color 150ms ease;
  }

  .footer-new__social:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
  }

  .footer-new__social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  @media (max-width: 768px) {
    .footer-new {
      padding: 40px 16px 24px;
    }

    .footer-new__top {
      grid-template-columns: 1fr;
      gap: 24px;
      margin-bottom: 32px;
    }

    .footer-new__bottom {
      flex-direction: column;
      text-align: center;
    }
  }