/* =================================== */
/* =================================== */
/* =================================== */
/* D. O. 2026 */
/* =====AUGUST 2026 For Statoplan =====*/
/* =================================== */
/* =================================== */
/* HTML CSS JS GSAP */
/* =================================== */






/* 01. Header Section Start */
.hero{
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.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{
    display: flex;
    height: 45px;
    padding: 5px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;

    border-radius: 10px;
    border: 1px solid transparent;
    background: linear-gradient(90deg, #123DC8 0%, #0D72FF 100%);
    text-decoration: none;
    color: #FFF;
    font-variant-numeric: lining-nums tabular-nums;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 14px */
    letter-spacing: 0.28px;
    text-transform: uppercase;
}

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;
}

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

/* 02. Hero Section Start */
.hero{
    padding-top: 250px;
    padding-bottom: 200px;
}

.hero__bg{
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 82%, transparent 100%);
}

.hero__bg-img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
    transform: scale(1.08);
    filter: blur(2px);
}

.hero .container{
    position: relative;
    z-index: 1;
}

.hero__wrap{
    display: flex;
    flex-direction: column;
    gap: 66px;
    align-items: center;
}

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

h4{
    color: #ADADAD;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 145%; /* 29px */
}

h3{
    display: flex;
    gap: 50px;
    align-items: center;
}

