.s10 {
    width: 440px;
    height: 717px;
    background: #000000;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    box-sizing: border-box;
  }

  /* --- Фонове зображення та градієнт --- */
  .s10-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .s10-bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .s10-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Додаємо темний градієнт зверху і знизу для читабельності тексту, як на макеті */
    background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.95) 100%);
    z-index: 1;
    pointer-events: none;
  }

  /* --- Основний контент --- */
  .s10-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
  }

  /* Верхня позначка "Start Tomorrow" */
  .s10-top-badge {
    position: absolute;
    top: 41px;
    left: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .s10-alarm-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .s10-alarm-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .s10-top-text {
    font-size: 14.4px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .s10-text-red {
    color: #F90E0E;
  }

  .s10-text-gray {
    color: #BBBBBB;
  }

  /* Підзаголовок */
  .s10-subheading {
    position: absolute;
    top: 92px;
    left: 25px;
    color: #FFFFFF;
    font-size: 16.3px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: -0.2px;
  }

  /* Головний заголовок */
  .s10-main-heading {
    position: absolute;
    top: 120px;
    left: 25px;
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    line-height: 1;
    letter-spacing: -0.5px;
  }

  .s10-heading-white {
    color: #FFFFFF;
  }

  .s10-heading-red {
    color: #F90E0E;
  }

  /* --- Картка з ціною --- */
  .s10-pricing-card {
    position: absolute;
    top: 205px;
    left: 37px;
    width: 214px;
    height: 185px;
    background: #1C1C1C;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
  }

  .s10-pricing-top {
    background: #F90E0E;
    border-radius: 12px;
    height: 98px;
    padding: 13px 17px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .s10-badge-now {
    background: #000000;
    border-radius: 82px;
    height: 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 14.4px;
    font-weight: 500;
    text-transform: uppercase;
  }

  .s10-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .s10-price-label {
    color: #FFFFFF;
    font-size: 14.4px;
    font-weight: 500;
    line-height: 1.2;
  }

  .s10-price-amount {
    color: #FFFFFF;
    font-family: 'Oswald-Bold';
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
  }

  .s10-pricing-bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .s10-was-label {
    color: #747474;
    font-size: 14.4px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 2px;
  }

  .s10-old-price {
    background: linear-gradient(180deg, #747474 0%, rgba(116, 116, 116, 0.6) 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    font-family: 'Oswald-Bold';
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    position: relative;
  }

  .s10-strike-line {
    position: absolute;
    width: 110%;
    height: 3px;
    background: #F90E0E;
    top: 50%;
    left: -5%;
    transform: rotate(-15deg);
    border-radius: 2px;
  }

  /* --- Нижня частина (Текст та Кнопка) --- */
  .s10-bottom-area {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 25px 40px 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .s10-desc-text {
    text-align: center;
    color: #FFFFFF;
    font-size: 14.4px;
    font-weight: 400;
    line-height: 1.4;
  }

  .s10-desc-bold {
    color: #F90E0E;
    font-weight: 700;
  }

  .s10-cta-btn {
    width: 100%;
    height: 68px;
    background: linear-gradient(180deg, #F90E0E 0%, #AA0405 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px !important;
    box-sizing: border-box;
  }

  .s10-cta-text {
    color: #FFFFFF;
    font-size: 20.5px;
    font-weight: 500;
    text-transform: uppercase;
    flex: 1;
    text-align: center;
  }

  .s10-cta-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .s10-cta-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: rotate(90deg); /* Повертаємо шеврон, щоб вказував вправо */
  }

  .s10-footer-text {
    color: #FFFFFF;
    font-size: 14.4px;
    font-weight: 400;
    text-align: center;
  }

  .s11 {
    width: 440px;
    background: #090606;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    
  }

  /* --- Секція 1: Intro --- */
  .s11-intro {
    width: 100%;
    padding: 45px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
  }

  .s11-intro::after{
    content: "";
    display: block;
    background: #470605;
    width: 59%;
    height: 0;
    box-shadow: 0 0 49px 34px #470605;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .s11-intro-title {
    color: #FFFFFF;
    font-size: 30px;
    
    font-weight: 600;
    text-transform: uppercase;
    line-height: 37px;
    text-align: center;
    position: relative;
    z-index: 3;
    margin: 0;
  }

  .s11-intro-title span {
    color: #F90E0E;
  }

  .s11-intro-desc {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 3;
  }

  .s11-intro-desc span {
    color: #F90E0E;
  }

  /* --- Секція 2: Who this course is for --- */
  .s11-target {
    width: 100%;
    padding: 45px 24px;
    background: radial-gradient(40.83% 52.8% at 79.67% 58.48%, #8f0503 0%, #000 100%) /* Figma radial gradient is rotated -63.49deg; CSS radial-gradient() cannot represent rotation */;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    box-sizing: border-box;
  }

  .s11-target-title {
    background: linear-gradient(97.97deg, #fff 21.88%, #b1afb0 99.95%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    font-size: 36px;
    
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    line-height: 1.1;
  }

  .s11-target-subtitle {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin: 0;
  }

  /* Список карток */
  .s11-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .s11-list-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 74px;
  }

  /* Біла плашка з текстом */
  .s11-list-text {
    width: 100%;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 12px 14px 12px 78px;
    box-sizing: border-box;
    min-height: 54px;
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
  }

  .s11-list-text p {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
  }

  .s11-list-text p b {
    color: #F90E0E;
    font-weight: 600;
  }

  /* Червоний блок з номером */
  .s11-list-num {
    position: absolute;
    left: 15px;
    width: 46px;
    height: 74px;
    background: #F90E0E;
    box-shadow: 0px 0px 11px rgba(249, 14, 14, 0.52);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .s11-list-num span {
    color: #FFFFFF;
    font-size: 32px;
    
    font-weight: 600;
    text-transform: uppercase;
    line-height: 45px;
  }

  /* --- Секція 3: Guarantee --- */
  .s11-guarantee-wrap {
    width: 100%;
    padding: 40px 24px;
    background: #090606;
    box-sizing: border-box;
  }

  .s11-guarantee-card {
    width: 100%;
    padding: 24px 14px;
    background: radial-gradient(ellipse 129% 55% at 53% 21%, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(230deg, #818181 6%, #DEDEDE 46%, #939393 100%);
    border-radius: 24px;
    outline: 1px solid #FFFFFF;
    outline-offset: -1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    box-sizing: border-box;
  }

  .s11-guarantee-header {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .s11-shield-icon {
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .s11-shield-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .s11-guarantee-title {
    color: #464646;
    font-size: 40px;
    
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
  }

  .s11-guarantee-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .s11-guarantee-text strong {
    color: #464646;
    font-size: 16px;
    font-weight: 700;
  }

  .s11-guarantee-text p {
    color: #464646;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
  }



  .s12 {
    width: 440px;
    background: #090606;
    background: radial-gradient(40.83% 35.8% at 79.67% 58.48%, #8f0503 0%, #000 100%) /* Figma radial gradient is rotated -63.49deg; CSS radial-gradient() cannot represent rotation */;
    padding: 45px 24px;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    overflow: hidden;
  }

  /* Заголовок та підзаголовок */
  .s12-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .s12-title {
    background: linear-gradient(97.97deg, #fff 21.88%, #b1afb0 99.95%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    font-size: 38px;
    
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.1;
    margin: 0;
  }

  .s12-subtitle {
    color: #FFFFFF;
    font-size: 18px;
    
    font-weight: 400;
    text-align: center;
    margin: 0;
    line-height: 1.3;
  }

  .s12-subtitle-red {
    color: #F90E0E;
    font-weight: 700;
  }

  /* Список карток */
  .s12-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .s12-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  /* Блок із картинкою */
  .s12-img-wrap {
    width: 100%;
    height: 175px;
    border-radius: 24px;
    overflow: hidden;
    outline: 2px solid #FFFFFF;
    outline-offset: -2px;
    background: #8B8B8B;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  /* Текст під картинкою */
  .s12-item-text {
    color: #FFFFFF;
    font-size: 18px;
    
    font-weight: 400;
    text-align: center;
    line-height: 1.3;
    margin: 0;
  }

  .s12-item-text b {
    font-weight: 700;
  }


  .s6 {
    width: 100%;
    background: #090606;
    padding: 60px 0 60px 24px;
    box-sizing: border-box;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }

  /* --- Заголовок --- */
  .s6-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
    padding-right: 24px;
  }

  .s6-label {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .s6-quote-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .s6-label-text {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
  }

  .s6-title {
    background: linear-gradient(97.97deg, #fff 21.88%, #b1afb0 99.95%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 100%;
    margin: 0;
  }

  /* --- Слайдер та картки --- */
  .s6-swiper {
    width: 100%;
    overflow: visible !important; /* Дозволяє бачити наступний слайд, що виходить за межі екрана */
  }

  .s6-slide {

    max-height: 374px;
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.20);
    overflow: hidden;
    background: #1B1B1B;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .s6-img {
    width: 100%;
    
    object-fit: cover;
    display: block;
    border-radius: 12px;
  }

  /* --- Контроли (Пагінація та стрілки) --- */
  .s6-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 24px;
    margin-top: 24px;
  }

  /* Пагінація */
  .s6-pagination {
    display: flex;
    max-width: 190px;
    margin-top: 17px;
    overflow: hidden;
    gap: 10px;
    align-items: center;
    position: relative !important;
    width: auto !important;
  }

  .s6-pagination .swiper-pagination-bullet {
    min-width: 8px !important;
    height: 8px !important;
    background: transparent !important;
    border: 1px solid #DB0B3E !important;
    opacity: 0.5 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    transition: all 0.2s ease;
  }

  .s6-pagination .swiper-pagination-bullet-active {
    background: #DB0B3E !important;
    border: none !important;
    opacity: 1 !important;
  }

  /* Стрілки навігації */
  .s6-nav {
    display: flex;
    gap: 14px;
  }

  .s6-prev,
  .s6-next {
    width: 45px !important;
    height: 45px !important;
    background: radial-gradient(50% 50% at 50% 50%, #f90e0e 0%, #b70000 100%);
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: static !important;
    margin: 0 !important;
    cursor: pointer;
    z-index: 10;
  }

  .s6-prev img,
  .s6-next img{
    object-fit: contain;
    width: 20px;
    height: 20px;
  }

  .s6-prev{
    transform: rotate(180deg);
  }

  .s6-prev.swiper-button-disabled,
  .s6-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .s6-prev::after,
  .s6-next::after {
    display: none !important;
  }

  .s6-prev svg,
  .s6-next svg {
    width: 24px;
    height: 24px;
  }

  .s6-prev svg {
    transform: rotate(180deg);
  }



  .s13 {
    width: 440px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.55) 100%), 
                radial-gradient(ellipse 43.46% 58.67% at 50% 46%, #8F0503 0%, #000000 100%);
    padding: 45px 24px;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    overflow: hidden;
  }

  /* Заголовок */
  .s13-title {
    background: linear-gradient(97.97deg, #fff 21.88%, #b1afb0 99.95%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    font-size: 36px;
    
    font-weight: 600;
    text-transform: uppercase;
    line-height: 40px;
    text-align: center;
    margin: 0;
  }

  /* Список карток */
  .s13-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  /* Спільні стилі для карток */
  .s13-card {
    width: 100%;
    min-height: 134px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  /* Блок тексту всередині картки */
  .s13-text-content {
    width: 230px; /* Обмежуємо ширину тексту, щоб він був ліворуч */
    display: flex;
    flex-direction: column;
  }

  .s13-text-red {
    color: #F90E0E;
    font-size: 18px;
    
    font-weight: 700;
    line-height: 1.25;
  }

  .s13-text-white {
    color: #FFFFFF;
    font-size: 18px;
    
    font-weight: 400;
    line-height: 1.25;
  }


  .s14 {
    width: 440px;
    background: #090606;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 45px 0 0 0; /* Нижній відступ 0, оскільки картинка йде до самого низу */
    box-sizing: border-box;
    margin: 0 auto;
    overflow: hidden;
  }

  /* --- Заголовок та опис --- */
  .s14-header {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .s14-title {
    background: linear-gradient(97.97deg, #fff 21.88%, #b1afb0 99.95%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    font-size: 38px;
    
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
  }

  .s14-desc {
    color: #FFFFFF;
    font-size: 16.5px;
    
    font-weight: 400;
    line-height: 1.35;
    margin: 0;
  }

  .s14-desc-red {
    color: #F90E0E;
    font-weight: 700;
  }

  /* --- Зображення --- */
  .s14-img-wrap {
    width: 100%;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .s14-img-wrap img {
    width: 100%;
    margin-top: -40px;
    height: auto;
    display: block;
    object-fit: cover;
  }






.faq-section {
    width: 440px;
    background: #090606;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
  }

  .s7 {
    width: 100%;
    padding: 40px 24px 20px 24px;
    box-sizing: border-box;
  }

  /* Заголовок FAQ */
  .s7 .mainTitle {
    background: linear-gradient(97.97deg, #fff 20.53%, #b1afb0 99.54%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 48px;
    letter-spacing: 0.96px;
    text-align: left;
    margin: 0 0 32px 0;
  }

  .s7__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  /* Елемент FAQ */
  .s7__item {
    display: flex;
    flex-direction: column; /* Нормальний порядок: Питання зверху, Відповідь знизу */
    width: 100%;
  }

  /* Рядок питання */
  .s7__question {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    cursor: pointer;
    user-select: none;
    padding: 10px 0;
  }

  .s7__q-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, #f90e0e 0%, #b70000 100%);
    box-shadow: 0 0 17px 0 rgba(249, 14, 14, 0.89);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .s7__q-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
  }

  .s7__q-text {
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    line-height: 20px;
    flex: 1;
  }

  .s7__arrow {
    width: 22px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
    flex-shrink: 0;
    transform: rotate(180deg);
  }

  .s7__arrow img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Поворот стрілочки при відкритті */
  .s7__item.active .s7__arrow {
    transform: rotate(0deg);
    opacity: 1;
  }

  /* Блок відповіді (висувається знизу) */
  .s7__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .s7__answer-inner {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .s7__answer-bubble {
    background: #fff;
    border-radius: 24px;
    padding: 14px 18px;
    color: #000;
    font-size: 15px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    line-height: 20px;
    flex: 1;
    box-sizing: border-box;
    position: relative;
  }

  .s7__answer-bubble::after{
    content: "";
    display: block;
    width: 37px;
    height: 26px;
    position: absolute;
    right: -8px;
    bottom: 0;
    background-image: url(../images-4/vector.png);
    background-repeat: no-repeat;
    background-size: contain;
  }

  .s7__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #3E3936;
    background: rgba(62, 57, 54, 0.54);
    flex-shrink: 0;
  }


.contacts {
    padding: 48px 24px 240px 24px;

  position: relative;
  z-index: 9;
    box-sizing: border-box;
}

.contacts__title {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 36px 0;
    letter-spacing: -0.5px;
    background: linear-gradient(97.97deg, #fff 20.53%, #b1afb0 99.54%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    text-align: left;
}

.contacts__grid {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 25px;
}

.contacts__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 120px;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.1), inset 0 -2px 4px 0 rgba(255, 255, 255, 0.25);
background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 30px;
    text-decoration: none;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.25);

}

.contacts__icon {
    width: 37%;
    object-fit: contain;
    margin-bottom: 12px;
}

.contacts__icon--email {
    width: 48px;
}

.contacts__label {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
   
    letter-spacing: 0.2px;
}

.contacts__policy {
    display: inline-block;
    color: #bebebe;
    font-size: 13px;

    font-weight: 400;
    text-decoration: underline;
    margin-bottom: 15px;
}

.contacts__copyright {
    color: #bebebe;
    font-size: 13px;
   
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 36px 0;
}

.contacts__payments {
    display: block;
    width: 100%;
    max-width: 90%;
    height: auto;
    object-fit: contain;
    margin-left: -2px;
}

.footer-bg {
  position: fixed;
  z-index: 99;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(150px);
  transition: all .5s ease;
  pointer-events: none; /* Щоб не перекривати кліки, коли неактивний */
}

.footer-bg.active {
  transform: translateY(0px);
  opacity: 1;
  pointer-events: auto;
}

.footer {
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0px -6px 38px rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.30);
  padding: 24px 24px 35px 24px;
  margin: 0 auto;
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
}

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

/* Верхній рядок з заголовком та таймером */
.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-title {
  font-size: 16px;
  padding-left: 10px;
  font-family: 'Roboto-Medium';
  font-weight: 500;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 1.28px;
  line-height: 18px;
}

/* Таймер */
.footer-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.timer-box {
  background: linear-gradient(180deg, rgba(27, 27, 27, 0.75) 0%, rgba(62, 62, 62, 0.75) 100%);
  border-radius: 14px;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Roboto-Medium';
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 40px;
  padding: 0 8px;
  letter-spacing: 1.44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timer-divider {
  color: #968A8F;
  font-size: 18px;
  font-weight: 600;
}

/* Кнопка заклик до дії */
.footer-cta-button {
  color: #FFFFFF;
  width: 100%;
  height: 79px;
  margin: 0 auto;
  font-size: 21px;
  font-weight: 900;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 1.68px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background: linear-gradient(90deg, #B0002B 0%, #660A22 100%);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.footer-cta-button:active {
  transform: scale(0.98);
  opacity: 0.9;
}

@keyframes ctaPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(240, 17, 71, 0.5);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 12px rgba(240, 17, 71, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(240, 17, 71, 0);
  }
}


.s10 button{
  animation: ctaPulce 2s infinite ease-in-out;
}
/* --- Анімація прольоту бліку --- */
@keyframes ctaPulce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

/* 1. Фіксуємо однакову висоту для кожного слайда */
.s6-slide {
  height: 524px !important; /* Фіксована висота для всіх слайдів */
  width: auto !important;   /* Ширина підлаштовується під пропорції зображення */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 2. Налаштовуємо картинку, щоб вона займала 100% висоти слайда */
.s6-img {
  height: 100% ;
  width: auto ;   /* Зберігає оригінальні пропорції (ширина вираховується автоматично) */
  max-width: none ;
  object-fit: contain;     /* Картинка повністю вписується без обрізання */
}

.footer-btn{
  position: relative;
  overflow: hidden;
}
.footer-btn::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 30%;
    min-height: 500%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.189) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(25deg);
    animation: ctaShine 3s infinite ease-in-out;
    pointer-events: none;
}

@keyframes ctaShine{
0% {
    left: -100%;
}
35% {
    left: 150%;
}
100% {
    left: 150%;
}
}

@media (max-width: 440px) {


  /* --- s10 --- */
  .s10 { width: 100vw; height: 162.954vw; }
  .s10-intro { padding: 10.227vw 4.545vw; gap: 2.727vw; }
  .s10-intro::after { width: 59%; box-shadow: 0 0 11.136vw 7.727vw #470605; }
  .s10-top-badge { top: 9.318vw; left: 5.681vw; gap: 1.818vw; }
  .s10-alarm-icon { width: 4.545vw; height: 4.545vw; }
  .s10-top-text { font-size: 3.272vw; }
  .s10-subheading { top: 20.909vw; left: 5.681vw; font-size: 3.704vw; letter-spacing: -0.045vw; }
  .s10-main-heading { top: 27.272vw; left: 5.681vw; font-size: 11.363vw; letter-spacing: -0.113vw; }
  .s10-pricing-card { top: 46.590vw; left: 8.409vw; width: 48.636vw; height: 42.045vw; border-radius: 2.727vw; box-shadow: 0vw 2.272vw 6.818vw rgba(0, 0, 0, 0.5); }
  .s10-pricing-top { border-radius: 2.727vw; height: 22.272vw; padding: 2.954vw 3.863vw; }
  .s10-badge-now { border-radius: 18.636vw; height: 5.454vw; font-size: 3.272vw; }
  .s10-price-label { font-size: 3.272vw; }
  .s10-price-amount { font-size: 8.636vw; }
  .s10-was-label { font-size: 3.272vw; margin-bottom: 0.454vw; }
  .s10-old-price { font-size: 8.636vw; }
  .s10-strike-line { height: 0.681vw; border-radius: 0.454vw; }
  .s10-bottom-area { padding: 0 5.681vw 9.090vw 5.681vw; gap: 3.181vw; }
  .s10-desc-text { font-size: 3.272vw; }
  .s10-cta-btn { height: 15.454vw; border-radius: 2.727vw; padding: 0 7.272vw !important; }
  .s10-cta-text { font-size: 4.659vw; }
  .s10-cta-icon { width: 3.636vw; height: 3.636vw; }
  .s10-footer-text { font-size: 3.272vw; }

    .s6-controls { padding-right: 5.454vw; margin-top: 5.454vw; }
  .s6-pagination { max-width: 43.181vw; margin-top: 3.863vw; gap: 2.272vw; }

  .s6-nav { gap: 3.181vw; }
  .s6-prev, .s6-next { width: 10.227vw !important; height: 10.227vw !important; border-radius: 50% !important; }
  .s6-prev img, .s6-next img { width: 4.545vw; height: 4.545vw; }
  .s6-prev svg, .s6-next svg { width: 5.454vw; height: 5.454vw; }
  /* --- s11 --- */
  .s11 { width: 100vw; }
  .s11-intro { padding: 10.227vw 4.545vw; gap: 2.727vw; }
  .s11-intro-title { font-size: 6.818vw; line-height: 8.409vw; }
  .s11-intro-desc { font-size: 3.636vw; }
  .s11-target { padding: 10.227vw 5.454vw; gap: 5.454vw; }
  .s11-target-title { font-size: 8.181vw; }
  .s11-target-subtitle { font-size: 4.090vw; }
  .s11-list { gap: 5.454vw; }
  .s11-list-item { min-height: 16.818vw; }
  .s11-list-text { border-radius: 2.727vw; padding: 2.727vw 3.181vw 2.727vw 17.727vw; min-height: 12.272vw; box-shadow: 0vw 0.909vw 2.727vw rgba(0, 0, 0, 0.25); }
  .s11-list-text p { font-size: 3.636vw; }
  .s11-list-num { left: 3.409vw; width: 10.454vw; height: 16.818vw; box-shadow: 0vw 0vw 2.500vw rgba(249, 14, 14, 0.52); border-radius: 2.727vw; }
  .s11-list-num span { font-size: 7.272vw; line-height: 10.227vw; }
  .s11-guarantee-wrap { padding: 9.090vw 5.454vw; }
  .s11-guarantee-card { padding: 5.454vw 3.181vw; border-radius: 5.454vw; gap: 3.181vw; }
  .s11-guarantee-header { gap: 3.181vw; }
  .s11-shield-icon { width: 10.454vw; height: 10.454vw; }
  .s11-guarantee-title { font-size: 9.090vw; }
  .s11-guarantee-text { gap: 1.818vw; }
  .s11-guarantee-text strong { font-size: 3.636vw; }
  .s11-guarantee-text p { font-size: 3.636vw; }

  /* --- s12 --- */
  .s12 { width: 100vw; padding: 10.227vw 5.454vw; gap: 5.454vw; }
  .s12-header { gap: 2.727vw; }
  .s12-title { font-size: 8.636vw; }
  .s12-subtitle { font-size: 4.090vw; }
  .s12-list { gap: 5.454vw; }
  .s12-item { gap: 2.727vw; }
  .s12-img-wrap { height: 39.772vw; border-radius: 5.454vw; outline: 0.454vw solid #FFFFFF; outline-offset: -0.454vw; }
  .s12-item-text { font-size: 4.090vw; }

  /* --- s13 --- */
  .s13 { width: 100vw; padding: 10.227vw 5.454vw; gap: 5.454vw; }
  .s13-title { font-size: 8.181vw; line-height: 9.090vw; }
  .s13-list { gap: 3.636vw; }
  .s13-card { min-height: 30.454vw; border-radius: 2.727vw; border: 0.227vw solid rgba(255, 255, 255, 0.42); padding: 5.454vw; }
  .s13-text-content { width: 52.272vw; }
  .s13-text-red { font-size: 4.090vw; }
  .s13-text-white { font-size: 4.090vw; }

  /* --- s14 --- */
  .s14 { width: 100vw; padding: 10.227vw 0 0 0; }
  .s14-header { padding: 0 4.545vw; gap: 3.636vw; }
  .s14-title { font-size: 8.636vw; }
  .s14-desc { font-size: 3.750vw; }
  .s14-img-wrap { margin-top: 5.681vw; }
  .s14-img-wrap img { margin-top: -9.090vw; }

  /* --- FAQ (s7) --- */
  .faq-section { width: 100vw; }
  .s7 { padding: 9.090vw 5.454vw 4.545vw 5.454vw; }
  .s7 .mainTitle { font-size: 8.181vw; line-height: 10.909vw; letter-spacing: 0.218vw; margin: 0 0 7.272vw 0; }
  .s7__container { gap: 3.636vw; }
  .s7__question { gap: 3.181vw; padding: 2.272vw 0; }
  .s7__q-icon { width: 7.954vw; height: 7.954vw; box-shadow: 0 0 3.863vw 0 rgba(249, 14, 14, 0.89); }
  .s7__q-icon img { width: 3.636vw; height: 3.636vw; }
  .s7__q-text { font-size: 3.636vw; line-height: 4.545vw; }
  .s7__arrow { width: 5.000vw; height: 3.181vw; }
  .s7__answer-inner { gap: 2.272vw; padding-top: 2.272vw; padding-bottom: 2.272vw; }
  .s7__answer-bubble { border-radius: 5.454vw; padding: 3.181vw 4.090vw; font-size: 3.409vw; line-height: 4.545vw; }
  .s7__answer-bubble::after { width: 8.409vw; height: 5.909vw; right: -1.818vw; }
  .s7__avatar { width: 11.363vw; height: 11.363vw; border: 0.227vw solid #3E3936; }

  /* --- Contacts --- */
  .contacts { padding: 10.909vw 5.454vw 54.545vw 5.454vw; }
  .contacts__title { font-size: 8.181vw; margin: 0 0 8.181vw 0; letter-spacing: -0.113vw; }
  .contacts__grid { gap: 2.727vw; margin-bottom: 5.681vw; }
  .contacts__card { width: 26.818vw; height: 27.272vw; box-shadow: inset 0 0.454vw 0.909vw 0 rgba(0, 0, 0, 0.1), inset 0 -0.454vw 0.909vw 0 rgba(255, 255, 255, 0.25); border-radius: 6.818vw; border: 0.227vw solid rgba(255, 255, 255, 0.05); border-top: 0.227vw solid rgba(255, 255, 255, 0.25); }
  .contacts__icon--email { width: 10.909vw; }
  .contacts__label { font-size: 3.636vw; letter-spacing: 0.045vw; }
  .contacts__policy { font-size: 2.954vw; margin-bottom: 3.409vw; }
  .contacts__copyright { font-size: 2.954vw; margin: 0 0 8.181vw 0; }
  .contacts__payments { margin-left: -0.454vw; }

  /* --- Footer --- */
  .footer-bg { transform: translateY(34.090vw); }
  .footer-bg.active { transform: translateY(0vw); }
  .footer { box-shadow: 0vw -1.363vw 8.636vw rgba(0, 0, 0, 0.40); border-top-left-radius: 5.454vw; border-top-right-radius: 5.454vw; border-top: 0.227vw solid rgba(255, 255, 255, 0.30); padding: 5.454vw 5.454vw 7.954vw 5.454vw; max-width: 100vw; gap: 4.545vw; }
  .footer-title { font-size: 3.636vw; padding-left: 2.272vw; letter-spacing: 0.290vw; line-height: 4.090vw; }
  .footer-timer { gap: 1.363vw; }
  .timer-box { border-radius: 3.181vw; font-size: 4.090vw; min-width: 9.545vw; height: 9.090vw; padding: 0 1.818vw; letter-spacing: 0.327vw; border: 0.227vw solid rgba(255, 255, 255, 0.1); }
  .timer-divider { font-size: 4.090vw; }
  .footer-cta-button { height: 17.954vw; font-size: 4.772vw; line-height: 4.090vw; letter-spacing: 0.381vw; border-radius: 5.454vw; }
  

}