/* =================================== */
/* =================================== */
/* =================================== */
/* D///O*/
/* =====JULY 2026 For Statoplan =====*/
/* =================================== */
/* =================================== */
/* =================================== */
/* 01. Header Section */
/* 02. Hero Section */
/* 03. We Section */
/* 04. Add Section */
/* 05. About Section */
/* 06. Who Section */
/* 07. Program Section */
/* 08. Choice Section */
/* 09. Get Section */
/* 10. B2B Section */
/* 11. Speaker Section */
/* 12. Admission Section */
/* 13. FAQ Section */
/* 14. Feedback Section */
/* 15. Warr Section */
/* 16. Register Section */
/* 17. Pop-up Section */
/* 18. Footer Section */
/* =================================== */
/* =================================== */
/* =================================== */






/* 01. Header Section Start */
.header__wrap{
    display: flex;
    padding: 20px 0px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

/* .header__wrap-col1, .header__wrap-col2{
    flex: 1;
} */

.header__wrap-col2{
  display: flex;

  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.header__wrap-col1-ul {
    gap: 50px;
    display: flex;
    width: auto;
    justify-content: space-between;
    align-items: center;
}

.header__link{
    color: var(--color-white);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
}

header {
    position: fixed;   /* закрепляет элемент */
    top: 0;            /* привязка к верхней границе окна */
    left: 0;
    width: 100%;       /* растягиваем на всю ширину окна */
    z-index: 1000;     /* поверх всех остальных элементов */
    background-color: rgb(var(--color-white-rgb) / 0); /* чтобы не было прозрачности, если хедер перекрывает контент */
    /* box-shadow: 0 2px 5px rgb(var(--color-black-rgb) / 0.1); */ /* легкая тень для отделения от контента */
    padding-top: 20px;
}


.btn{
    display: flex;
    padding: 15px 20px;
    justify-content: center;
    align-items: center;

    border-radius: 10.91px;
    background: var(--color-white);
    
    color: var(--color-navy-900);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 160% */
}

.btn:hover{
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgb(var(--color-black-rgb) / 0.12);
}
.btn:active{
  transform: scale(0.98);
}
@media (prefers-reduced-motion: reduce){
  .btn{ transition: none; }
}

.acc-btn{
  text-decoration: none;
  border-radius: 100px;
  background: var(--color-white);
  display: flex;
  height: 48px;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  color: var(--color-black);
  font-variant-numeric: lining-nums tabular-nums;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 14px */
}

button.btn,
button.acc-btn,
button.format__card-btn,
button.btn-reg-bl,
button.btn-reg-wh {
/*   border: 0; */
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.color__btn{
  display: flex;
  height: 40px;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: var(--color-ink-850);
  color: var(--color-white);
  font-variant-numeric: lining-nums tabular-nums;
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
}

/* Иконка бургера */
.burger-icon {
    display: none; 
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 30px;
    cursor: pointer;
}

.burger-line {
    background-color: var(--color-white);
    height: 4px;
    width: 100%;
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .burger-icon {
        display: flex; 
    }

    .header__wrap-col1-ul {
        display: none; 
        flex-direction: column;
        align-items: center;
        gap: 26px;
        position: fixed;
        top: 110px;
        left: 16px;
        right: 16px;
        z-index: 999;
        width: auto;
        margin: 0;
        padding: 30px 18px 24px;
        border: 1px solid rgb(var(--color-black-rgb) / 0.06);
        border-radius: 18px;
        background: rgb(var(--color-white-rgb) / 0.92);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 22px 60px rgb(var(--color-black-rgb) / 0.12);
    }

    .header__link {
        color: var(--color-black);
        font-size: 26px;
        line-height: 1.15;
        letter-spacing: 0;
        text-transform: none;
        text-align: center;
    }

    .header__wrap-col1-ul .btn-hedear-group {
        justify-content: center;
        margin-top: 8px;
    }

    .header__wrap-col1-ul .acc-btn {
        min-width: 260px;
        height: 56px;
        color: var(--color-white);
        background: var(--color-ink-800);
        box-shadow: 0 12px 26px rgb(var(--color-black-rgb) / 0.2);
    }

    .header__wrap-col1-ul.active {
        display: flex; 
    }
}

@media (max-width: 480px) {
    .header__wrap-col1-ul {
        top: 110px;
        left: 15px;
        right: 15px;
        gap: 24px;
        padding: 28px 16px 24px;
    }

    .header__link {
        font-size: 27px;
    }
}

.header__link {
    position: relative;
    text-decoration: none; 
    transition: color 0.3s ease;
}

.header__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px; /* отступ линии от текста */
    width: 0;
    height: 2px; /* толщина линии */
    background-color: var(--color-orange); /* цвет подчеркивания */
    transition: width 0.3s ease;
}

.header__link:hover::after {
    width: 100%; /* при наведении линия растягивается */
}

.header__wrap {
    display: flex;
    padding: 12px 24px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 16px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgb(var(--color-white-rgb) / 0.08);
    box-shadow: 0 16px 40px rgb(var(--color-black-rgb) / 0.278);
    pointer-events: auto;
}

header.header--dark .header__link{
  color: var(--color-black);
}

header.header--dark .burger-line{
  background-color: var(--color-black);
}

header.header--dark .header__wrap{
  border-color: rgb(var(--color-black-rgb) / 0.08);
  background: rgb(var(--color-white-rgb) / 0.64);
  box-shadow: 0 16px 40px rgb(var(--color-black-rgb) / 0.12);
}

header.header--dark .header__wrap-col1 svg path{
  fill: var(--color-black);
}

header.header--dark .header__wrap-col1 svg path[fill="var(--color-blue-social)"]{
  fill: var(--color-black);
}

header.header--dark .header__wrap-col1-ul .acc-btn{
  color: var(--color-white);
  background: var(--color-black);
}

.btn-hedear-group{
  display: flex;
  align-items: center;
  gap: 20px;
}
/* 01. Header Section End */

/* 02. Hero Section Start */
.green-acc-btn{
  display: flex;
  height: 55px;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  border: 1px solid #2FD6C7;
  background: rgba(47, 214, 199, 0.20);

  color: #2FD6C7;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  letter-spacing: 0.32px;
}

.hero__btn-group{
  display: flex;
  justify-content: center;
}

.hero{
  position: relative;
  padding: 1px 0 80px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgb(var(--color-black-rgb) / 0.58) 0%, rgb(var(--color-black-rgb) / 0.30) 46%, rgb(var(--color-black-rgb) / 0.72) 100%),
    url("../img/hero.avif") center center / cover no-repeat;
}

.hero__wrap{
  margin-top: 172px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero__header{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero__text{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  align-self: stretch;
}

h3{
  color: #2FD6C7;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 21.7px */
  letter-spacing: 10px;
  text-transform: uppercase;
}

h1{
  color: #FFF;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 65px;
  font-style: normal;
  font-weight: 600;
  line-height: 115%; /* 74.75px */
}

h2{
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 31px */
  width: 681px;
}

.hero__cards{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.hero__card{
  display: flex;
  width: 358px;
  height: 210px;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
  border-radius: 25px;
  border: 1px solid rgba(47, 214, 199, 0.20);
  background: rgba(12, 66, 67, 0.40);
  backdrop-filter: blur(7.5px);
}

.hero__card-text{
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 24.8px */
}

@media (max-width: 1024px) {
  .hero{
    padding-bottom: 64px;
    background-position: center top;
  }

  .hero__wrap{
    margin-top: 142px;
    gap: 34px;
  }

  .hero__header{
    gap: 32px;
  }

  h1{
    font-size: 52px;
  }

  h2{
    font-size: 18px;
    width: auto;
  }

  .hero__cards{
    flex-wrap: wrap;
    align-items: stretch;
  }

  .hero__card{
    width: calc(50% - 12px);
    height: auto;
    min-height: 190px;
    padding: 32px;
    box-sizing: border-box;
  }

  .hero__card:nth-child(3){
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero{
    min-height: auto;
    padding-bottom: 48px;
    background-position: center top;
  }

  .hero__wrap{
    margin-top: 126px;
    gap: 28px;
  }

  .hero__header{
    gap: 28px;
  }

  .hero__text{
    gap: 12px;
  }

  h3{
    font-size: 12px;
    letter-spacing: 5px;
  }

  h1{
    font-size: 38px;
    line-height: 110%;
  }

  h2{
    font-size: 16px;
    line-height: 145%;
  }

  .hero__btn-group{
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .hero__btn-group .btn{
    width: 100%;
    min-height: 54px;
    height: auto;
    padding: 14px 18px;
    box-sizing: border-box;
    text-align: center;
  }

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

  .hero__card,
  .hero__card:nth-child(3){
    width: 100%;
    min-height: auto;
    padding: 24px;
    border-radius: 20px;
  }

  .hero__card-text{
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero__wrap{
    margin-top: 118px;
  }

  h1{
    font-size: 34px;
  }

  h2{
    font-size: 15px;
  }
}
/* 02. Hero Section End */

/* 03. We Section Start */
.we{
  padding-top: 125px;
  padding-bottom: 150px;
}

.we__wrap{
  display: flex;
  align-items: center;
  gap: 70px;
}

.we__right{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  flex-shrink: 0;
  width: 783px;
}

.uptitle{
  display: flex;
  align-items: center;
  gap: 15px;
}

.uptitle p{
  color: #0C4243;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 24.8px */
  letter-spacing: 3px;
  text-transform: uppercase;
}

.we__title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 56.25px */
}

.we__subtitle{
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 31px */
}

.we__btn-wrap{
  display: flex;
  justify-content: start;
}

.green-btn{
  display: flex;
  width: 220px;
  height: 55px;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: #0C4243;

  color: #F9F9F9;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  letter-spacing: 0.32px;
}

.green-btn-wide{
  width: auto;
}

.we__promo{
  display: flex;
  padding: 30px 40px;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border-radius: 10px;
  border: 1px solid #D9D9D9;
  background: #EBF3F2;
}

.we__promo-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.we__promo-title{
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 155%; /* 31px */
}

.we__promo-subtitle{
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 23.25px */
}

.we__left{
  display: flex;
  width: 323px;
  flex-direction: column;
  align-items: flex-start;
  gap: 70px;
  flex-shrink: 0;
}

.we__left-item{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.we__left-item-head{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.we__left-item-head-title{
  color: #0C4243;
  font-family: var(--font-accent);
  font-size: 70px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 87.5px */
}

.we__left-item-head-subtitle{
  color: #0C4243;
  font-family: var(--font-accent);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 37.5px */
}

.we__left-item-subtitle{
  color: var(--Color-10, #525252);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 31px */
}

@media (max-width: 1280px) {
  .we__wrap{
    gap: 40px;
  }

  .we__right{
    width: min(62vw, 720px);
  }

  .we__left{
    width: 300px;
  }
}

@media (max-width: 1024px) {
  .we{
    padding-top: 90px;
    padding-bottom: 110px;
  }

  .we__wrap{
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .we__right,
  .we__left{
    width: 100%;
  }

  .we__right{
    gap: 26px;
  }

  .we__title{
    font-size: 38px;
  }

  .we__subtitle{
    font-size: 18px;
  }

  .we__div{
    display: none;
  }

  .we__left{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .we__left-item{
    min-height: 260px;
    padding: 26px;
    justify-content: space-between;
    border-radius: 18px;
    background: #EBF3F2;
    box-sizing: border-box;
  }

  .we__left-item-head-title{
    font-size: 54px;
  }

  .we__left-item-head-subtitle{
    font-size: 23px;
  }

  .we__left-item-subtitle{
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .we{
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .we__wrap{
    gap: 34px;
  }

  .we__right{
    gap: 22px;
  }

  .uptitle{
    gap: 12px;
  }

  .uptitle p{
    font-size: 13px;
    letter-spacing: 2px;
  }

  .we__title{
    font-size: 31px;
    line-height: 118%;
  }

  .we__title br,
  .we__subtitle br,
  .we__left-item-subtitle br{
    display: none;
  }

  .we__subtitle{
    font-size: 16px;
    line-height: 150%;
  }

  .we__btn-wrap,
  .we__btn-wrap .btn{
    width: 100%;
  }

  .green-btn{
    width: 100%;
    min-height: 54px;
    height: auto;
    box-sizing: border-box;
  }

  .we__promo{
    padding: 24px;
    align-items: flex-start;
    gap: 18px;
  }

  .we__promo-title{
    font-size: 18px;
  }

  .we__promo-subtitle{
    font-size: 14px;
  }

  .we__promo-ico{
    width: 58px;
    flex: 0 0 58px;
  }

  .we__promo-ico svg{
    width: 58px;
    height: auto;
  }

  .we__left{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .we__left-item{
    min-height: auto;
    padding: 24px;
    gap: 16px;
  }

  .we__left-item-head-title{
    font-size: 48px;
    line-height: 110%;
  }

  .we__left-item-head-subtitle{
    font-size: 22px;
  }

  .we__left-item-subtitle{
    font-size: 16px;
    line-height: 145%;
  }
}

@media (max-width: 480px) {
  .we__title{
    font-size: 28px;
  }

  .we__promo{
    flex-direction: column;
  }

  .we__left-item-head-title{
    font-size: 44px;
  }
}
/* 03. We Section End */

/* 04. Add Section Start */
.add{
  background: #F3F3F5;
  padding-top: 70px;
  padding-bottom: 70px;
}

.add__wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.add__header{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.add__header-title{
  color: #000;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 56.25px */
}

.add__header-subtitle{
  width: 1041px;
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 31px */
}

.add__card-part{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.add__card-name{
  color: #000;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 43.75px */
}

.add__card-wrap{
  display: flex;
  gap: 25px;
}

.add__card{
  display: flex;
  width: 457px;
  padding: 40px;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
  flex-direction: column;
  border-radius: 25px;
  border: 1px solid #D9D9D9;
  background: #FFF;
  cursor: pointer;
  box-sizing: border-box;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.add__card:hover{
  border: 1px solid #2FD6C7;
  background: linear-gradient(212deg, rgba(47, 214, 199, 0.20) 0%, rgba(47, 214, 199, 0.00) 46.63%), #FFF;
  box-shadow: 0 4px 50px 0 rgba(47, 214, 199, 0.20);
}

.add__card:hover{
  transform: translateY(-10px);
}

.add__card:hover .add__card-header-title,
.add__card:hover .add__card-header-subtitle{
  color: #0C4243;
}

.add__card-header{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.add__card-header-title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 25px */
}

.add__card-header-subtitle{
  color: #000;
  font-family: var(--font-accent);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 37.5px */
}

.add__card-content{
  color: var(--Color-10, #525252);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 23.25px */
}

.add__card-subtitle{
  display: flex;
  align-items: center;
  gap: 20px;
  display: flex;
  padding: 20px 30px;
  align-items: center;
  align-self: stretch;

  border-radius: 1000px;
  border: 1px solid rgba(12, 66, 67, 0.10);
  background: #EBF3F2;
}

.add__card-subtitle p{
  color: var(--Color-10, #525252);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 23.25px */
}

.add__card-promo{
  display: flex;
  align-items: center;
  gap: 78px;
  justify-content: start;
  border-radius: 25px;
  background: url(../img/add-bg.png) lightgray 50% / cover no-repeat;
  padding: 48px;
  width: auto;
  align-self: stretch;
}

.add__card-promo-text{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.add__card-promo-title{
  color: #FFF;
  font-family: var(--font-accent);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 37.5px */
}

.add__card-promo-subtitle{
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 23.25px */
}

@media (max-width: 1280px) {
  .add__header-subtitle{
    width: min(100%, 980px);
  }

}

@media (max-width: 1024px) {
  .add{
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .add__wrap{
    gap: 56px;
  }

  .add__header-title{
    font-size: 38px;
  }

  .add__header-subtitle{
    font-size: 18px;
  }

  .add__card-part{
    gap: 34px;
    width: 100%;
  }

  .add__card-name{
    font-size: 30px;
  }

  .add__card-wrap{
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .add__card{
    width: 100%;
    min-height: auto;
  }

  .add__card-header-subtitle{
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .add{
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .add__card-promo-ico{
    display: none;
  }

  .add__card-promo-title{
    font-size: 18px;
  }

  .add__card-promo{
    padding: 24px;
  }

  .add__wrap{
    gap: 42px;
  }

  .add__header{
    gap: 16px;
  }

  .add__header-title{
    font-size: 31px;
  }

  .add__header-subtitle{
    font-size: 16px;
    line-height: 150%;
  }

  .add__card-name{
    font-size: 24px;
  }

  .add__card{
    padding: 26px;
    gap: 24px;
    border-radius: 20px;
  }

  .add__card:hover{
    transform: translateY(-6px);
  }

  .add__card-header-title{
    font-size: 18px;
  }

  .add__card-header-subtitle{
    font-size: 30px;
    line-height: 118%;
  }

  .add__card-content{
    font-size: 15px;
  }

  .add__card-subtitle{
    padding: 18px 20px;
    gap: 14px;
    border-radius: 24px;
  }

  .add__card-subtitle p{
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .add__header-title{
    font-size: 28px;
  }

  .add__card{
    padding: 24px;
  }

  .add__card-header-subtitle{
    font-size: 28px;
  }
}
/* 04. Add Section End */

/* 05. About Section Start */
.about{
  padding-top: 150px;
  padding-bottom: 74px;
}

.about__wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.about__title{
  color: #000;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 70px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 87.5px */
}

.about__subtitle{
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 31px */
  width: 907px;
}

.about__subtitle b{
  font-weight: 700;
}

.about__img img{
  width: 981px;
}

@media (max-width: 1024px) {
  .about{
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .about__wrap{
    gap: 26px;
  }

  .about__title{
    font-size: 52px;
  }

  .about__subtitle{
    width: min(100%, 820px);
    font-size: 18px;
  }

  .about__img{
    width: 100%;
  }

  .about__img img{
    display: block;
    width: min(100%, 820px);
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .about{
    padding-top: 78px;
    padding-bottom: 46px;
  }

  .about__wrap{
    gap: 20px;
  }

  .about__title{
    font-size: 34px;
    line-height: 115%;
  }

  .about__title br{
    display: none;
  }

  .about__subtitle{
    font-size: 16px;
    line-height: 150%;
  }
}

@media (max-width: 480px) {
  .about__title{
    font-size: 30px;
  }
}
/* 05. About Section End */

/* 06. Who Section Start */
.who{
  padding-top: 75px;
  padding-bottom: 150px;
}

.who__wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}

.who__title{
  color: #000;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 56.25px */
}

.who__subtitle{
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 31px */
  width: 1183px;
}

.who__cards-wrap{
  display: flex;
  gap: 25px;
}

.who__card{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  display: flex;
  width: 367px;
  padding: 40px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 25px;
  border: 1px solid #D9D9D9;
  background: #FFF;
}

.who__card-up{
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.who__card-title{
  color: #0C4243;
  font-family: var(--font-accent);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 25px */
}

.who__card-ico{
  display: flex;
  width: 100px;
  height: 100px;
  padding: 10.245px 10.468px 14.032px 14.477px;
  justify-content: center;
  align-items: center;
  gap: 2.227px;
  aspect-ratio: 1/1;
  border-radius: 1000px;
  background: #EBF3F2;
}

@media (max-width: 1280px) {
  .who__subtitle{
    width: min(100%, 1020px);
  }

  .who__cards-wrap{
    gap: 18px;
  }
}

@media (max-width: 1024px) {
  .who{
    padding-top: 60px;
    padding-bottom: 110px;
  }

  .who__wrap{
    gap: 26px;
  }

  .who__title{
    font-size: 38px;
  }

  .who__subtitle{
    font-size: 18px;
  }

  .who__cards-wrap{
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .who__card{
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 767px) {
  .who{
    padding-top: 48px;
    padding-bottom: 78px;
  }

  .who__wrap{
    gap: 22px;
  }

  .who__title{
    font-size: 31px;
    line-height: 118%;
  }

  .who__subtitle{
    font-size: 16px;
    line-height: 150%;
  }

  .who__cards-wrap{
    gap: 16px;
  }

  .who__card{
    padding: 24px;
    border-radius: 20px;
  }

  .who__card-up{
    gap: 18px;
  }

  .who__card-title{
    font-size: 19px;
  }

  .who__card-title br{
    display: none;
  }

  .who__card-ico{
    width: 74px;
    height: 74px;
    padding: 8px;
    flex: 0 0 74px;
    box-sizing: border-box;
  }

  .who__card-ico svg{
    max-width: 46px;
    max-height: 46px;
  }
}

@media (max-width: 480px) {
  .who__title{
    font-size: 28px;
  }

  .who__card-up{
    align-items: flex-start;
  }
}
/* 06. Who Section End */

/* 07. Program Section Start */
.program{
  padding-top: 70px;  
  padding-bottom: 70px;
  background: #F3F3F5;  
}

.program__wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}

.program__title{
  color: #000;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 56.25px */
}

.program__promo{
  display: flex;
  height: 55px;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #0C4243;

  color: #F9F9F9;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 25px */
  letter-spacing: 0.5px;
}

.program__subtitle{
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 31px */

  width: 1183px;
}

.program__acc-wrap{
  display: flex;
  width: 1130px;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  border-radius: 15px;
  border: 1px solid #D9D9D9;
  background: #FFF;
}

.program__acc-div{
  display: none;
}

.program__acc{
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 30px;
}

.program__acc:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}

.program__acc-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 24px;
  cursor: pointer;
}

.program__acc-head-left{
  display: flex;
  align-items: center;
  gap: 30px;
}

.program__acc--num{
  color: #0C4243;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 25px */
}

.program__acc--title{
  color: #0C4243;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 25px */
}

.program__acc--shevron{
  display: flex;
  flex: 0 0 auto;
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.program__acc.is-open .program__acc--shevron{
  transform: rotate(0);
}

.program__acc-content{
  display: flex;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    margin-top 0.35s ease;
  max-width: 1000px;
}

.program__acc.is-open .program__acc-content,
.acc-content-active{
  max-height: none !important;
  opacity: 1 !important;
  overflow: visible !important;
  margin-top: 18px;
}

.program__acc-content-item{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.program__acc-content-item span{
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 155%; /* 23.25px */
}

.program__acc-content-item p{
  color: var(--Color-10, #525252);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 23.25px */
}

@media (max-width: 1280px) {
  .program__subtitle{
    width: min(100%, 1040px);
  }

  .program__acc-wrap{
    width: min(100%, 1040px);
    box-sizing: border-box;
  }
}

@media (max-width: 1024px) {
  .program{
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .program__title{
    font-size: 38px;
  }

  .program__promo{
    height: auto;
    min-height: 52px;
    font-size: 21px;
    text-align: center;
  }

  .program__subtitle{
    font-size: 18px;
  }

  .program__acc-wrap{
    padding: 32px;
    gap: 24px;
  }

  .program__acc{
    padding-bottom: 24px;
  }

  .program__acc--title,
  .program__acc--num{
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .program{
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .program__wrap{
    gap: 22px;
  }

  .program__title{
    font-size: 31px;
  }

  .program__promo{
    width: 100%;
    padding: 14px 16px;
    box-sizing: border-box;
    font-size: 17px;
    line-height: 125%;
  }

  .program__subtitle{
    font-size: 16px;
    line-height: 150%;
  }

  .program__acc-wrap{
    padding: 24px 18px;
    gap: 20px;
    border-radius: 14px;
  }

  .program__acc{
    padding-bottom: 20px;
  }

  .program__acc-head{
    align-items: center;
    gap: 14px;
  }

  .program__acc-head-left{
    align-items: center;
    gap: 14px;
  }

  .program__acc--num{
    min-width: 28px;
    font-size: 16px;
  }

  .program__acc--title{
    font-size: 16px;
    line-height: 130%;
  }

  .program__acc-content-item span,
  .program__acc-content-item p{
    font-size: 14px;
    line-height: 150%;
  }
}

@media (max-width: 480px) {
  .program__title{
    font-size: 28px;
  }

  .program__acc-wrap{
    padding: 22px 16px;
  }
}
/* 07. Program Section End */

/* 08.  Choice Section Start */
.choice{
  padding-top: 100px;
  padding-bottom: 100px;
  background:
    linear-gradient(180deg, rgb(var(--color-black-rgb) / 0.25) 0%, rgb(var(--color-black-rgb) / 0.52) 100%),
    url("../img/choice-bg.avif") center center / cover no-repeat;
}

.choice__wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.choice__header{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.choice__title{
  color: #FFF;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 56.25px */
}

.choice__cards-wrap{
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.choice__card{
  display: flex;
  padding: 40px;
  align-items: flex-start;
  gap: 30px;
  flex-direction: column;

  border-radius: 25px;
  border: 1px solid #0C4243;
  background: #01070B;
}

.choice__card-head{
  display: flex;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}

.choice__card-head-text{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.choice__card-head-title{
  color: #FFF;
  font-family: var(--font-accent);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 31.25px */
}

.choice__card-head-subtitle{
  color: #2FD6C7;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 25px */
}

.choice__card-head-descr{
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 23.2px */
}

.choice__card-middle{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  align-self: stretch;
}

.choice__card-item{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  align-self: stretch;
}

.choice__card-item-ico{
  padding-top: 2px;
}

.choice__card-item p{
  color: var(--Color-9, #A4A7AE);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%; /* 20.3px */
}

.choice__card-item-head{
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 24px;
  align-items: center;
  gap: 18px;
  color: var(--Color-9, #A4A7AE);
  text-align: left;
  cursor: pointer;
}

.choice__card-item-title{
  color: #A4A7AE;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%;
}

.choice__card-item.is-open .choice__card-item-title{
  color: #F9F9F9;
}

.choice__card-item-plus{
  position: relative;
  width: 24px;
  height: 24px;
  justify-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #A4A7AE;
  transition: transform 0.25s ease, color 0.25s ease;
}

.choice__card-item-plus::before,
.choice__card-item-plus::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.choice__card-item-plus::after{
  transform: translate(-50%, -50%) rotate(90deg);
}

.choice__card-item.is-open .choice__card-item-plus{
  color: #2FD6C7;
  transform: rotate(180deg);
}

.choice__card-item.is-open .choice__card-item-plus::after{
  transform: translate(-50%, -50%) rotate(0);
}

.choice__card-d .choice__card-item.is-open .choice__card-item-plus{
  color: #00B9F5;
}

.choice__card-item-content{
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding-top 0.35s ease;
}

.choice__card-item.is-open .choice__card-item-content{
  max-height: none !important;
  opacity: 1 !important;
  overflow: visible !important;
  padding-top: 14px;
}

.choice__card-item-content-inner{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(47, 214, 199, 0.18);
  color: #A4A7AE;
}

.choice__card-d .choice__card-item-content-inner{
  border-top-color: rgba(6, 186, 251, 0.18);
}

.choice .choice__card-item-content,
.choice .choice__card-item-content-inner,
.choice .choice__card-item-content-inner *{
  color: #A4A7AE !important;
}

.choice__card-item-content-row{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

html body .choice__card-item-content-inner span,
.choice__card-item-content-row span{
  color: #FFF !important;
  font-size: 13px;
  font-weight: 700;
  line-height: 145%;
}

html body .choice__card-item-content-inner p,
.choice__card-item-content-row p{
  color: #A4A7AE !important;
  font-size: 13px;
  font-weight: 500;
  line-height: 145%;
  margin: 0;
}

.choice__card-down{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;

  display: flex;
  padding: 40px;
  align-self: stretch;

  border-radius: 25px;
  border: 1px solid #0C4243;
  background: rgba(1, 80, 77, 0.30);
}

.choice__card-down-title{
  color: #2FD6C7;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 29px */
}

.choice__card-manager{
  display: flex;
  height: 55px;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 100px;
  background: #26A79B;
  color: #F9F9F9;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  letter-spacing: 0.32px;

  text-decoration: none;
}

.choice__card-d{
  border-radius: 25px;
  border: 1px solid #023348;
  background: #01070B;
}

.choice__card-head-subtitle-d{
  color: #06BAFB;
}

.choice__card-down-d{
  border-radius: 25px;
  border: 1px solid #023348;
  background: rgba(2, 51, 72, 0.30);
}

.choice__card-down-title-d{
  color: #00B9F5;
}

.choice__card-director{
  border-radius: 100px;
  background: #016291;
  display: flex;
  height: 55px;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;

  color: #F9F9F9;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  letter-spacing: 0.32px;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .choice{
    padding-top: 80px;
    padding-bottom: 90px;
    background-position: center top;
  }

  .choice__wrap{
    gap: 56px;
  }

  .choice__header{
    gap: 22px;
  }

  .choice__title{
    font-size: 38px;
  }

  .choice__cards-wrap{
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .choice__card{
    box-sizing: border-box;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .choice{
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .choice__wrap{
    gap: 38px;
  }

  .choice__title{
    font-size: 31px;
    line-height: 118%;
  }

  .choice__card{
    padding: 24px;
    gap: 24px;
    border-radius: 20px;
  }

  .choice__card-head{
    align-items: flex-start;
    gap: 18px;
  }

  .choice__card-head-ico img{
    width: 74px;
    height: auto;
  }

  .choice__card-head-text{
    gap: 10px;
  }

  .choice__card-head-title{
    font-size: 22px;
  }

  .choice__card-head-subtitle{
    font-size: 17px;
  }

  .choice__card-head-descr{
    font-size: 14px;
  }

  .choice__card-middle{
    gap: 14px;
  }

  .choice__card-item{
    align-items: stretch;
    gap: 0;
  }

  .choice__card-item p{
    font-size: 14px;
  }

  .choice__card-down{
    padding: 24px;
    border-radius: 20px;
  }

  .choice__card-down-title{
    font-size: 17px;
  }

  .choice__card-manager,
  .choice__card-director{
    min-height: 54px;
    height: auto;
    padding: 14px 18px;
    box-sizing: border-box;
    text-align: center;
    line-height: 125%;
  }
}

@media (max-width: 480px) {
  .choice__title{
    font-size: 28px;
  }

  .choice__card-head{
    flex-direction: column;
  }

  .choice__card-head-ico img{
    width: 66px;
  }

  .choice__card{
    padding: 22px;
  }

  .choice__card-down{
    padding: 20px;
  }

  .choice__card svg{
    display: none;
  }
}

.uptitle-acc p{
  color: #2FD6C7;
}
/* 08. Choice Section End */

/* 09. Get Section Start */
.get{
  padding-top: 150px;
  padding-bottom: 75px;
}

.get__wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.get__header{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.get__title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 56.25px */
}

.get__cards-wrap{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1463px;
}

.get__card{
  display: flex;
  padding: 40px;
  align-items: flex-start;
  gap: 18px;
  border-radius: 25px;
  border: 1px solid #D9D9D9;
  background: #FFF;
  flex-direction: column;
  grid-column: span 2;
  min-height: 322px;
  box-sizing: border-box;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.get__card:nth-child(4){
  grid-column: 2 / span 2;
}

.get__card:nth-child(5){
  grid-column: 4 / span 2;
}

.get__card-descr{
  color: var(--Color-10, #525252);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 23.25px */
}

.get__card-down{
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.get__card-title{
    color: #0C4243;
  font-family: var(--font-accent);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 25px */
}

.get__card-ico{
  display: flex;
  width: 100px;
  height: 100px;
  justify-content: center;
  align-items: center;
  gap: 2.227px;
  flex-shrink: 0;
  aspect-ratio: 1/1;

  border-radius: 1000px;
  background: #EBF3F2;
}

@media (hover: hover) and (pointer: fine) {
  .get__card:hover{
    transform: translateY(-8px) rotate(-1deg);
    border-color: rgb(12 66 67 / 0.25);
    box-shadow: 0 18px 45px rgb(var(--color-black-rgb) / 0.08);
  }

  .get__card:nth-child(even):hover{
    transform: translateY(-8px) rotate(1deg);
  }
}

@media (max-width: 1280px) {
  .get__cards-wrap{
    max-width: 1040px;
  }
}

@media (max-width: 1024px) {
  .get{
    padding-top: 110px;
    padding-bottom: 70px;
  }

  .get__title{
    font-size: 38px;
  }

  .get__cards-wrap{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .get__card,
  .get__card:nth-child(4),
  .get__card:nth-child(5){
    grid-column: auto;
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .get{
    padding-top: 78px;
    padding-bottom: 56px;
  }

  .get__wrap{
    gap: 34px;
  }

  .get__header{
    gap: 20px;
  }

  .get__title{
    font-size: 31px;
    line-height: 118%;
    text-align: center;
  }

  .get__cards-wrap{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .get__card{
    padding: 24px;
    gap: 16px;
    border-radius: 20px;
  }

  .get__card-descr{
    font-size: 14px;
    line-height: 150%;
  }

  .get__card-title{
    font-size: 19px;
  }

  .get__card-ico{
    width: 76px;
    height: 76px;
  }

  .get__card-ico svg{
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .get__title{
    font-size: 28px;
  }

  .get__card-down{
    gap: 18px;
  }
}
/* 09. Get Section End */

/* 10. B2B Section Start */
.b2b{
  padding-top: 75px;
  padding-bottom: 150px;
  overflow: hidden;
}

.b2b__wrap{
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(0, 620px);
  align-items: center;
  justify-content: center;
  column-gap: 48px;
  overflow: hidden;
}

.b2b__left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.b2b__title{
  max-width: 100%;
  color: #000;
  font-family: var(--font-accent);
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 56.25px */
}

.b2b__subtitle{
  width: 551px;
  max-width: 100%;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 31px */
}

.b2b__content{
  width: 551px;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.b2b__item{
  display: flex;
  width: 100%;
  padding: 15px 20px;
  align-items: center;
  gap: 30px;
  box-sizing: border-box;
  border-radius: 100px;
  background: #FFF;
}

.b2b__item-ico{
  color: #0C4243;
  text-align: right;
  font-family: var(--font-accent);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 31.25px */
}

.b2b__item-title{
  min-width: 0;
  color: var(--Color-10, #525252);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 24.8px */
}

.b2b__btn-group{
  display: flex;
  justify-content: start;
}

.b2b__right img{
  display: block;
  width: 100%;
  height: 814px;
  max-width: none;
  object-fit: cover;
}

.b2b__right{
  width: 100%;
  height: 814px;
  overflow: hidden;
}

@media (max-width: 1280px) {
  .b2b__title{
    font-size: 42px;
  }

  .b2b__wrap{
    grid-template-columns: minmax(0, 600px) minmax(0, 520px);
    column-gap: 32px;
  }
}

@media (max-width: 1024px) {
  .b2b{
    padding-top: 70px;
    padding-bottom: 110px;
  }

  .b2b__wrap{
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .b2b__left{
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .b2b__title{
    font-size: 38px;
  }

  .b2b__subtitle{
    font-size: 18px;
  }

  .b2b__content{
    gap: 22px;
  }

  .b2b__right{
    display: none;
  }
}

@media (max-width: 767px) {
  .b2b{
    padding-top: 56px;
    padding-bottom: 80px;
    overflow: hidden;
  }

  .b2b__left{
    gap: 20px;
    min-width: 0;
  }

  .b2b__title{
    width: 100%;
    font-size: 26px;
    line-height: 118%;
    overflow-wrap: anywhere;
  }

  .b2b__title br{
    display: none;
  }

  .b2b__subtitle{
    width: 100%;
    font-size: 16px;
    line-height: 150%;
    overflow-wrap: anywhere;
  }

  .b2b__content{
    width: 100%;
    gap: 16px;
  }

  .b2b__item{
    width: 100%;
    padding: 14px 16px;
    gap: 14px;
    box-sizing: border-box;
    border-radius: 24px;
  }

  .b2b__item-ico{
    flex: 0 0 34px;
    min-width: 34px;
    font-size: 21px;
    text-align: left;
  }

  .b2b__item-title{
    min-width: 0;
    font-size: 14px;
    line-height: 145%;
  }

  .b2b__btn-group,
  .b2b__btn-group .btn{
    width: 100%;
  }

  .b2b__btn-group .btn{
    min-height: 54px;
    height: auto;
    padding: 14px 18px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

}

@media (max-width: 480px) {
  .b2b__title{
    font-size: 24px;
  }

  .b2b__item{
    align-items: flex-start;
  }
}
/* 10. B2B Section End */

/* 11. Speaker Section Start */
.speaker{
  background: #F3F3F5;
  padding-top: 75px;
  padding-bottom: 75px;
  overflow: hidden;
}

.speaker__wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}

.speaker__header{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}

.speaker__title{
  color: #000;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 56.25px */
}

.speaker__content{
  width: 100%;
}

.speaker__item-wrap{
  width: 100%;
}

.speaker__track{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.speaker__item-middle{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.speaker__item-name{
  color: #000;
  font-family: var(--font-accent);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

.speaker__item-descr{
  color: #535353;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%;
}

.speaker__item{
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 100%;
  padding: 15px;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  box-sizing: border-box;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: #FFF;
}

.speaker__item-ico{
  position: relative;
  height: 407px;
  align-self: stretch;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(47, 214, 199, 0.34), rgba(47, 214, 199, 0) 38%),
    linear-gradient(135deg, #eef7f6 0%, #dce7e6 100%);
}

.speaker__item-ico::after{
  content: "";
  position: absolute;
  inset: auto 18% 0;
  height: 72%;
  border-radius: 120px 120px 0 0;
  background: linear-gradient(180deg, rgba(12, 66, 67, 0.15), rgba(12, 66, 67, 0.42));
}

.speaker__item-ico-1{
  background:
    url("https://stratoplan-school.com/archive/foundation/img/coaches/coach-2.webp") center 42% / 94% auto no-repeat,
    radial-gradient(circle at 50% 35%, rgba(47, 214, 199, 0.34), rgba(47, 214, 199, 0) 38%),
    linear-gradient(135deg, #eef7f6 0%, #dce7e6 100%);
}

.speaker__item-ico-2{
  background:
    url("https://stratoplan-school.com/archive/foundation/img/coaches/coach-3.webp") center calc(44% + 10px) / 104% auto no-repeat,
    radial-gradient(circle at 55% 30%, rgba(12, 66, 67, 0.25), rgba(12, 66, 67, 0) 40%),
    linear-gradient(135deg, #f2f5fb 0%, #e2ebe9 100%);
}

.speaker__item-ico-3{
  background:
    url("https://stratoplan-school.com/archive/foundation/img/coaches/coach-4.webp") center calc(42% + 10px) / 102% auto no-repeat,
    radial-gradient(circle at 48% 32%, rgba(47, 214, 199, 0.30), rgba(47, 214, 199, 0) 38%),
    linear-gradient(135deg, #f7f7f7 0%, #dce9ef 100%);
}

.speaker__item-ico-4{
  background:
    url("https://stratoplan-school.com/cto/img/team/pracht.webp") center bottom / contain no-repeat,
    radial-gradient(circle at 45% 34%, rgba(12, 66, 67, 0.22), rgba(12, 66, 67, 0) 42%),
    linear-gradient(135deg, #f4f8f8 0%, #e8e3dd 100%);
}

.speaker__item-ico-5{
  background:
    url("https://stratoplan-school.com/cto/img/team/apazidi.webp") center bottom / contain no-repeat,
    radial-gradient(circle at 52% 28%, rgba(47, 214, 199, 0.28), rgba(47, 214, 199, 0) 42%),
    linear-gradient(135deg, #eef6f4 0%, #e5edf6 100%);
}

.speaker__item-ico-6{
  background:
    url("https://stratoplan-school.com/cto/img/team/linnik.webp") center calc(100% + 50px) / auto 124% no-repeat,
    radial-gradient(circle at 50% 32%, rgba(12, 66, 67, 0.22), rgba(12, 66, 67, 0) 40%),
    linear-gradient(135deg, #f7f7f7 0%, #dde9e4 100%);
}

.speaker__item-ico-1::after,
.speaker__item-ico-2::after,
.speaker__item-ico-3::after,
.speaker__item-ico-4::after,
.speaker__item-ico-5::after,
.speaker__item-ico-6::after,
.speaker__item-ico-7::after,
.speaker__item-ico-8::after{
  display: none;
}

.speaker__item-ico-7{
  background:
    url("../img/sergeev.png") center bottom / contain no-repeat,
    radial-gradient(circle at 55% 34%, rgba(47, 214, 199, 0.30), rgba(47, 214, 199, 0) 38%),
    linear-gradient(135deg, #f4f7f8 0%, #e1e8de 100%);
}

.speaker__item-ico-8{
  background:
    url("../img/bodrenkova.png") center bottom / contain no-repeat,
    radial-gradient(circle at 48% 30%, rgba(12, 66, 67, 0.24), rgba(12, 66, 67, 0) 42%),
    linear-gradient(135deg, #eef4f6 0%, #e7e5ef 100%);
}

.speaker__item-btn{
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  padding: 10px;
  gap: 10px;
  margin-top: auto;
  text-decoration: none;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.06) 100%);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.speaker__item-btn svg{
  flex: 0 0 auto;
}

.speaker__item-btn-title{
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.speaker__item-btn-subtitle{
  color: #535353;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
}

.speaker__nav{
  display: none;
}

.speaker__nav-btn{
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0C4243;
  border: 1px solid rgba(12, 66, 67, 0.16);
  border-radius: 50%;
  background: #FFF;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.speaker__nav-btn.is-disabled{
  opacity: 0.38;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .speaker__item{
    transition: transform 0.28s ease, box-shadow 0.28s ease;
  }

  .speaker__item:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(12, 66, 67, 0.10);
  }

  .speaker__item-btn:hover{
    border-color: rgba(47, 214, 199, 0.55);
    box-shadow: 0 8px 24px rgba(47, 214, 199, 0.16);
  }

  .speaker__nav-btn:hover{
    transform: translateY(-2px);
    border-color: rgba(47, 214, 199, 0.55);
  }
}

@media (max-width: 1280px) {
  .speaker__track{
    gap: 24px;
  }

  .speaker__item-ico{
    height: 340px;
  }
}

@media (max-width: 1024px) {
  .speaker{
    padding-top: 70px;
    padding-bottom: 70px;
  }

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

  .speaker__title{
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .speaker{
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .speaker__wrap,
  .speaker__header{
    gap: 24px;
  }

  .speaker__title{
    font-size: 32px;
  }

  .speaker__content{
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .speaker__item-wrap{
    overflow: hidden;
  }

  .speaker__track{
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    transition: transform 0.35s ease;
    will-change: transform;
  }

  .speaker__item{
    flex: 0 0 100%;
    width: 100%;
    padding: 12px;
    border-radius: 22px;
  }

  .speaker__item-ico{
    height: 300px;
    border-radius: 22px;
  }

  .speaker__item-name{
    font-size: 21px;
  }

  .speaker__item-descr{
    font-size: 14px;
  }

  .speaker__nav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .speaker__title{
    font-size: 28px;
  }

  .speaker__item-ico{
    height: 260px;
  }
}
/* 11. Speaker Section End */

/* 12. Admission Section Start */
.admission{
  background: #F3F3F5;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.admission__wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.admission__header{
  width: 100%;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.admission__title{
  color: #000;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

.admission__subtitle{
  width: 100%;
  color: #000;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%;
}

.admission__steps{
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
  padding-top: 42px;
}

.admission__steps::before{
  display: none;
}

.admission__step{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.admission__step::before{
  content: "";
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(12, 66, 67, 0.28);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 120ms);
}

.admission__step.is-visible::before{
  transform: scaleX(1);
}

.admission__step-dot{
  position: absolute;
  top: -42px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0C4243;
  box-shadow: 0 0 0 6px rgba(12, 66, 67, 0.08);
}

.admission__step-title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%;
}

.admission__step-text{
  max-width: 365px;
  color: #535353;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%;
}

.admission__note{
  width: min(100%, 900px);
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  gap: 46px;
  padding: 28px 44px;
  box-sizing: border-box;
  border-radius: 20px;
  border: 1px solid rgba(12, 66, 67, 0.10);
  background: #EBF3F2;
  text-align: left;
}

.admission__note-percent{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #0C4243;
}

.admission__note-percent span{
  font-family: var(--font-accent);
  font-size: 65px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

.admission__note-percent p{
  font-family: var(--font-accent);
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

.admission__note-content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: 104px;
  justify-content: center;
  padding-left: 46px;
  border-left: 2px solid rgba(12, 66, 67, 0.22);
}

.admission__note-text{
  color: #535353;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%;
}

.admission__note-title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

.admission__btn-group{
  display: flex;
  justify-content: center;
}

.admission__btn{
  min-width: 300px;
}

@media (max-width: 1280px) {
  .admission__steps{
    gap: 42px;
  }

  .admission__step-title{
    font-size: 25px;
  }

  .admission__step-text{
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .admission{
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .admission__title{
    font-size: 40px;
  }

  .admission__subtitle{
    font-size: 19px;
  }

  .admission__steps{
    gap: 28px;
  }

  .admission__step-title{
    font-size: 22px;
  }

  .admission__step-text{
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .admission{
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .admission__wrap,
  .admission__header{
    gap: 24px;
  }

  .admission__title{
    font-size: 32px;
  }

  .admission__subtitle{
    font-size: 16px;
    line-height: 150%;
  }

  .admission__subtitle br{
    display: none;
  }

  .admission__steps{
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 0;
    padding-left: 0;
  }

  .admission__steps::before{
    display: none;
  }

  .admission__step{
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    column-gap: 16px;
    gap: 10px;
  }

  .admission__step::before{
    display: none;
  }

  .admission__step-dot{
    position: relative;
    top: 8px;
    left: 0;
    width: 12px;
    height: 12px;
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .admission__step-title{
    grid-column: 2;
    font-size: 20px;
    line-height: 125%;
  }

  .admission__step-title br{
    display: block;
  }

  .admission__step-text{
    grid-column: 2;
    max-width: 100%;
    font-size: 14px;
    line-height: 150%;
  }

  .admission__note{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 20px;
    border-radius: 10px;
    text-align: center;
  }

  .admission__note-percent{
    align-items: center;
  }

  .admission__note-percent span{
    font-size: 48px;
    line-height: 110%;
  }

  .admission__note-percent p{
    font-size: 20px;
  }

  .admission__note-content{
    align-items: center;
    min-height: 0;
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid rgba(12, 66, 67, 0.18);
  }

  .admission__note-text{
    font-size: 14px;
  }

  .admission__note-title{
    font-size: 21px;
  }

  .admission__btn-group,
  .admission__btn{
    width: 100%;
  }

  .admission__btn{
    min-width: 0;
    min-height: 54px;
    height: auto;
    padding: 14px 18px;
    box-sizing: border-box;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .admission__title{
    font-size: 28px;
  }

  .admission__subtitle{
    font-size: 15px;
  }

  .admission__step{
    column-gap: 14px;
  }

  .admission__step-title{
    font-size: 18px;
    letter-spacing: 0;
  }
}

@media (prefers-reduced-motion: reduce){
  .admission__step::before{
    transform: scaleX(1);
    transition: none;
  }
}
/* 12. Admission Section End */

/* 13. FAQ Section Start */
.faq{
  padding-top: 100px;
  padding-bottom: 150px;
  overflow: hidden;
}

.faq__wrap{
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 90px;
  align-items: flex-start;
}

.faq__left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.faq__title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 55px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

.faq__list{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq__item{
  border-radius: 20px;
  background: #FFF;
  overflow: hidden;
}

.faq__head{
  width: 100%;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  box-sizing: border-box;
  border: 0;
  background: transparent;
  color: #000;
  text-align: left;
  font-family: var(--font-main);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  cursor: pointer;
}

.faq__icon{
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq__icon::before,
.faq__icon::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #000;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq__icon::after{
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.is-open .faq__icon::after{
  transform: translate(-50%, -50%) rotate(0);
}

.faq__content{
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}

.faq__item.is-open .faq__content{
  opacity: 1;
  max-height: 240px;
}

.faq__content p{
  padding: 0 30px 30px;
  color: #535353;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%;
}

@media (max-width: 1024px) {
  .faq{
    padding-top: 80px;
    padding-bottom: 110px;
  }

  .faq__wrap{
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq__left{
    gap: 24px;
  }

  .faq__title{
    font-size: 46px;
  }
}

@media (max-width: 767px) {
  .faq{
    padding-top: 56px;
    padding-bottom: 80px;
  }

  .faq__title{
    font-size: 36px;
  }

  .faq__list{
    gap: 18px;
  }

  .faq__head{
    min-height: 0;
    padding: 22px 20px;
    font-size: 19px;
  }

  .faq__content p{
    padding: 0 20px 22px;
    font-size: 14px;
  }
}
/* 13. FAQ Section End */

/* 14. Feedback Section Start */
.feedback{
  background: #F3F3F5;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.feedback__wrap{
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.feedback__header{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.feedback__header-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.feedback__title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 55px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

.feedback__nav{
  display: flex;
  align-items: center;
  gap: 24px;
}

.feedback__nav-btn{
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border: 0;
  border-radius: 50%;
  background: #E9E9EA;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.feedback__nav-btn.is-disabled{
  opacity: 0.35;
  pointer-events: none;
}

.feedback__slider{
  width: 100%;
  overflow: hidden;
}

.feedback__track{
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.feedback__card{
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  display: flex;
  min-height: 360px;
  padding: 30px 24px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  box-sizing: border-box;
  border-radius: 20px;
  background: #FFF;
  animation: feedbackCardIn 0.55s ease both;
}

.feedback__card-title{
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-decoration-line: underline;
  text-underline-offset: 3px;
}

.feedback__card-line{
  width: 100%;
  height: 1px;
  background: #DFF0FF;
}

.feedback__card-text{
  color: #8A8A8A;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%;
}

.feedback__card-link{
  margin-top: auto;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-decoration-line: underline;
  text-underline-offset: 3px;
}

.feedback__empty{
  color: #535353;
  font-size: 16px;
  font-weight: 500;
}

@keyframes feedbackCardIn{
  from{
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (hover: hover) and (pointer: fine) {
  .feedback__nav-btn:hover{
    transform: translateY(-2px);
    background: #FFF;
  }

  .feedback__card{
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .feedback__card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(12, 66, 67, 0.08);
  }
}

@media (max-width: 1024px) {
  .feedback{
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .feedback__wrap{
    gap: 42px;
  }

  .feedback__title{
    font-size: 46px;
  }

  .feedback__card{
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 767px) {
  .feedback{
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .feedback__header{
    align-items: flex-start;
    flex-direction: column;
  }

  .feedback__header-left{
    gap: 24px;
  }

  .feedback__title{
    font-size: 36px;
  }

  .feedback__nav{
    align-self: flex-end;
    gap: 14px;
  }

  .feedback__nav-btn{
    width: 48px;
    height: 48px;
  }

  .feedback__track{
    gap: 16px;
  }

  .feedback__card{
    flex-basis: 100%;
    min-height: 0;
    padding: 24px 20px 22px;
    border-radius: 18px;
  }

  .feedback__card-title{
    font-size: 19px;
  }

  .feedback__card-text,
  .feedback__card-link{
    font-size: 14px;
  }
}
/* 14. Feedback Section End */

/* 15. Warr Section Start */
.warr{
  padding-top: 100px;
  padding-bottom: 100px;
  background: linear-gradient(90deg, rgba(1, 7, 11, 0) 0%, rgba(1, 7, 11, 0.38) 54%, rgba(1, 7, 11, 0.16) 100%), url("../img/warr-bg.png") center / cover no-repeat;
  overflow: hidden;
}

.warr__wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.warr__left{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-shrink: 0;
  max-width: 445px;
}

.warr__title{
  color: #FFF;
  font-family: var(--font-accent);
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 56.25px */
}

.warr__descr{
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 31px */
}

.warr__right{
  display: flex;
  width: min(581px, 100%);
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.warr__item{
  display: flex;
  align-items: center;
  gap: 30px;
  align-self: stretch;
  padding: 40px;

  border-radius: 25px;
  border: 1px solid #0C4243;
  background: rgba(1, 7, 11, 0.20);
  backdrop-filter: blur(8px);
}

.warr__item img{
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}

.warr__item p{
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%;
}

.warr__left .warr__descr{
  width: 445px;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .warr{
    padding-top: 80px;
    padding-bottom: 80px;
    background-position: center;
  }

  .warr__wrap{
    flex-direction: column;
    align-items: flex-start;
    gap: 44px;
  }

  .warr__left{
    max-width: 680px;
  }

  .warr__title{
    font-size: 40px;
  }

  .warr__right{
    width: 100%;
  }
}

@media (max-width: 767px) {
  .warr{
    padding-top: 56px;
    padding-bottom: 64px;
    background-position: 58% center;
  }

  .warr__wrap{
    gap: 34px;
  }

  .warr__left{
    gap: 22px;
  }

  .warr__title{
    font-size: 34px;
  }

  .warr__descr{
    font-size: 16px;
  }

  .warr__right{
    gap: 16px;
  }

  .warr__item{
    align-items: flex-start;
    gap: 18px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .warr__item img{
    width: 44px;
    height: 44px;
  }

  .warr__item p{
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .warr__title{
    font-size: 30px;
  }

  .warr__item{
    flex-direction: column;
  }
}
/* 15. Warr Section End */

/* 16. Register Section Start */
.register{
  padding-top: 125px;
  padding-bottom: 125px;
}

.register__wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.register__header{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.register__title{
  color: #000;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 56.25px */
}

.register__subtitle{
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 31px */
}

.register__middle{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.register__middle-title{
  color: #000;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 43.75px */
}

.register__middle-wrap{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.register__middle-card{
  position: relative;
  display: flex;
  width: 470px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;

  border-radius: 25px;
  border: 1px solid #D9D9D9;
  background: #FFF;

  padding: 40px;
}

.register__card-label{
  position: absolute;
  top: -18px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: inline-flex;
  min-height: 30px;
  padding: 5px 22px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-radius: 100px;
  border: 1px solid rgba(12, 66, 67, 0.10);
  background: #EBF3F2;
  color: #0C4243;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  white-space: nowrap;
}

.register__card-label-accent{
  border-color: rgba(12, 66, 67, 0.10);
  background: #2FD6C7;
}

.register__card-label-light{
  background: #FFF;
}

.register__middle-card-title {
    align-items: center;
    justify-content: center;
    display: flex;
    color: #000;
    text-align: center;
    font-family: var(--font-accent);
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
    height: 76px;
}

.register__middle-card-item{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.register__middle-card-item-ico{
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 1.114px;
  aspect-ratio: 1/1;
  border-radius: 500px;
  background: #EBF3F2;
}

.register__middle-card-item-text{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.register__middle-card-item-text span{
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 155%; /* 23.25px */
}

.register__middle-card-item-text p{
  color: var(--Color-10, #525252);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 23.25px */
  min-height: 46px;
}

.register__middle-card-acc{
  border-radius: 25px;
  border: 1px solid #D9D9D9;
  background: linear-gradient(0deg, #EBF3F2 0%, #EBF3F2 100%), #FFF;
}

.register__middle-card-item-ico-acc{
  background: #FFF;
}

.register__middle-card-price{
  color: #000;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 50px */
}

.register__middle-card-descr{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.register__middle-card-descr p{
  color: #070000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}

.register__middle-card-btn{
  color: #F9F9F9;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  letter-spacing: 0.32px;

  display: flex;
  width: 220px;
  height: 55px;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 100px;
  background: #0C4243;
  box-shadow: 0 0 0 rgba(47, 214, 199, 0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}

.register__middle-card-btn-white{
  color: #0C4243;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  letter-spacing: 0.32px;

  display: flex;
  width: 220px;
  height: 55px;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  border: 1px solid #0C4243;
  text-decoration: none;
  background: transparent;
  box-shadow: 0 0 0 rgba(47, 214, 199, 0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}

.register__middle-card-btn-group{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.register__middle-card-btn-group-1{
  flex-direction: column;
}

.register__middle-card-btn-group-1 a{
  width: auto;
  align-self: stretch;
}

.register__down{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.register__down-header{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.register__down-header-title{
  color: #000;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 43.75px */
}

.register__down-header-subtitle{
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 31px */
}

.register__down-col-wrap{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.register__down-card{
  position: relative;
  display: flex;
  min-height: 645px;
  padding: 30px;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-direction: column;
  
  border-radius: 25px;
  border: 1px solid #D9D9D9;
  background: #FFF;
}

.register__down-title{
  color: #000;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 31.25px */
  text-transform: uppercase;
}

.register__down-item{
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.register__down-item p{
  color: var(--Color-10, #525252);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 23.25px */
}

.register__down-descr{
  color: var(--Color-10, #525252);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 23.25px */
}

.register__down-btn-group{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.register__down-btn-group a{
  align-self: stretch;
  width: auto;
}

.register__role-dropdown{
  align-self: stretch;
  width: 100%;
  position: relative;
  margin-top: 0;
}

.register__role-dropdown summary{
  list-style: none;
}

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

.register__role-summary{
  position: relative;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
}

.register__role-summary::after{
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.register__role-dropdown[open] .register__role-summary::after{
  transform: rotate(225deg);
}

.register__role-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
  padding: 10px;
  border-radius: 24px;
  border: 1px solid rgba(12, 66, 67, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.register__role-option{
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  box-sizing: border-box;
  border-radius: 18px;
  border: 1px solid rgba(12, 66, 67, 0.24);
  color: #0C4243;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  background: rgba(255, 255, 255, 0.58);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.register__down-card-2{
  border-radius: 25px;
  border: 1px solid #2FD6C7;
  background: linear-gradient(212deg, rgba(47, 214, 199, 0.20) 0%, rgba(47, 214, 199, 0.00) 46.63%), #FFF;
}

.register__down-card-2 .register__down-btn-group{
  margin-top: auto;
  width: 100%;
}

.register__down-card-b2b{
  position: relative;
  display: inline-flex;
  padding: 40px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 25px;
  border: 1px solid #2FD6C7;
  background: linear-gradient(0deg, #062328 0%, #062328 100%), #FFF;

  display: flex;
  width: 530px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.register__down-card-b2b-title{
  color: #FFF;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 31.25px */
  text-transform: uppercase;
}

.register__down-card-b2b-subtitle{
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 23.25px */
}

.register__down-card-b2b-item{
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.register__down-card-b2b-item p{
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 23.25px */
}

.register__down-card-b2b-btn{
  display: flex;
  height: 55px;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 100px;
  background: #FFF;

  color: #062328;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  letter-spacing: 0.32px;

  text-decoration: none;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine){
  .register__middle-card-btn:hover,
  .register__middle-card-btn:focus-visible{
    transform: translateY(-4px);
    background: #0A5554;
    box-shadow: 0 14px 34px rgba(12, 66, 67, 0.24), 0 0 22px rgba(47, 214, 199, 0.18);
  }

  .register__middle-card-btn-white:hover,
  .register__middle-card-btn-white:focus-visible{
    transform: translateY(-4px);
    color: #F9F9F9;
    border-color: #0C4243;
    background: #0C4243;
    box-shadow: 0 14px 34px rgba(12, 66, 67, 0.18), 0 0 22px rgba(47, 214, 199, 0.16);
  }

  .register__role-option:hover,
  .register__role-option:focus-visible{
    transform: translateY(-2px);
    border-color: rgba(47, 214, 199, 0.8);
    background: rgba(47, 214, 199, 0.12);
    box-shadow: 0 10px 24px rgba(12, 66, 67, 0.12);
  }

  .register__down-card-b2b-btn:hover,
  .register__down-card-b2b-btn:focus-visible{
    transform: translateY(-4px);
    background: #E9FFFC;
    box-shadow: 0 14px 36px rgba(255, 255, 255, 0.16), 0 0 26px rgba(47, 214, 199, 0.20);
  }
}

.register__middle-card-btn:active,
.register__middle-card-btn-white:active,
.register__role-option:active,
.register__down-card-b2b-btn:active{
  transform: translateY(-1px) scale(0.99);
}

.reg-group-btns{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.register__middle-card-btn-group .register__middle-card-btn-white{
  width: auto;
}

@media (max-width: 1280px) {
  .register{
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .register__middle-card{
    width: 430px;
  }

  .register__middle-card-btn,
  .register__middle-card-btn-white{
    width: 190px;
  }

  .register__down-col-wrap{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
  }

  .register__down-card,
  .register__down-card-b2b{
    width: auto;
    box-sizing: border-box;
  }

  .register__down-card-b2b{
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .register{
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .register__wrap{
    gap: 64px;
  }

  .register__title{
    font-size: 40px;
  }

  .register__subtitle,
  .register__down-header-subtitle{
    font-size: 18px;
  }

  .register__middle{
    width: 100%;
    gap: 42px;
  }

  .register__middle-title,
  .register__down-header-title{
    font-size: 32px;
  }

  .register__middle-wrap{
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 620px);
  }

  .register__middle-card{
    width: 100%;
    box-sizing: border-box;
  }

  .register__middle-card-btn,
  .register__middle-card-btn-white{
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .register__down{
    width: 100%;
    gap: 42px;
  }
}

@media (max-width: 767px) {
  .register{
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .register__wrap{
    gap: 52px;
  }

  .register__header,
  .register__down-header{
    gap: 16px;
  }

  .register__title{
    font-size: 32px;
    line-height: 118%;
  }

  .register__subtitle,
  .register__down-header-subtitle{
    font-size: 15px;
    line-height: 150%;
  }

  .register__middle-title,
  .register__down-header-title{
    font-size: 28px;
    line-height: 120%;
  }

  .register__middle-wrap,
  .register__down-col-wrap{
    width: 100%;
  }

  .register__middle-card,
  .register__down-card,
  .register__down-card-b2b{
    padding: 28px 20px;
    border-radius: 20px;
  }

  .register__middle-card{
    gap: 24px;
  }

  .register__middle-card-title{
    height: auto;
    min-height: 60px;
    font-size: 24px;
  }

  .register__middle-card svg,
  .register__down-card svg,
  .register__down-card-b2b > svg{
    max-width: 100%;
  }

  .register__middle-card-item,
  .register__down-item,
  .register__down-card-b2b-item{
    gap: 14px;
  }

  .register__middle-card-item-ico{
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
  }

  .register__middle-card-item-text span,
  .register__middle-card-item-text p,
  .register__down-item p,
  .register__down-descr,
  .register__down-card-b2b-item p,
  .register__down-card-b2b-subtitle{
    font-size: 14px;
    line-height: 150%;
  }

  .register__middle-card-price{
    font-size: 34px;
  }

  .register__middle-card-descr{
    gap: 16px;
  }

  .register__middle-card-btn-group,
  .register__down-btn-group{
    flex-direction: column;
    width: 100%;
  }

  .register__middle-card-btn,
  .register__middle-card-btn-white,
  .register__down-card-b2b-btn{
    min-height: 54px;
    height: auto;
    padding: 14px 18px;
    box-sizing: border-box;
    text-align: center;
    line-height: 125%;
  }

  .register__down-col-wrap{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .register__down-card{
    min-height: 0;
    gap: 24px;
  }

  .register__down-card-b2b{
    grid-column: auto;
    gap: 24px;
  }

  .register__down-title,
  .register__down-card-b2b-title{
    font-size: 22px;
  }

  .register__middle-card-btn-group, .register__down-btn-group{
    gap: 10px;
  }

  .reg-group-btns{
    width: 100%;
  }

  .register__middle-card-btn-group .register__middle-card-btn-white{
    width: 100%;
  }
}

@media (max-width: 480px) {
  .register__title{
    font-size: 28px;
  }

  .register__title br{
    display: none;
  }

  .register__middle-title,
  .register__down-header-title{
    font-size: 25px;
  }

  .register__middle-card,
  .register__down-card,
  .register__down-card-b2b{
    padding: 26px 16px;
  }

  .register__middle-card-item{
    flex-direction: column;
  }

  .register__card-label{
    max-width: calc(100% - 32px);
    padding: 5px 16px;
    font-size: 13px;
  }

  .register__middle-card-descr{
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .register__role-list{
    grid-template-columns: 1fr;
  }
}
/* 16. Register Section End */

/* 17. Pop-up Section Start */
/* NEW PAYMENT BLOCK */
.paypack-title { text-align: center; margin-bottom: 18px; }

.paypack-buttons{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}

/* ===== MODAL ===== */
.paymodal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
}
.paymodal.is-open{ display:block; }

.paymodal__overlay{
  position:absolute;
  inset:0;
  background:rgb(var(--color-black-rgb) / 0.55);
}

.paymodal__dialog{
  position:relative;
  width:min(1100px, calc(100% - 32px));
  margin:6vh auto 0;
  background:var(--color-white);
  border-radius:24px;
  padding:40px;
  box-shadow:0 30px 80px rgb(var(--color-black-rgb) / 0.25);
}

.paymodal__close{
  position:absolute;
  top:16px;
  right:18px;
  border:0;
  background:transparent;
  font-size:28px;
  cursor:pointer;
  line-height:1;
  z-index: 9999;
}

.paymodal__head{
  color: var(--Gray-900, var(--color-ink-900));
font-family: var(--font-accent);
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: 145%; /* 34.8px */
letter-spacing: -1px;
}

.paymodal__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:start;
}

.paymodal__form{ display:grid; gap:14px; }

.paymodal__input,
.paymodal__textarea{
  width:100%;
  border:1px solid rgb(var(--color-teal-rgb) / 0.10);
  border-radius:14px;
  padding:16px 16px;
  font-size:16px;
  outline:none;
  background:var(--color-white);
}
.paymodal__textarea{ min-height:160px; resize:vertical; }

.paymodal__side{
  border-radius: 24px;
  border: 1px solid var(--Border, rgb(var(--color-black-rgb) / 0.04));
  background: var(--White, var(--color-white));
  padding:20px;
  background:var(--color-white);
  margin-top: 18px;
}

.paymodal__label{
  color: var(--color-ink-900);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 177.778% */
}
/* .paymodal__label--mt{ margin-top:30px; } */

.paymodal__seg{
  display:flex;
  gap:10px;
  padding: 6px;
  border:1px solid rgb(var(--color-teal-rgb) / 0.12);
  border-radius: 14px;
  border: 1px solid var(--color-line-soft);
  background: var(--color-surface-soft);
    width:max-content;
}
.paymodal__seg-btn{
  border:0;
  background:transparent;
  padding: 10px 16px;
  border-radius:10px;
  cursor:pointer;
  font-size:14px;

  color: var(--Gray-600, var(--color-text-secondary));
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.paymodal__seg-btn.is-active{
  background: var(--color-orange);
  color: var(--White, var(--color-white));
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 175% */
}

.paymodal__radrow{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}
.paymodal__radio{
  display:flex;
  align-items:center;
  gap:8px;
  color: var(--Gray-600, var(--color-text-secondary));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 200% */
}
/* .paymodal__radio input{ transform:translateY(1px); } */

.paymodal__anchor{ display:none; } /* якоря для внешки */

.payment-block{ display:none; margin-top:30px; }
.payment-block.active{ display:block; }

.paymodal__small{
  color: var(--Gray-600, var(--color-text-secondary));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.paymodal__priceRow{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.paymodal__priceMain{
  color: var(--Gray-900, var(--color-ink-900));
  font-family: var(--font-accent);
  font-size: 31px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1px;
}
.paymodal__priceOld{
  color: var(--Gray-600, var(--color-text-secondary));
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 150% */
  text-decoration-line: line-through;
}
.paymodal__priceOld del{ opacity:.85; }

.paymodal__timer{
  margin-top:10px;
  display:flex;
  gap:10px;
  align-items:center;
  font-size:13px;
  color:rgb(var(--color-teal-rgb) / 0.65);
}
.paymodal__timerBox{
  border:1px solid rgb(var(--color-teal-rgb) / 0.10);
  border-radius:12px;
  padding:6px 10px;
  background:var(--color-white);
}

.paymodal__step{ display:none; }
.paymodal__step.is-active{ display:block; }

.paymodal__thx{ display:grid; gap:12px; color:rgb(var(--color-teal-rgb) / 0.75); }
.paymodal__tg{
  display:flex;
  gap:14px;
  align-items:stretch;
  flex-wrap:wrap;
  margin-top:6px;
  width: 100%;
  justify-content: space-between;
}

.paymodal__thx p{
  color: var(--color-ink-900);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 177.778% */
}

.paymodal__thx-b{
  color: var(--Gray-900, var(--color-ink-900));
  font-family: var(--font-accent);
  font-size: 22px !important;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 145%; /* 26.1px */
  letter-spacing: -1px;
}
.paymodal__tgText{ flex:1; min-width:260px; }
.paymodal__tgBtn{
  flex:0 0 340px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-align:center;
  padding:14px 16px;
  border-radius:14px;
  background:var(--color-blue-sky);
  color: var(--color-white);
  font-family: var(--font-accent);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 165%; /* 33px */
  letter-spacing: -1px;
  text-decoration:none;
}

.paymodal__tgText p strong{
  font-weight: bold;
  font-size: 22px;
}

@media (max-width: 900px){
  .paymodal__grid{ grid-template-columns:1fr; }
  .paymodal__dialog{ margin:3vh auto 0; padding:20px; }
}

.no-scroll{ overflow:hidden; }


.no-scroll { overflow: hidden !important; }

.paymodal { position: fixed; inset: 0; display: none; z-index: 9999; }
.paymodal.is-open { display: block; }

.paymodal__overlay { position: absolute; inset: 0; background: rgb(var(--color-black-rgb) / 0.55); }

.paymodal__dialog{
  position: relative;
  width: min(1200px, calc(100% - 40px));
  margin: 40px auto;
  background: var(--color-white);
  border-radius: 24px;
  padding: 32px;
}

.paymodal__close{
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px;
  border: 0; background: transparent;
  font-size: 28px; line-height: 1; cursor: pointer;
}

.paymodal__step{ display:none; }
.paymodal__step.is-active{ display:block; }

.paymodal__grid{
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: start;
}

.paymodal__side{ display:flex; flex-direction:column; gap: 16px; }
.paymodal__input, .paymodal__textarea{
  width: 100%;
  border: 1px solid rgb(var(--color-black-rgb) / 0.08);
  border-radius: 14px;
  padding: 18px 18px;
  font: inherit;
}

.paymodal__textarea{ min-height: 190px; resize: vertical; }

.paymodal__paybox{
  border: 1px solid rgb(var(--color-black-rgb) / 0.08);
  border-radius: 18px;
  padding: 18px;
}

.paymodal__seg{ display:flex; gap: 10px; padding: 8px; border-radius: 16px; border:1px solid rgb(var(--color-black-rgb) / 0.06); }
.paymodal__segbtn{
  flex: 1;
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  background: transparent;
  cursor: pointer;
}
.paymodal__segbtn.is-active{
  background: var(--color-teal);
  color: var(--color-white);
}

.paymodal__radios{ display:flex; gap: 18px; flex-wrap: wrap; margin-top: 12px; }
.paymodal__radio{ display:flex; gap: 10px; align-items:center; }

.payment-block{ display:none; margin-top: 0px; }
.payment-block.active{ display:block; }


.paymodal__priceOld{ opacity: .55; margin-top: 4px; }

.paymodal__timer{
  display:flex; align-items:center; gap: 10px;
  margin-top: 14px;
}
.paymodal__timer .countdown > div,
.paymodal__timer .countdown-full > div{
  border: 1px solid rgb(var(--color-black-rgb) / 0.08);
  border-radius: 12px;
  padding: 8px 10px;
}

.paymodal__submit{
  margin-top: 16px;
  width: 280px;
  height: 56px;
  justify-self: center;
  border: 0;
  border-radius: 14px;
  background: var(--color-teal);
  color: var(--color-white);
  cursor: pointer;
}

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


.paymodal.is-submitting { pointer-events: none; }
.paymodal.is-submitting .paymodal__dialog { pointer-events: auto; }

.paymodal.is-submitting::after{
  content:"";
  position:fixed; inset:0;
  background:rgb(var(--color-black-rgb) / 0.25);
  z-index:9998;
}

.paymodal.is-submitting::before{
  content:"Обработка…";
  position:fixed;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  z-index:9999;

  padding:12px 16px;
  border-radius:12px;
  background:var(--color-white);
  color:var(--color-ink-800);
  font-weight:600;
  box-shadow:0 10px 30px rgb(var(--color-black-rgb) / 0.18);
}
/* step2 поверх, step1 остаётся живым */
.paymodal.is-step2-soft .paymodal__step--2{
  display: block !important;
}

.paymodal.is-step2-soft .paymodal__step--1{
  opacity: 0;
  pointer-events: none;
}

/* если у step2 нет позиционирования — подстрахуем */
.paymodal .paymodal__step--2{
  display: none;
}
.paymodal.is-step2-soft .paymodal__step--2{
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* step2 поверх, step1 живой (не display:none) */
/* .paymodal.is-step2-soft { position: relative; } */

.paymodal .paymodal__step--2 { display: none; }
.paymodal.is-step2-soft .paymodal__step--2{
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* step1 не прячем, только делаем "невидимым" */
.paymodal.is-step2-soft .paymodal__step--1{
  opacity: 0;
  pointer-events: none;
}
/* FIX STEP2: remove any "soft overlay" behavior */
.paymodal.is-step2-soft .paymodal__step--2{
  position: static !important;
  inset: auto !important;
  height: auto !important;
  z-index: auto !important;
}

/* базовая логика шагов */
.paymodal__step{ display:none; }
.paymodal__step.is-active{ display:block; }
.paymodal__step--2{ display:none; }

/* step2 overlay */
.paymodal.is-step2-soft .paymodal__step--2{
  display:block !important;
  position:static !important;  /* ключ */
  inset:auto !important;       /* чтобы не пыталось растянуть */
  z-index:auto !important;
}


/* КЛЮЧЕВОЕ: держим высоту диалога через шаг 1 (он остаётся в потоке) */
.paymodal.is-step2-soft .paymodal__step--1{
  display:block !important;     /* <- не даём схлопнуться */
  visibility:hidden;            /* <- визуально скрыли */
  pointer-events:none;
}

@media (max-width: 1024px) {
  .paymodal__grid > :nth-child(1) { order: 2; }
  .paymodal__grid > :nth-child(2) { order: 1; }
}

@media (max-width: 767px) {
  .paymodal__grid > :nth-child(1) { order: 2; }
  .paymodal__grid > :nth-child(2) { order: 1; }
}

/* === STEP2: реально оверлей и по центру === */


/* step1 оставляем в потоке, но прячем */
.paymodal.is-step2-soft .paymodal__step--1{
  display: block !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* step2 поверх и центрируем */
.paymodal.is-step2-soft .paymodal__step--2.is-active{
  display: flex !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 10 !important;

  justify-content: center;
  align-items: start;

  padding: 32px;
  box-sizing: border-box;

  flex-direction: column;
}

/* чтобы контент не растягивался на весь белый лист */
.paymodal.is-step2-soft .paymodal__thx{
  width: min(720px, 100%);
}

/* FIX: step2 NOT absolute */
.paymodal.is-step2-soft .paymodal__step--2{
  display:block !important;
  position:static !important;
}
.paymodal.is-step2-soft .paymodal__step--1{
  opacity:0;
  pointer-events:none;
}


.col-blue{
  background: var(--color-blue-deep);
  color: var(--color-white);
}

.col-black{
  background: var(--color-ink-850);
  color:var(--color-white);
}

.block-variant-1-active, .block-variant-2-active, .block-variant-3-active {
    gap: 23px;
    flex-direction: column;
    display: FLEX;
}

.star{
  position: absolute;
  z-index: -1;
}

.star-1 {
  bottom: -50px;
  left: -10px;
}

.star-2 {
    top: -140px;
    right: 20px;
}

.star-3 {
    z-index: -1;
    top: -40px;
    left: -50px;
}
@media (max-width: 768px){
  .distance-xxs{
    padding-top: 0;
  }
  .star{
    display: none;
  }
}

/* ===== payModalBasic / desktop scroll fix ===== */
.paymodal {
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

.paymodal__dialog {
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* чтобы крестик не уезжал при скролле контента */
.paymodal__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
}


@media (max-width: 767px) {
  .paymodal {
    padding: 12px;
  }

  .paymodal__dialog {
    max-height: calc(100vh - 24px);
  }
}

@media (max-width: 767px) {
    .paymodal__scrollhint {
        width: 320px;
        position: relative;
    }
}
/* NEW PAYMENT BLOCK */


/* =========================
   PAYMODAL HARD FIX
   ДОБАВИТЬ В САМЫЙ КОНЕЦ CSS
========================= */

#payModalBasic.paymodal,
#payModalTrainer.paymodal,
#payModalb2b.paymodal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  padding: 0;
  overflow: hidden;
}

#payModalBasic.paymodal.is-open,
#payModalTrainer.paymodal.is-open,
#payModalb2b.paymodal.is-open{
  display: block;
}

#payModalBasic .paymodal__overlay,
#payModalTrainer .paymodal__overlay,
#payModalb2b .paymodal__overlay{
  position: absolute;
  inset: 0;
  background: rgb(var(--color-black-rgb) / 0.58);
}

#payModalBasic .paymodal__dialog,
#payModalTrainer .paymodal__dialog,
#payModalb2b .paymodal__dialog{
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 32px));
  max-height: min(88vh, calc(100dvh - 32px));
  margin: 16px auto;
  padding: 32px;
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 30px 80px rgb(var(--color-black-rgb) / 0.25);

  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

#payModalBasic .paymodal__close,
#payModalTrainer .paymodal__close,
#payModalb2b .paymodal__close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
}

#payModalBasic .paymodal__head,
#payModalTrainer .paymodal__head,
#payModalb2b .paymodal__head{
  padding-right: 44px;
  margin-bottom: 18px;
}

#payModalBasic .paymodal__grid,
#payModalTrainer .paymodal__grid,
#payModalb2b .paymodal__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
}

#payModalBasic .paymodal__form,
#payModalBasic .btn-2026,
#payModalBasic #form_242368_1,
#payModalTrainer .paymodal__form,
#payModalTrainer .btn-2026,
#payModalTrainer #form_242368_1,
#payModalb2b .paymodal__form,
#payModalb2b .btn-2026,
#payModalb2b #form_242368_1{
  min-width: 0;
}

#payModalBasic .paymodal__side,
#payModalTrainer .paymodal__side,
#payModalb2b .paymodal__side{
  margin-top: 0;
  min-width: 0;
  position: sticky;
  top: 0;
  align-self: start;
}

#payModalBasic .paymodal__seg,
#payModalTrainer .paymodal__seg,
#payModalb2b .paymodal__seg{
  width: auto;
  max-width: 100%;
}

#payModalBasic .paymodal__seg-btn,
#payModalTrainer .paymodal__seg-btn,
#payModalb2b .paymodal__seg-btn{
  flex: 1 1 0;
  min-width: 0;
}

#payModalBasic .paymodal__radrow,
#payModalTrainer .paymodal__radrow,
#payModalb2b .paymodal__radrow{
  gap: 10px 14px;
}

#payModalBasic .paymodal__label--mt,
#payModalTrainer .paymodal__label--mt,
#payModalb2b .paymodal__label--mt{
  font-size: 15px;
  line-height: 1.55;
}

#payModalBasic .payment-block,
#payModalTrainer .payment-block,
#payModalb2b .payment-block{
  margin-top: 20px;
}

#payModalBasic .paymodal__priceMain,
#payModalTrainer .paymodal__priceMain,
#payModalb2b .paymodal__priceMain{
  word-break: break-word;
}

#payModalBasic iframe[src*="formdesigner"],
#payModalTrainer iframe[src*="formdesigner"],
#payModalb2b iframe[src*="formdesigner"]{
  display: block;
  width: 100% !important;
  max-width: 100%;
  border: 0;
}

/* step 2 — нормальный поток, без absolute/fixed каши */
#payModalBasic .paymodal__step,
#payModalTrainer .paymodal__step,
#payModalb2b .paymodal__step{
  display: none;
}

#payModalBasic .paymodal__step.is-active,
#payModalTrainer .paymodal__step.is-active,
#payModalb2b .paymodal__step.is-active{
  display: block;
}

#payModalBasic .paymodal__step--2,
#payModalTrainer .paymodal__step--2,
#payModalb2b .paymodal__step--2{
  position: static !important;
  inset: auto !important;
  height: auto !important;
  overflow: visible !important;
}

#payModalBasic.is-step2-soft .paymodal__step--1,
#payModalTrainer.is-step2-soft .paymodal__step--1,
#payModalb2b.is-step2-soft .paymodal__step--1{
  display: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

#payModalBasic.is-step2-soft .paymodal__step--2.is-active,
#payModalTrainer.is-step2-soft .paymodal__step--2.is-active,
#payModalb2b.is-step2-soft .paymodal__step--2.is-active{
  display: block !important;
}

/* ---------- TABLET ---------- */
@media (max-width: 1024px){
  #payModalBasic .paymodal__dialog,
  #payModalTrainer .paymodal__dialog,
  #payModalb2b .paymodal__dialog{
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    margin: 12px auto;
    padding: 24px;
    border-radius: 22px;
  }

  #payModalBasic .paymodal__grid,
  #payModalTrainer .paymodal__grid,
  #payModalb2b .paymodal__grid{
    grid-template-columns: 1fr;
  }

  #payModalBasic .paymodal__grid > :nth-child(1),
  #payModalTrainer .paymodal__grid > :nth-child(1),
  #payModalb2b .paymodal__grid > :nth-child(1){
    order: 2;
  }

  #payModalBasic .paymodal__grid > :nth-child(2),
  #payModalTrainer .paymodal__grid > :nth-child(2),
  #payModalb2b .paymodal__grid > :nth-child(2){
    order: 1;
  }

  #payModalBasic .paymodal__side,
  #payModalTrainer .paymodal__side,
  #payModalb2b .paymodal__side{
    position: static;
    top: auto;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 767px){
  #payModalBasic.paymodal,
  #payModalTrainer.paymodal,
  #payModalb2b.paymodal{
    padding: 0;
  }

  #payModalBasic .paymodal__dialog,
  #payModalTrainer .paymodal__dialog,
  #payModalb2b .paymodal__dialog{
    width: auto;
    height: 90dvh;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
    padding: 48px 16px 22px;
    box-shadow: none;
  }

  #payModalBasic .paymodal__close,
  #payModalTrainer .paymodal__close,
  #payModalb2b .paymodal__close{
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  #payModalBasic .paymodal__head,
  #payModalTrainer .paymodal__head,
  #payModalb2b .paymodal__head{
    padding-right: 38px;
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.35;
    letter-spacing: -.5px;
  }

  #payModalBasic .paymodal__grid,
  #payModalTrainer .paymodal__grid,
  #payModalb2b .paymodal__grid{
    gap: 16px;
  }

  #payModalBasic .paymodal__side,
  #payModalTrainer .paymodal__side,
  #payModalb2b .paymodal__side{
    padding: 16px;
    border-radius: 18px;
  }

  #payModalBasic .paymodal__label,
  #payModalTrainer .paymodal__label,
  #payModalb2b .paymodal__label{
    font-size: 16px;
    line-height: 1.45;
  }

  #payModalBasic .paymodal__seg,
  #payModalTrainer .paymodal__seg,
  #payModalb2b .paymodal__seg{
    padding: 4px;
    border-radius: 12px;
  }

  #payModalBasic .paymodal__seg-btn,
  #payModalTrainer .paymodal__seg-btn,
  #payModalb2b .paymodal__seg-btn{
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.2;
  }

  #payModalBasic .paymodal__radrow,
  #payModalTrainer .paymodal__radrow,
  #payModalb2b .paymodal__radrow{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    align-items: start;
  }

  #payModalBasic .paymodal__radio,
  #payModalTrainer .paymodal__radio,
  #payModalb2b .paymodal__radio{
    font-size: 14px;
    line-height: 1.35;
    align-items: center;
  }

  #payModalBasic .paymodal__small,
  #payModalTrainer .paymodal__small,
  #payModalb2b .paymodal__small{
    font-size: 14px;
    line-height: 1.4;
  }

  #payModalBasic .paymodal__priceMain,
  #payModalTrainer .paymodal__priceMain,
  #payModalb2b .paymodal__priceMain{
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -.5px;
  }

  #payModalBasic .paymodal__thx p,
  #payModalTrainer .paymodal__thx p,
  #payModalb2b .paymodal__thx p{
    font-size: 16px;
    line-height: 1.55;
  }

  #payModalBasic .paymodal__thx-b,
  #payModalTrainer .paymodal__thx-b,
  #payModalb2b .paymodal__thx-b{
    font-size: 20px !important;
    line-height: 1.35 !important;
    letter-spacing: -.5px;
  }

  #payModalBasic .paymodal__tg,
  #payModalTrainer .paymodal__tg,
  #payModalb2b .paymodal__tg{
    gap: 12px;
  }

  #payModalBasic .paymodal__tgText,
  #payModalTrainer .paymodal__tgText,
  #payModalb2b .paymodal__tgText{
    min-width: 0;
  }

  #payModalBasic .paymodal__tgBtn,
  #payModalTrainer .paymodal__tgBtn,
  #payModalb2b .paymodal__tgBtn{
    flex: 1 1 auto;
    width: 100%;
    min-height: 64px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 18px;
    line-height: 1.3;
  }

  #payModalBasic .paymodal__tgBtn-title,
  #payModalTrainer .paymodal__tgBtn-title,
  #payModalb2b .paymodal__tgBtn-title{
    text-align: left;
  }

  #payModalBasic .paymodal__tgBtn-ico svg,
  #payModalTrainer .paymodal__tgBtn-ico svg,
  #payModalb2b .paymodal__tgBtn-ico svg{
    width: 44px;
    height: 44px;
  }
}

/* formdesigner safety */
@media (max-width: 767px){
  #payModalBasic #form_242368_1,
  #payModalBasic #form_242368_1 > div,
  #payModalBasic #form_242368_1 iframe,
  #payModalTrainer #form_242368_1,
  #payModalTrainer #form_242368_1 > div,
  #payModalTrainer #form_242368_1 iframe,
  #payModalb2b #form_242368_1,
  #payModalb2b #form_242368_1 > div,
  #payModalb2b #form_242368_1 iframe{
    max-width: 100% !important;
  }
}

html body .paymodal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  padding: 0;
  overflow: hidden;
}

html body .paymodal.is-open{
  display: block;
}

html body .paymodal .paymodal__overlay{
  position: absolute;
  inset: 0;
  background: rgb(var(--color-black-rgb) / 0.58);
}

html body .paymodal .paymodal__dialog{
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 32px));
  max-height: min(88vh, calc(100dvh - 32px));
  margin: 16px auto;
  padding: 32px;
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 30px 80px rgb(var(--color-black-rgb) / 0.25);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

html body .paymodal .paymodal__close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
}

html body .paymodal .paymodal__head{
  padding-right: 44px;
  margin-bottom: 18px;
}

html body .paymodal .paymodal__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
}

html body .paymodal .paymodal__form,
html body .paymodal .btn-2026,
html body .paymodal [data-form-slot]{
  min-width: 0;
}

html body .paymodal .paymodal__side{
  margin-top: 0;
  min-width: 0;
  position: sticky;
  top: 0;
  align-self: start;
}

html body .paymodal .paymodal__seg{
  width: auto;
  max-width: 100%;
}

html body .paymodal .paymodal__seg-btn{
  flex: 1 1 0;
  min-width: 0;
}

html body .paymodal .paymodal__radrow{
  gap: 10px 14px;
}

html body .paymodal .paymodal__label--mt{
  font-size: 15px;
  line-height: 1.55;
}

html body .paymodal .payment-block{
  margin-top: 20px;
}

html body .paymodal .paymodal__priceMain{
  word-break: break-word;
}

html body .paymodal iframe[src*="formdesigner"]{
  display: block;
  width: 100% !important;
  max-width: 100%;
  border: 0;
}

html body .paymodal .paymodal__step{
  display: none;
}

html body .paymodal .paymodal__step.is-active{
  display: block;
}

html body .paymodal .paymodal__step--2{
  position: static !important;
  inset: auto !important;
  height: auto !important;
  overflow: visible !important;
}

html body .paymodal.is-step2-soft .paymodal__step--1{
  display: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

html body .paymodal.is-step2-soft .paymodal__step--2.is-active{
  display: block !important;
  position: static !important;
  inset: auto !important;
  height: auto !important;
  overflow: visible !important;
}

@media (max-width: 1024px){
  html body .paymodal .paymodal__dialog{
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    margin: 12px auto;
    padding: 24px;
    border-radius: 22px;
  }

  html body .paymodal .paymodal__grid{
    grid-template-columns: 1fr;
  }

  html body .paymodal .paymodal__grid > :nth-child(1){
    order: 2;
  }

  html body .paymodal .paymodal__grid > :nth-child(2){
    order: 1;
  }

  html body .paymodal .paymodal__side{
    position: static;
    top: auto;
  }
}

@media (max-width: 767px){
  html body .paymodal{
    padding: 0;
  }

  html body .paymodal .paymodal__dialog{
    width: auto;
    height: 90dvh;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
    padding: 48px 16px 22px;
    box-shadow: none;
  }

  html body .paymodal .paymodal__close{
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  html body .paymodal .paymodal__head{
    padding-right: 38px;
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.35;
    letter-spacing: -.5px;
  }

  html body .paymodal .paymodal__grid{
    gap: 16px;
  }

  html body .paymodal .paymodal__side{
    padding: 16px;
    border-radius: 18px;
  }

  html body .paymodal .paymodal__label{
    font-size: 16px;
    line-height: 1.45;
  }

  html body .paymodal .paymodal__seg{
    padding: 4px;
    border-radius: 12px;
  }

  html body .paymodal .paymodal__seg-btn{
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.2;
  }

  html body .paymodal .paymodal__radrow{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    align-items: start;
  }

  html body .paymodal .paymodal__radio{
    font-size: 14px;
    line-height: 1.35;
    align-items: center;
  }

  html body .paymodal .paymodal__small{
    font-size: 14px;
    line-height: 1.4;
  }

  html body .paymodal .paymodal__priceMain{
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -.5px;
  }

  html body .paymodal .paymodal__thx p{
    font-size: 16px;
    line-height: 1.55;
  }

  html body .paymodal .paymodal__thx-b{
    font-size: 20px !important;
    line-height: 1.35 !important;
    letter-spacing: -.5px;
  }

  html body .paymodal .paymodal__tg{
    gap: 12px;
  }

  html body .paymodal .paymodal__tgText{
    min-width: 0;
  }

  html body .paymodal .paymodal__tgBtn{
    flex: 1 1 auto;
    width: 100%;
    min-height: 64px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 18px;
    line-height: 1.3;
  }

  html body .paymodal .paymodal__tgBtn-title{
    text-align: left;
  }

  html body .paymodal .paymodal__tgBtn-ico svg{
    width: 44px;
    height: 44px;
  }

  html body .paymodal [data-form-slot],
  html body .paymodal [data-form-slot] > div,
  html body .paymodal [data-form-slot] iframe{
    max-width: 100% !important;
  }
}

.countdown{
  display: none !important;
}

/* Hard accordion visibility reset */
.program__acc-content,
.choice__card-item-content{
  display: none !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
}

.program__acc.is-open .program__acc-content{
  display: flex !important;
  margin-top: 18px !important;
}

.choice__card-item.is-open .choice__card-item-content{
  display: block !important;
  padding-top: 14px !important;
}

.program__acc-content,
.program__acc-content *,
.program__acc-content-item,
.program__acc-content-item *{
  opacity: 1 !important;
  visibility: visible !important;
}

.program__acc-content-item span{
  display: block !important;
  color: #000 !important;
}

.program__acc-content-item p{
  display: block !important;
  color: #525252 !important;
}

.choice__card-item-content,
.choice__card-item-content *,
.choice__card-item-content-inner,
.choice__card-item-content-inner *{
  opacity: 1 !important;
  visibility: visible !important;
}

.choice__card-item-content-inner span,
.choice__card-item-content-row span{
  display: block !important;
  color: #F9F9F9 !important;
}

.choice__card-item-content-inner p,
.choice__card-item-content-row p{
  display: block !important;
  color: #A4A7AE !important;
}

.program__acc-head,
.choice__card-item-head{
  appearance: none !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  font: inherit !important;
}

.program__acc-head{
  width: 100% !important;
}

.choice__card-item-head{
  width: 100% !important;
}


@media (max-width: 390px){
  .info__main-content-left-row-item{
    width: auto;
  }
/*   .acc-btn{
    padding: 5px;
  } */
  .options__right-card {
        height: 900px;
        gap: 18px;
  }
}
/* 17. Pop-up Section End */

/* 17. Footer Section Start */
.hero + footer.distance-xxs{
  padding-top: 0;
}

footer{
  background: var(--color-surface-muted);
}

.footer__wrap{
  gap: 50px;
  display: flex;
  padding: 40px 40px 0 40px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-radius: 24px;
  background: var(--color-ink-900);
}

.footer__header-wrap{
  display: flex;
  align-items: flex-start;
  gap: 80px;
  align-self: stretch;
  justify-content: space-between;
}

.footer__col{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 180px;
}

.footer__col-main{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
  width: 230px;
}

.footer__col-main-title{
  color: var(--white, var(--color-white));
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
}

.footer__col-main-btns{
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}

.footer__btn{
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgb(var(--color-white-rgb) / 0.10);
  background: var(--color-ink-700);
}

.footer__col-title{
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.5px; /* 150% */
  background: var(--color-orange);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__col-content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer__col-content-link{
  color: var(--white, var(--color-white));
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.footer__col-acc{
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid rgb(var(--color-white-rgb) / 0.10);
  background: var(--color-ink-700);
}

.footer__col-acc-title{
  color: var(--white, var(--color-white));
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 133.333% */
}

.footer__col-acc-btn{
  display: flex;
  padding: 16px 48.2px 16px 48.21px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  border-radius: 10px;
  border: 1px solid var(--color-orange);
  background: var(--color-ink-900);
  text-decoration: none;
}

.footer__col-acc-btn span{
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  background: var(--color-line-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.footer__footer{
  display: flex;
  padding: 24px 0;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  border-top: 1px solid var(--color-text-secondary);
}

.footer__footer p{
  color: var(--white, var(--color-white));
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.footer__footer-btn{
  color: var(--white, var(--color-white));
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

@media (max-width: 1024px) {
  .footer__header-wrap{
    flex-wrap: wrap;
  }
}

/* mobile */
@media (max-width: 768px) {
  .footer__header-wrap, .footer__footer{
    flex-direction: column;
  }
/*   .footer__wrap{
        padding: 40px 0px 0 0px;
  } */
  .footer__col-main, .footer__col, .footer__col-acc{
    width: auto;
  }
  .footer__header-wrap{
    gap: 40px;
  }
}
/* 16. Footer Section End */

/* =================================== */
/* =================================== */
/* =================================== */
/* Danylo Oliinyk - https://iamdev.lol/ */
/* =====JULY 2026 For Statoplan =====*/
/* =================================== */
/* =================================== */
/* =================================== */