h3 p{
    color: #FFF;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

h2{
    color: #FFF;
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 145%; /* 50.75px */
    text-transform: uppercase;
}

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

h1 br{
    display: none;
}

.acc-col{
    display: flex;
    width: 350px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    background: linear-gradient(90deg, #123DC8 0%, #0D72FF 100%);

    text-decoration: none !important;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.hero__promo{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.hero__promo::before{
    content: "";
    position: absolute;
    inset: -24px -16px;
    z-index: -1;
    background: #00000B;
    mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    pointer-events: none;
}

.hero__promo-item{
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.hero__promo-item p{
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.hero__promo-item img{
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.hero__promo-item p br{
    display: inline;
}
/* 02. Hero Section End */

/* 02. Hero Section Responsive Start */
@media (max-width: 1240px){
    .hero__text{
        width: 100%;
        max-width: 860px;
    }

    h1{ font-size: 64px; }
    h2{ font-size: 28px; }
}

@media (max-width: 1024px){
    .hero{
        padding-top: 170px;
        padding-bottom: 120px;
    }

    .hero__wrap{ gap: 44px; }

    .hero__text{
        max-width: 640px;
        gap: 22px;
    }

    h4{ font-size: 17px; }
    h1{ font-size: 48px; }
    h2{ font-size: 22px; }

    h3{ gap: 14px; }
    h3 p{ font-size: 17px; }
    .h3__ico svg{ width: 26px; height: 29px; }

    .acc-col{
        width: 300px;
        height: 32px;
        font-size: 16px;
    }

    .hero__promo{
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 32px;
        column-gap: 24px;
    }

    .hero__promo-item{
        flex: 0 1 calc(33.333% - 24px);
        min-width: 150px;
    }

    .hero__promo-item img{ width: 56px; height: 56px; }
    .hero__promo-item p{ font-size: 15px; }

    .hero__promo-div{ display: none; }
}

@media (max-width: 768px){
    .hero{
        padding-top: 150px;
        padding-bottom: 90px;
    }

    .hero__wrap{ gap: 36px; }

    .hero__text{ gap: 18px; }

    h4{ font-size: 15px; line-height: 135%; }
    h1{ font-size: 52px; }
    h1 br{ display: inline; }
    h2{ font-size: 19px; line-height: 140%; }

    h3{
        flex-direction: column;
        gap: 8px;
    }
    h3 p{ font-size: 15px; }

    .hero__btn{
        width: 100%;
    }

    .acc-col{
        width: auto;
        height: auto;
        padding: 16px 20px;
        font-size: 16px;
    }

    .hero__promo{
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .hero__promo-item{
        position: relative;
        flex: none;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 16px;
        padding: 18px 4px;
        border-bottom: 1px solid rgb(255 255 255 / 0.08);
    }

    .hero__promo-item:first-child{
        border-top: 1px solid rgb(255 255 255 / 0.08);
    }

    .hero__promo-item p{
        position: relative;
        z-index: 1;
        text-align: left;
        font-size: 15px;
    }

    .hero__promo-item img{
        position: relative;
        z-index: 1;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    .hero__promo-item p br{
        display: inline;
    }

    .hero__bg-img{
        object-position: 28% 18%;
        transform: scale(1.35);
    }

    .hero__bg{
        mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 46%, transparent 78%);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 46%, transparent 78%);
    }

    .hero__promo::before{
        display: none;
    }
}

@media (max-width: 480px){
    .hero{
        padding-top: 130px;
        padding-bottom: 70px;
    }

    h1{ font-size: 44px; }
    h2{ font-size: 16px; }
    h4{ font-size: 13px; }

    .h3__ico svg{ width: 22px; height: 25px; }

    .acc-col{ max-width: 100%; }
}
/* 02. Hero Section Responsive End */

/* 03. About Section Start */
.about{
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding-top: 10px;
    padding-bottom: 140px;
}

.about__bg{
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 36%, transparent 60%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 36%, transparent 60%);
}

.about__bg-img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 0%;
}

.about__inner{
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

.about__head{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    text-align: center;
    margin-bottom: 90px;
}

.about__eyebrow{
    color: #FFF;
    text-align: center;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #547DFF;
    font-family: Manrope;
    font-size: 30px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    text-transform: uppercase;
}

.about__title{
    color: #FFF;
    text-align: center;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.about__stats{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 90px;
}

.about__stat{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.about__stat-value{
    color: #FFF;
    text-align: center;
    font-family: var(--font-accent);
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 80px */
}

.about__stat-suffix{
    color: #FFF;
    text-align: center;
    font-family: var(--font-accent);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 80px */
}

.about__stat-text{
    color: #ADADAD;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 29px */
}

.about__callout{
    display: flex;
    padding: 50px;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    border-radius: 25px;
    border: 1px solid #547DFF;
    background: rgba(0, 0, 11, 0.80);
}

.about__callout-icon{
    flex-shrink: 0;
    width: 160px;
}

.about__callout-icon img{
    display: block;
    width: 346px;
    height: 160px;
    height: auto;
    aspect-ratio: 1536 / 1024;
}

.about__callout-text p{
    color: #FFF;
    font-family: var(--font-accent);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 50px */
    text-transform: uppercase;
}

.about__callout-lead{
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.about__callout-accent{
    color: var(--color-blue-social);
}

.about__video{
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.08);
    background: #000;
    cursor: pointer;
    margin-top: 80px;
}

.about__video::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(38% 55% at 50% 50%, rgb(0 0 11 / 0.35), transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.about__video-el{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__video-play{
    position: absolute;
    z-index: 2;
    inset: 0;
    margin: auto;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.about__video-play:hover{
    transform: scale(1.08);
}

.about__video.is-playing .about__video-play{
    opacity: 0;
    pointer-events: none;
}

.about__video.is-playing::before{
    opacity: 0;
}

.dop{
    color: #FFF !important;
    font-size: 25px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 145%!important; /* 36.25px */
    text-transform: none !important;
    width: 622px;
}
/* 03. About Section End */

/* 03. About Section Responsive Start */
@media (max-width: 1240px){
    .about__title{ font-size: 44px; }
    .about__stat-value{ font-size: 56px; }
    .about__callout{ gap: 28px; padding: 26px 36px; }
    .about__callout-icon{ display: none !important; }
}

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

    .about__head{ margin-bottom: 64px; gap: 12px; }
    .about__eyebrow{ font-size: 14px; letter-spacing: 2px; }
    .about__title{ font-size: 36px; }

    .about__stats{
        gap: 32px 24px;
        margin-bottom: 64px;
    }

    .about__stat-value{ font-size: 46px; }
    .about__stat-suffix{ font-size: 20px; }
    .about__stat-text{ font-size: 15px; max-width: 240px; }

    .about__callout{
        border-radius: 20px;
        margin-bottom: 64px;
    }

    .about__callout-lead{ font-size: 22px; }
    .about__callout-text p{ font-size: 17px !important; }

    .about__video-play{ width: 72px; height: 72px; }
    .dop{
        width: auto;
    }
    .about__video{
        margin-top: 0px;
    }
}

@media (max-width: 768px){
    .about{ padding-bottom: 80px; }

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

    .about__stats{
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 56px;
    }

    .about__stat-value{ font-size: 42px; }
    .about__stat-text{ max-width: 320px; }

    .about__callout{
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 28px 24px;
        margin-bottom: 56px;
    }

    .about__callout-icon{ width: 110px; }
    .about__callout-lead{ font-size: 20px; }
    .about__callout-text p{ font-size: 16px; }

    .about__video{ border-radius: 16px; }
}

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

    .about__stat-value{ font-size: 38px; }
    .about__stat-suffix{ font-size: 18px; padding-bottom: 5px; }

    .about__callout-lead{ font-size: 18px; }
    .about__callout-icon{ width: 90px; }

    .about__video-play{ width: 60px; height: 60px; }
}
/* 03. About Section Responsive End */

/* 04. Stats Section Start */
.stats{
    position: relative;
    padding-bottom: 140px;
}

.stats__head{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 60px;
}

.stats__frame{
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    cursor: default;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.stats__track{
    display: flex;
    align-items: center;
    width: max-content;
    gap: 20px;
    will-change: transform;
}

.stats__slide{
    position: relative;
    flex-shrink: 0;
    height: 300px;
    border-radius: 18px;
    overflow: hidden;
    background: #15161a;
    box-shadow: 0 24px 48px rgba(0, 0, 0, .35);
}

.stats__img{
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}
/* 04. Stats Section End */

/* 04. Stats Section Responsive Start */
@media (max-width: 1240px){
    .stats__head .about__title{ font-size: 44px; }

    .stats__slide{ height: 260px; }
}

@media (max-width: 1024px){
    .stats{ padding-bottom: 100px; }

    .stats__head{ margin-bottom: 40px; }
    .stats__head .about__eyebrow{ font-size: 22px; }
    .stats__head .about__title{ font-size: 34px; }

    .stats__frame{
        width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 18px;
        background: #000;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .stats__track{
        width: 100%;
        gap: 0;
        cursor: grab;
        touch-action: pan-y;
    }

    .stats__track:active{
        cursor: grabbing;
    }

    .stats__slide{
        flex: 0 0 100%;
        width: auto;
        height: 70vh;
        max-height: 520px;
        border-radius: 0;
        box-shadow: none;
        background: #000;
    }

    .stats__img{
        width: 100%;
        height: 100%;
        object-fit: contain;
        pointer-events: auto;
    }
}

@media (max-width: 768px){
    .stats{ padding-bottom: 80px; }

    .stats__head{ margin-bottom: 32px; }
    .stats__head .about__eyebrow{ font-size: 16px; }
    .stats__head .about__title{ font-size: 26px; }

    .stats__frame{ border-radius: 14px; }

    .stats__slide{ height: 60vh; }
}

@media (max-width: 480px){
    .stats__head .about__title{ font-size: 22px; }
}
/* 04. Stats Section Responsive End */

/* 05. Take Section Start */
.take{
    position: relative;
    padding-top: 40px;
    padding-bottom: 160px;
}

.take__bg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 130%;
    z-index: -1;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 70%, transparent 100%);
}

.take__bg-img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
}

.take .container{
    position: relative;
    z-index: 1;
}

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

.take__col-text{
    width: 460px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.take__eyebrow{
    color: #547DFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.take__title{
    color: #FFF;
    text-align: start;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 115%; /* 57.5px */
    text-transform: uppercase;
}

.take__desc{
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.take__btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    background: linear-gradient(90deg, #123DC8 0%, #0D72FF 100%);

    margin-top: 40px;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.take__btn-mobile{
    display: none;
}

.take__col-list{
    flex: 0 1 640px;
    min-width: 0;
}

.take__list{
    position: relative;
    display: flex;
    flex-direction: column;
    list-style: none;
}

.take__list::before{
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 12px;
    width: 1px;
    background: rgb(84 125 255 / 0.3);
}

.take__item{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 40px;
}

.take__item:last-child{
    padding-bottom: 0;
}

.take__item p{
    color: #ADADAD;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
}

.take__item p strong{
    color: #ffffff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 145%;
}

.take__marker{
    position: relative;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.35s ease;
}

.take__item.is-active .take__marker{
    border-color: #4E8BFF;
}

.take__marker svg{
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.take__marker-dot{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4E8BFF;
    transform: translate(-50%, -50%) scale(0.4);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.take__item.is-active .take__marker svg{
    opacity: 0;
    transform: scale(0.4);
}

.take__item.is-active .take__marker-dot{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
/* 05. Take Section End */

/* 05. Take Section Responsive Start */
@media (max-width: 1240px){
    .take__frame{ gap: 40px; padding: 50px; }
    .take__col-text{ flex-basis: 320px; }
    .take__title{ font-size: 28px; }
}

@media (max-width: 1024px){
    .take{ padding-top: 20px; padding-bottom: 100px; }

    .take__frame{
        flex-direction: column;
        gap: 44px;
        padding: 40px 32px;
        border-radius: 18px;
    }

    .take__col-text{ flex-basis: auto; width: 100%; max-width: 100%; }
    .take__eyebrow{ font-size: 16px; }
    .take__title{ font-size: 26px; }
    .take__desc{ font-size: 15px; }

    .take__col-text > .take__btn{ display: none; }

    .take__btn-mobile{
        display: flex;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-top: 0;
    }

    .take__col-list{ flex: 1 1 100%; }
    .take__item p{ font-size: 18px; }
}

@media (max-width: 768px){
    .take{ padding-bottom: 80px; }

    .take__frame{ padding: 0px; }
    .take__title{ font-size: 22px; }

    .take__item{ gap: 16px; padding-bottom: 30px; }
    .take__list::before{ left: 10px; }
    .take__item p strong{font-size: 18px;}
}

@media (max-width: 480px){
    .take__btn{ width: 100%; box-sizing: border-box; }
}
/* 05. Take Section Responsive End */

/* 06. Kurs Section Start */
.kurs{
    position: relative;
    padding-bottom: 160px;
}

.kurs__head{
    max-width: 960px;
    margin: 0 auto 70px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.kurs__title{
    color: #547DFF;
    text-align: center;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.kurs__subtitle{
    color: #FFF;
    text-align: center;
    width: 912px;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.kurs__cols{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    margin-bottom: 70px;
}

.kurs__col{
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 24px;
}

.kurs__ico{
    flex-shrink: 0;
    width: 163px;
    height: 159px;
    object-fit: contain;
}

.kurs__col-text{
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.kurs__col-title{
    display: block;
    color: #FFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.kurs__col-text p{
    color: #ADADAD;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 21.75px */
}

.kurs__divider{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kurs__cta{
    display: flex;
    justify-content: center;
}
/* 06. Kurs Section End */

/* 06. Kurs Section Responsive Start */
@media (max-width: 1240px){
    .kurs__title{ font-size: 34px; }
    .kurs__subtitle{ font-size: 18px; }
}

@media (max-width: 1024px){
    .kurs{ padding-bottom: 100px; }

    .kurs__head{ max-width: 100%; margin-bottom: 50px; }
    .kurs__title{ font-size: 28px; }
    .kurs__subtitle{ width: 100%; max-width: 100%; font-size: 16px; }

    .kurs__cols{ gap: 24px; margin-bottom: 50px; }
    .kurs__ico{ width: 72px; height: 72px; }
    .kurs__col-title{ font-size: 18px; }
}

@media (max-width: 768px){
    .kurs{ padding-bottom: 80px; }

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

    .kurs__divider{ display: none; }

    .kurs__col{ max-width: 100%; }
}

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

    .kurs__cta .btn{ width: 100%; box-sizing: border-box; }
}
/* 06. Kurs Section Responsive End */

/* 07. Why Section Start */
.why{
    position: relative;
    padding-bottom: 160px;
}

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

.why__media{
    flex: 0 0 460px;
}

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

.why__content{
    flex: 1;
    min-width: 0;
    max-width: 600px;
}

.why__eyebrow{
    color: #547DFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.why__title{
    color: #FFF;
    text-align: start;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.why__list{
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 40px;
    margin-top: 30px;
}

.why__item{
    display: flex;
    gap: 20px;
    width: 560px;
}

.why__marker{
    flex-shrink: 0;
    line-height: 0;
}

.why__item p{
    color: var(--color-text-muted-soft);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
}

.why__accent{
    color: #547DFF;
    font-weight: 700;
}

.why__item p strong:not(.why__accent){
    color: var(--color-white);
    font-weight: 700;
}
/* 07. Why Section End */

/* 07. Why Section Responsive Start */
@media (max-width: 1240px){
    .why__media{ flex-basis: 380px; }
    .why__title{ font-size: 40px; }
}

@media (max-width: 1024px){
    .why{ padding-bottom: 100px; }

    .why__inner{
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }

    .why__media{ flex-basis: auto; max-width: 380px; margin: 0 auto; }
    .why__content{ max-width: 100%; }
    .why__eyebrow{ font-size: 16px; }
    .why__title{ font-size: 32px; margin-bottom: 28px; }
    .why__item{ width: 100%; }
    .why__item p{ font-size: 16px; }
}

@media (max-width: 768px){
    .why{ padding-bottom: 80px; }

    .why__media{ max-width: 280px; }
    .why__title{ font-size: 26px; }

    .why__list{ gap: 20px; margin-bottom: 32px; }
    .why__item{ gap: 14px; }
    .why__marker svg{ width: 34px; height: 84px; }
}

@media (max-width: 480px){
    .why__title{ font-size: 22px; }
    .why__btn{ width: 100%; box-sizing: border-box; }
}
/* 07. Why Section Responsive End */

/* 08. What Section Start */
.what{
    position: relative;
    padding-bottom: 160px;
}

.what__head{
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.what__eyebrow{
    color: #547DFF;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.what__title{
    color: #FFF;
    text-align: center;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

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

.what__card{
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    border-radius: 20px;
    border: 1px solid rgba(84, 125, 255, 0.30);
    background: rgba(84, 125, 255, 0.05);
    gap: 50px;
    transition: border-color .6s ease, background .6s ease, box-shadow .6s ease;
}

.what__num{
    color: transparent;
    -webkit-text-stroke: 1.5px #4E7FFF;
    font-family: var(--font-main);
    font-size: 110px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    transition: color .6s ease, -webkit-text-stroke-color .6s ease;
}

.what__card p{
    color: #ADADAD;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 26.1px */
    transition: color .6s ease;
}

.what__card.is-active{
    border-radius: 20px;
    border: 1px solid rgba(84, 125, 255, 0.50);
    background: radial-gradient(46.12% 31.04% at 46.12% 0%, #0B2264 0%, rgba(3, 10, 31, 0.00) 100%), radial-gradient(45.65% 25.84% at 54.35% 100%, #0B2264 0%, rgba(3, 10, 31, 0.00) 100%), rgba(84, 125, 255, 0.15);
    box-shadow: 0 4px 50px 0 rgba(84, 125, 255, 0.30), 0 0 20px 0 rgba(84, 125, 255, 0.40) inset;
}

.what__card.is-active .what__num{
    color: #4E8BFF;
    -webkit-text-stroke: 0px transparent;
}

.what__card.is-active p{
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 26.1px */
}

.what__cta{
    display: flex;
    justify-content: center;
}
/* 08. What Section End */

/* 08. What Section Responsive Start */
@media (max-width: 1240px){
    .what__title{ font-size: 32px; }
    .what__num{ font-size: 52px; }
    .what__card{ gap: 36px; }
}

@media (max-width: 1024px){
    .what{ padding-bottom: 100px; }

    .what__head{ margin-bottom: 40px; }
    .what__eyebrow{ font-size: 16px; }
    .what__title{ font-size: 26px; }

    .what__grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .what__card{ padding: 26px 22px; gap: 24px; }
    .what__num{ font-size: 44px; }
    .what__card p{ font-size: 15px; }
}

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

    .what__card{ gap: 18px; }
}

@media (max-width: 480px){
    .what__title{ font-size: 22px; }
    .what__cta .btn{ width: 100%; box-sizing: border-box; }
}
/* 08. What Section Responsive End */

/* 09. How Section Start */
.how{
    position: relative;
    padding-bottom: 160px;
}

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

/* .how__media{
    flex: 0 0 460px;
    border-radius: 24px;
    border: 1px solid #4E8BFF;
    overflow: hidden;
} */

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

.how__content{
    flex: 1;
    min-width: 0;
    max-width: 700px;
}

.how__eyebrow{
    color: #547DFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.how__title{
    color: #FFF;
    text-align: start;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.how__list{
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    margin-top: 30px;
}

.how__item{
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 560px;
}

.how__marker{
    flex-shrink: 0;
    line-height: 0;
}

.how__item p{
    color: var(--color-text-muted-soft);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
}

.how__accent{
    color: #547DFF;
    font-weight: 700;
}
/* 09. How Section End */

/* 09. How Section Responsive Start */
@media (max-width: 1240px){
    .how__media{ flex-basis: 380px; }
    .how__title{ font-size: 40px; }
}

@media (max-width: 1024px){
    .how{ padding-bottom: 100px; }

    .how__inner{
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }

    .how__media{ flex-basis: auto; max-width: 380px; margin: 0 auto; }
    .how__content{ max-width: 100%; }
    .how__eyebrow{ font-size: 16px; }
    .how__title{ font-size: 32px; margin-bottom: 28px; }
    .how__item{ max-width: 100%; }
    .how__item p{ font-size: 16px; }
}

@media (max-width: 768px){
    .how{ padding-bottom: 80px; }

    .how__media{ max-width: 280px; }
    .how__title{ font-size: 26px; }

    .how__list{ gap: 20px; margin-bottom: 32px; }
    .how__item{ gap: 14px; }
    .how__marker svg{ width: 34px; height: 84px; }
}

@media (max-width: 480px){
    .how__title{ font-size: 22px; }
    .how__btn{ width: 100%; box-sizing: border-box; }
}
/* 09. How Section Responsive End */

.speaker__wrap-main{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

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

.speaker__title{
    color: #547DFF;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.speaker__subtitle{
    color: #FFF;
    text-align: center;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.speaker__wrap{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.speaker__row{
    display: flex;
    gap: 24px;
    justify-content: center;
}

.speaker__item{
    display: flex;
    width: 303px;
    gap: 24px;
    padding: 20px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;

    border-radius: 30px;
    border: 1px solid rgba(84, 125, 255, 0.30);
    background: rgba(84, 125, 255, 0.05);
}

.speaker__item-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    align-self: stretch;
}

.speaker__item-ico{
    height: 263px;
    align-self: stretch;
    aspect-ratio: 1/1;
    border-radius: 20px;
}

.speaker__item-ico-1 {
    background-image: url(https://stratoplan-school.com/archive/foundation/img/coaches/coach-2.webp), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: -20px, 0px;
    background-position-y: -75px, 00px;
    background-size: 120%;
}

.speaker__item-ico-2 {
    background-image: url(https://stratoplan-school.com/archive/foundation/img/coaches/coach-1.webp), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: -34px, 0px;
    background-position-y: -90px, 00px;
    background-size: 140%;
}

.speaker__item-ico-3 {
    background-image: url(https://stratoplan-school.com/archive/foundation/img/coaches/coach-3.webp), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: -0px, 0px;
    background-position-y: -85px, 00px;
    background-size: 120%;
}

.speaker__item-ico-4 {
    background-image: url(https://stratoplan-school.com/archive/foundation/img/coaches/coach-4.webp), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: center;
    background-position-y: -60px, 00px;
    background-size: 120%;
}

.speaker__item-ico-5 {
    background-image: url(https://stratoplan-school.com/coo/img/team/apazidi.webp), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: center;
    background-position-y: 00px, 00px;
    background-size: 120%;
}

.speaker__item-ico-6{
    background-image: url(https://stratoplan-school.com/cto/img/team/pracht.webp), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: center;
    background-position-y: 0px, 00px;
    background-size: 120%;
}

.speaker__item-ico-7{
    background-image: url(https://stratoplan-school.com/d101/img/team/yaroslavceva.png), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: center;
    background-position-y: -40px, 00px;
    background-size: 100%;
}

.speaker__item-ico-10{
    background-image: url(https://stratoplan-school.com/archive/marathon/img/name5.png), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: center;
    background-position-y: -30px, 00px;
    background-size: 100%;
}

.speaker__item-ico-8{
    background-image: url(../img/fedkin.png), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: center;
    background-position-y: 00px, 00px;
    background-size: 100%;
}

.speaker__item-ico-9{
    background-image: url(../img/krasinskiy.jpg), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: center;
    background-position-y: 00px, 00px;
    background-size: 100%;
}

.speaker__item-ico-11{
    background-image: url(../img/koreysha.jpg), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: center;
    background-position-y: 00px, 00px;
    background-size: 100%;
}


.speaker__item-ico-12{
    background-image: url(https://stratoplan-school.com/management/images/%D0%90%D0%BB%D0%B5%D0%BA%D1%81%D0%B5%D0%B8%CC%86-%D0%9F%D0%BE%D0%B4%D0%BA%D0%BB%D0%B5%D1%82%D0%BD%D0%BE%D0%B2-2-1.png);
}

.speaker__item-ico-13{
    background-image: url(https://stratoplan-school.com/archive/cto_2025/img/team/500x500_tm05-mob.webp), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: center;
    background-position-y: 0px, 0px;
    background-size: 100%;
}

.speaker__item-ico-14{
    background-image: url(https://stratoplan-school.com/university/img/team/romanovsky.avif), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: center;
    background-position-y: -50px, 0px;
    background-size: 100%;
}

.speaker__item-text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.speaker__item-title{
    color: #FFF;
    text-align: start;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 125% */
    letter-spacing: -0.6px;
}

.speaker__item-subtitle{
    color: #B4BCD0;
    text-align: start;
    font-size: 16px;
    padding-top: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.75px; /* 162.5% */
}

.speaker__btn{
    display: flex;
    padding: 20px;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;

    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.10), 0 10px 15px -3px rgba(0, 0, 0, 0.10);

    transition: transform .2s ease, box-shadow .2s ease;
}

.txt-btn{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.txt-btn p{
    color: #FFF;
    font-family: var(--font-accent);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
}

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


.speaker__btn:hover{
    transform: scale(1.03);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.10) 100%);
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.10), 0 10px 15px -3px rgba(0, 0, 0, 0.10);
}

.speaker__btn-title{
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 26.1px */
    text-decoration: none;
}

.speaker__item a{
    text-decoration: none;
}
/* навигация слайдера */
.speaker__nav {
    margin-top: 24px;
    display: none; /* по умолчанию скрыта, включим в медиаправиле */
    justify-content: flex-end;
    gap: 12px;
}

.speaker__nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #B4BCD0;
    font-size: 18px;
    line-height: 1;
    padding: 0;
    transition: background .2s ease, border-color .2s ease,
                transform .2s ease, opacity .2s ease;
}

.speaker__nav-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.speaker__nav-btn:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}

.speaker__btn-ico {
    position: relative;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker__btn-ico::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(180deg, #2AABEE 0%, #229ED9 100%);
}

.speaker__btn-ico svg {
    position: relative; /* чтобы самолёт оказался над кругом */
}


/* режим слайдера для мобилок/планшетов */
@media (max-width: 1023px) {
    #speaker .speaker__wrap {
        display: block; /* ломаем колонку рядов, будем управлять через JS */
    }

    /* когда секция в режиме слайдера – ряды «расплющиваем» */
    #speaker.is-slider .speaker__row {
        display: contents;
    }

    #speaker.is-slider .speaker__item {
        width:auto;
        max-width: none;
        margin: 0 auto;
        height: auto;
    }

    #speaker .speaker__nav {
        display: flex;
        justify-content: center;
    }
    .speaker__wrap-main{
        gap: 20px;
    }

    .speaker__subtitle{
        font-size: 24px;
    }
    .speaker__title{
        font-size: 18px;
    }
    .speaker__text{
        gap: 6px;
    }

    .speaker__btn{
        flex-direction: row-reverse;
    }
}

/* на десктопе кнопки не нужны */
@media (min-width: 1024px) {
    #speaker .speaker__nav {
        display: none;
    }
}

/* фон между секциями how и speaker — новый блок, ничего выше не менял */
.speaker{
    position: relative;
}

.speaker__bg{
    position: absolute;
    top: -15%;
    left: 0;
    right: 0;
    height: 55%;
    z-index: -1;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 35%, #000 65%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 35%, #000 65%, transparent 100%);
}

.speaker__bg-img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.speaker .container{
    position: relative;
    z-index: 1;
}
/* 10. Speaker Section Responsive End */

/* 11. Program Section Start */
.program{
    padding-top: 200px;
    padding-bottom: 100px;
}

.program__wrap{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
}

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

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

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

.program__header-text-uptitle{
    color: #547DFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.program__header-text-title{
    color: #FFF;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.program__header p{
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.program__header p span{
    color: #2F6BFF;
}

.program__btns{
    display: flex;
    align-items: flex-start;
    gap: 25px;
    align-self: stretch;
}

.program__btn{
    display: flex;
    width: 100%;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    border: 1px solid rgba(84, 125, 255, 0.30);
    background: rgba(84, 125, 255, 0.05);
    cursor: pointer;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.program__btn:hover{
    border-color: rgba(84, 125, 255, 0.50);
}

.program__btn:focus-visible{
    outline: 2px solid #2F6BFF;
    outline-offset: 4px;
}

.program__btn span{
    color: rgba(173, 173, 173, 0.37);
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.program__btn p{
    color: rgba(173, 173, 173, 0.37);
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    min-width: 0;
}

.program__btn-active{
    border-radius: 10px;
    border: 1px solid rgba(84, 125, 255, 0.50);
    background: radial-gradient(46.12% 31.04% at 46.12% 0%, #0B2264 0%, rgba(3, 10, 31, 0.00) 100%), radial-gradient(45.65% 25.84% at 54.35% 100%, #0B2264 0%, rgba(3, 10, 31, 0.00) 100%), rgba(84, 125, 255, 0.15);
    box-shadow: 0 4px 50px 0 rgba(84, 125, 255, 0.30), 0 0 20px 0 rgba(84, 125, 255, 0.20) inset;
}

.program__btn-active span{
    color: #2F6BFF !important;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.program__btn-active p{
    color: #2F6BFF !important;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.program__content-opt{
    display: none;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    gap: 40px;
}

.content-opt-ative,
.content-opt-active{
    display: flex;
}

.content-opt-left{
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #2F6BFF;
    font-size: 235px;
    font-style: normal;
    font-weight: 700;
    line-height: 90%; /* 211.5px */
    width: 322px;
}

.content-opt-right{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

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

.content-opt-header-title{
    color: #2F6BFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.content-opt-header-subtitle{
    color: #F6F7FB;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.program__content{
    width: 100%;
    min-width: 0;
}

.content-opt-item{
    display: flex;
    width: auto;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    align-self: stretch;
    border-radius: 10px;
    border: 1px solid #22324F;
    background: #08101A;
    cursor: pointer;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
    box-sizing: border-box;
}

.content-opt-item:hover{
    border-color: rgba(84, 125, 255, 0.50);
}

.content-opt-item-active{
    gap: 30px;
    border-color: rgba(84, 125, 255, 0.60);
    background: #0A1422;
    box-shadow: 0 10px 40px 0 rgba(84, 125, 255, 0.12);
}

.content-opt-item-name{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.content-opt-item-name-text{
    display: flex;
    align-items: center;
    gap: 28px;
    min-width: 0;
}

.content-opt-item-name-text span{
    color: #2F6BFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}



.content-opt-item-name p{
    color: #2F6BFF;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.content-opt-item-name-text p{
    color: #F4F6FA;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    min-width: 0;
}

.content-opt-item-text{
    color: #ADADAD;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: none;
}

.content-opt-item-active .content-opt-item-text{
    display: block;
}

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

    .program__wrap{
        gap: 35px;
    }

    .program__header{
        align-items: flex-start;
        gap: 24px;
    }

    .program__header-text-title{
        font-size: 42px;
    }

    .program__header p{
        font-size: 18px;
        text-align: right;
    }

    .program__btns{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        width: 100%;
        min-width: 0;
    }

    .program__btn{
        padding: 16px;
        gap: 14px;
    }

    .program__btn span,
    .program__btn-active span{
        font-size: 34px;
    }

    .program__btn p,
    .program__btn-active p{
        font-size: 18px;
        white-space: nowrap;
    }

    .program__content-opt,
    .content-opt-active{
        gap: 24px;
    }

    .content-opt-left{
        width: 150px;
        font-size: 140px;
    }

    .content-opt-right{
        gap: 14px;
        min-width: 0;
    }

    .content-opt-header-subtitle{
        font-size: 25px;
    }

    .content-opt-item-name{
        align-items: flex-start;
        gap: 18px;
    }

    .content-opt-item-name-text{
        align-items: flex-start;
        gap: 12px;
    }
}

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

    .program__header{
        flex-direction: column;
    }

    .program__header-text-uptitle{
        font-size: 22px;
    }

    .program__header-text-title{
        font-size: 34px;
        line-height: 1.12;
    }

    .program__header p{
        font-size: 16px;
        text-align: left;
    }

    .program__content-opt,
    .content-opt-active{
        flex-direction: column;
    }

    .content-opt-left{
        display: none;
    }

    .content-opt-header-subtitle{
        font-size: 22px;
        line-height: 1.25;
    }

    .content-opt-item{
        padding: 18px;
        width: 100%;
    }

    .content-opt-item-name-text{
        flex-direction: column;
    }

    .content-opt-item-name-text span{
        font-size: 16px;
    }

    .content-opt-item-name-text p{
        font-size: 18px;
        line-height: 1.18;
    }

    .content-opt-item-name p{
        font-size: 30px;
        line-height: 1;
    }
}

@media (max-width: 480px){
    .program__wrap{
        gap: 28px;
    }

    .program__header-text-title{
        font-size: 30px;
    }

    .program__btns{
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .program__btn{
        padding: 14px 12px;
        gap: 8px;
        justify-content: flex-start;
    }

    .program__btn p:last-child{
        margin-left: auto;
        text-align: right;
    }

    .program__btn span,
    .program__btn-active span{
        font-size: 28px;
    }

    .program__btn p,
    .program__btn-active p{
        font-size: 14px;
    }

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

    .content-opt-header-subtitle{
        font-size: 19px;
    }

    .content-opt-item-name-text p{
        font-size: 16px;
    }

    .content-opt-item-text{
        font-size: 14px;
        line-height: 1.35;
    }
}
/* 11. Program Section End */

/* 12. Faq Section Start */
.faq{
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.faq__bg{
    position: absolute;
    top: -220px;
    left: 0;
    right: 0;
    height: 480px;
    z-index: -1;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 42%, #000 75%, transparent 86%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 42%, #000 75%, transparent 86%);
}

.faq__bg-img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
}

.faq .container{
    position: relative;
    z-index: 1;
}

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

.faq__title{
    color: #FFF;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.faq__items-wrap{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.faq__col{
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1 1 0;
    min-width: 0;
    max-width: 667px;
}

.faq__item{
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #22324F;
    background: #06101E;
    transition: border-color .5s ease, background .5s ease, box-shadow .5s ease;
}

.faq__item-header{
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: center;
    gap: 45px;
    justify-content: space-between;
    padding: 30px 40px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.faq__item-text{
    display: flex;
    align-items: center;
    align-content: center;
    gap: 24px;
    flex: 1;
    min-width: 0;
}

.faq__item-text-title{
    color: #F6F7FB;
    flex: 1;
    min-width: 0;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.faq__item-text-ico{
    flex-shrink: 0;
    display: flex;
    transition: transform .4s ease;
}

.faq__item.is-open .faq__item-text-ico{
    transform: rotate(180deg);
}

.faq__item-body{
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .45s cubic-bezier(.4, 0, .2, 1);
}

.faq__item.is-open .faq__item-body{
    grid-template-rows: 1fr;
}

.faq__item-body-inner{
    overflow: hidden;
    min-height: 0;
}

.faq__item-div{
    padding: 0 40px;
}

.faq__item-div svg{
    display: block;
    width: 100%;
    height: 2px;
}

.faq__item-content{
    color: #BFC4CF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    padding: 30px 40px 30px;
}

.faq__item.is-open{
    border-color: rgba(84, 125, 255, 0.35);
    background: radial-gradient(60% 60% at 50% 0%, #0B2264 0%, rgba(3, 10, 31, 0.00) 100%), #06101E;
    box-shadow: 0 4px 32px 0 rgba(84, 125, 255, 0.12), 0 0 14px 0 rgba(84, 125, 255, 0.12) inset;
}
/* 12. Faq Section End */

/* 12. Faq Section Responsive Start */
@media (max-width: 1240px){
    .faq__title{ font-size: 34px; }

    .faq__item-text-title{ font-size: 20px; }

    .faq__item-header{ padding: 24px 28px; }
    .faq__item-div{ padding: 0 28px; }
    .faq__item-content{ padding: 24px 28px 28px; font-size: 16px; }
}

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

    .faq__bg{ top: -140px; height: 360px; }

    .faq__items-wrap{
        flex-direction: column;
        gap: 20px;
    }

    .faq__col{ width: 100%; gap: 20px; }
}

@media (max-width: 768px){
    .faq{ padding-top: 60px; padding-bottom: 60px; }

    .faq__wrap{ gap: 32px; }

    .faq__title{ font-size: 26px; text-align: center; }

    .faq__item-header{ padding: 20px; gap: 20px; }
    .faq__item-ico svg{ width: 40px; height: auto; }
    .faq__item-text{ gap: 14px; }
    .faq__item-text-title{ font-size: 16px; }
    .faq__item-text-ico svg{ width: 16px; height: auto; }

    .faq__item-div{ padding: 0 20px; }
    .faq__item-content{ padding: 18px 20px 20px; font-size: 14px; }
}
/* 12. Faq Section Responsive End */

/* 13. Warr Section Start */
.warr{
    position: relative;
    padding-top: 175px;
    padding-bottom: 175px;
    overflow: hidden;
}

.warr__bg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(1200px, 92vw);
    aspect-ratio: 1717 / 916;
    z-index: -1;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.warr__bg-img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
}

.warr .container{
    position: relative;
    z-index: 1;
}

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

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

.warr__title{
    color: #FFF;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.warr__left p{
    color: #FFF;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 36.25px */
}

.warr__left p span{
    color: #547DFF;
}

.warr__promo{
    display: flex;
    padding: 20px;
    align-items: center;
    gap: 50px;
    align-self: stretch;

    border-radius: 20px;
    border: 1px solid rgba(84, 125, 255, 0.30);
    background: rgba(84, 125, 255, 0.05);
}

.warr__promo-ico{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.warr__promo-ico svg{
    display: block;
    width: 100%;
    height: 100%;
}

.warr__promo-title{
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 26.1px */
}

.warr__promo-title span{
    color: #547DFF;
}

.warr__right{
    color: #FFF;
    width: 372px;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
}

.warr__right span{
    color: #547DFF;
}
/* 13. Warr Section End */

/* 13. Warr Section Responsive Start */
@media (max-width: 1240px){
    .warr__bg{ width: min(980px, 94vw); }

    .warr__title{ font-size: 40px; }
    .warr__left p{ font-size: 21px; }
    .warr__right{ font-size: 19px; }
}

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

    .warr__bg{
        left: 68%;
        width: min(920px, 130vw);
        opacity: 0.65;
        filter: blur(6px);
    }

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

    .warr__left{ width: 100%; }
    .warr__right{ width: 100%; }
}

@media (max-width: 768px){
    .warr{ padding-top: 50px; padding-bottom: 50px; }

    .warr__bg{
        left: 70%;
        width: min(760px, 150vw);
        opacity: 0.6;
        filter: blur(7px);
    }

    .warr__title{ font-size: 32px; }
    .warr__left p{ font-size: 18px; }
    .warr__right{ font-size: 17px; }

    .warr__promo{ padding: 16px; gap: 24px; }
    .warr__promo-ico{ width: 52px; height: 52px; }
    .warr__promo-title{ font-size: 16px; }
}

@media (max-width: 480px){
    .warr{ padding-top: 40px; padding-bottom: 40px; }

    .warr__bg{
        left: 72%;
        width: min(640px, 170vw);
        opacity: 0.55;
        filter: blur(8px);
    }

    .warr__title{ font-size: 26px; }

    .warr__promo{
        align-items: center;
        gap: 16px;
    }
}
/* 13. Warr Section Responsive End */

/* 14. Register Section Start */
.register{
    padding-top: 100px;
    padding-bottom: 160px;
}

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

.register__cards{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.register__card{
    display: flex;
    flex-direction: column;
    padding: 40px;
    border-radius: 24px;
    gap: 32px;
}

.register__card--free{
    border: 1px solid rgba(84, 125, 255, 0.30);
    background: rgba(84, 125, 255, 0.05);
}

.register__card--paid{
    border: 1px solid rgba(213, 174, 28, 0.45);
    background:
        radial-gradient(46.12% 31.04% at 46.12% 0%, rgba(213, 174, 28, 0.18) 0%, rgba(213, 174, 28, 0) 100%),
        radial-gradient(45.65% 25.84% at 54.35% 100%, rgba(213, 174, 28, 0.14) 0%, rgba(213, 174, 28, 0) 100%),
        rgba(213, 174, 28, 0.06);
    box-shadow: 0 4px 50px 0 rgba(213, 174, 28, 0.20), 0 0 20px 0 rgba(213, 174, 28, 0.25) inset;
}

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

.register__card-badge{
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
}

.register__card-badge img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.register__card-heading h3{
   color: #F5F6FA;
    font-size: 31px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.register__card-heading p{
    color: #B9BDC6;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.register__card-div{
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 100%);
}

.register__card-body{
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.register__card-label{
    color: #D8DBE2;
    text-transform: uppercase;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.register__card-list{
    display: flex;
    flex-direction: column;
    gap: 18px;
    list-style: none;
}

.register__card-list li{
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.register__card-list svg{
    flex-shrink: 0;
    margin-top: 2px;
}

.register__card-list span{
    color: #F5F6FA;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.register__card-list strong{
    color: #FFF;
    font-weight: 700;
}

.register__card-btn{
    display: flex;
    width: 100%;
    height: 56px;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    border-radius: 14px;
    text-decoration: none !important;
    color: #FFF;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: transform .25s ease, box-shadow .25s ease;
}

.register__card-btn:hover{
    transform: scale(1.02);
}

.register__card-btn:active{
    transform: scale(0.98);
}

.register__card-btn--blue{
    background: linear-gradient(90deg, #123DC8 0%, #0D72FF 100%);
}

.register__card-btn--gold{
    background: linear-gradient(90deg, #E8B923 0%, #C9721B 100%);
    color: #1A1200;
}

@media (prefers-reduced-motion: reduce){
    .register__card-btn{ transition: none; }
}
/* 14. Register Section End */

/* 14. Register Section Responsive Start */
@media (max-width: 1240px){
    .register__card{ padding: 32px; gap: 28px; }
    .register__card-badge{ width: 72px; height: 72px; }
    .register__card-heading h3{ font-size: 21px; }
}

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

    .register__cards{
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

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

    .register__wrap{ gap: 40px; }

    .register__card{ padding: 28px 24px; gap: 24px; }
    .register__card-top{ gap: 18px; }
    .register__card-badge{ width: 64px; height: 64px; }
    .register__card-heading h3{ font-size: 19px; }
    .register__card-heading p{ font-size: 14px; }
    .register__card-label{ font-size: 16px; }
    .register__card-list span{ font-size: 15px; }
    .register__card-btn{ height: 52px; font-size: 14px; }
}

@media (max-width: 480px){
    .register__card{ padding: 24px 20px; }
    .register__card-top{ flex-direction: column; align-items: flex-start; gap: 16px; }
}
/* 14. Register Section Responsive End */

/* 15. Registration Modal Start */
.modal-lock{
    overflow: hidden;
}

.modal{
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.is-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal__backdrop{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 11, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}

.modal__dialog{
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    max-height: 88vh;
    overflow-y: auto;
    padding: 48px 40px 40px;
    border-radius: 24px;
    border: 1px solid rgba(84, 125, 255, 0.30);
    background: #0A0E1F;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    outline: none;
    transform: scale(0.94) translateY(12px);
    transition: transform 0.3s cubic-bezier(.2, .8, .2, 1);
}

.modal.is-open .modal__dialog{
    transform: scale(1) translateY(0);
}

.modal__close{
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.modal__close:hover{
    background: rgba(255, 255, 255, 0.14);
    transform: scale(1.06);
}

.modal__close:active{
    transform: scale(0.94);
}

.modal__form{
    min-height: 100px;
}

.modal__fallback{
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: #ADADAD;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    text-align: center;
}

.modal__fallback-link{
    color: #547DFF;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.modal__fallback-link:hover{
    color: #7C9CFF;
}

@media (prefers-reduced-motion: reduce){
    .modal,
    .modal__dialog,
    .modal__close{
        transition: none;
    }
}
/* 15. Registration Modal End */

/* 15. Registration Modal Responsive Start */
@media (max-width: 768px){
    .modal{ padding: 16px; }

    .modal__dialog{
        max-width: 100%;
        max-height: 92vh;
        padding: 44px 24px 28px;
        border-radius: 18px;
    }

    .modal__close{
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }

    .modal__fallback{ font-size: 14px; }
}

@media (max-width: 480px){
    .modal{ padding: 10px; }

    .modal__dialog{
        padding: 40px 16px 24px;
        border-radius: 14px;
    }
}
/* 15. Registration Modal Responsive End */

/* 15b. Bonus Course Link + Modal Start */
.register__card-link{
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.register__card-link:hover{
    color: #547DFF;
}

.bonus-modal__title{
    margin: 0 0 12px;
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
}

.bonus-modal__title ~ .bonus-modal__title{
    margin-top: 28px;
}

.bonus-modal__list{
    margin: 0;
    padding-left: 20px;
    color: #ADADAD;
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
}

.bonus-modal__list li{
    margin-bottom: 6px;
}

.bonus-modal__list li:last-child{
    margin-bottom: 0;
}
/* 15b. Bonus Course Link + Modal End */

/* 17. Footer Section Start */
.hero + footer.distance-xxs{
  padding-top: 0;
}

footer{
  background: #00000B;
}

.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 */



























/* =================================== */
/* =================================== */
/* =================================== */
/* D. O. 2026 */
/* =====AUGUST 2026 For Statoplan =====*/
/* =================================== */
/* =================================== */
/* HTML CSS JS GSAP */
/* =================================== */
