/* =================================== */
/* =================================== */
/* =================================== */
/* Danylo Oliinyk */
/* =====Februar 2026 For Statoplan =====*/
/* =================================== */
/* =================================== */
/* =================================== */
/* 01. Header Section */
/* 02. Hero Section */
/* 03. About Section */
/* 04. Info Section */
/* 05. Speaker Section */
/* 06. Program Section */
/* 07. Warum Section */
/* 08. Register Section */
/* 09. Footer Section */
/* 10. Pop-UP Section */
/* General Media Styles Section */
/* =================================== */
/* =================================== */
/* =================================== */





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

.header__wrap-logos{
  display: flex;
  gap: 20px;
  align-items: center;
}

.ent-logo{
  width: 44.67px;
  height: 44.67px;
  flex-shrink: 0;
}

/* .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{
    display: flex;
    width: 672px;
    justify-content: space-between;
    align-items: center;
}

.header__link{
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    letter-spacing: 2px;
    text-transform: uppercase;
}

header {
    position: fixed;   /* закрепляет элемент */
    top: 0;            /* привязка к верхней границе окна */
    left: 0;
    width: 100%;       /* растягиваем на всю ширину окна */
    z-index: 1000;     /* поверх всех остальных элементов */
    background: rgb(15, 15, 15);
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
}




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

.burger-line {
    background-color: #ffffff;
    height: 4px;
    width: 100%;
    border-radius: 2px;
}

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

    .header__wrap-col1-ul {
        display: none; 
        flex-direction: column;
        gap: 16px;
        width: 95%;
        background-color: #101010;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 16px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .header__link {
        font-size: 18px;
        text-align: center;
    }

    .header__wrap-col1-ul.active {
        display: flex; 
        width: -webkit-fill-available;
    }
}

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

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

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

.btn{
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 10.91px;
    background: #101010;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover{
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,.35);
}

.acc-btn{
    border-radius: 10.91px;
    background: #FFF;
    box-shadow: 0 10px 16px -10px rgba(255, 255, 255, 0.06) inset, 0 8px 8px 0 rgba(0, 7, 31, 0.06), 0 4px 4px 0 rgba(0, 7, 31, 0.06), 0 2px 2px 0 rgba(0, 7, 31, 0.06), 0 0 1px 0 rgba(0, 7, 31, 0.32), 0 -2px 1px 0 rgba(0, 7, 31, 0.24) inset, 0 1px 1px 0 rgba(205, 231, 250, 0.08) inset;
    color: #001F3D;
}

header {
    position: fixed;
    top: 16px;        
    left: 0;
    width: 100%;      
    z-index: 1000;
    background: transparent; 
    box-shadow: none;
    pointer-events: none;    
}

/* body {
    padding-top: 120px; 
} */
.header__wrap{
    display: flex;
    padding: 12px 24px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;

    border-radius: 16px; 
    background: rgb(16 16 16 / 8%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);

    pointer-events: auto;
}


@media (max-width: 1024px) {
    .header__wrap-col1-ul {
        margin-top: 10px;
        width: 100%;
        border-radius: 16px; 
                background-color: rgb(10 21 29 / 93%);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }
}
/* 01. Header Section End */


/* 02. Hero Section End */
.hero__main-wrap{
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.hero__main-content{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hero__main-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

h3{
    color: #FFF;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 21.75px */
    letter-spacing: 5px;
    text-transform: uppercase;
}

h2{
    color: #B4BCD0;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%; /* 38.75px */
}

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

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

.hero__main-promo{
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.06) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    padding: 10px 20px;
    gap: 10px;
}

.hero__main-promo-item{
    display: flex;
    width: 203px;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.hero__main-promo-item-text{
    color: #B4BCD0;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%; /* 23.25px */
}

.colored-btn{
    border-radius: 10.91px;
    background: linear-gradient(91deg, #5DBAE8 0%, #CFFEA3 100%);
    padding: 12px 20px;
    width: 210px;
}

.hero--video {
  position: relative;
  overflow: hidden;
  background: #000A15; 
}

.hero--video .hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero--video .container,
.hero--video .hero__main-wrap {
  position: relative;
  z-index: 2;
}


.hero--video::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1900px; 
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 10, 21, 0.00) 0%, #000A15 100%);
}

.hero--video .hero__bg { filter: blur(2px); }

@media (max-width: 1024px) {
    .hero__main-promo{
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hero__main-promo{
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }
    .hero__main-promo-div {
        transform: rotate(90deg);
    }
    .hero__main-promo-div{
        display: none;
    }
    .distance-hero{
        padding-top: 120px;
        padding-bottom: 20px;
    }
    main{
        margin-top: 0 !important;
    }
    h1{
        font-size: 44px;
    }
    .hero--video::after{
        height: 2900px;
    }
}
/* 02. Hero Section End */

/* 03. About Section Start */

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

.about__title{
    color: #3D444D;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 175%;
    text-align: center;
}

.about__title span{
    z-index: 2;
}

.about__card-wrap{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    width: 100%;
}

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

.about__card{
    display: flex;
    width: 320px;
    align-items: center;
    gap: 15px;
}

.about__card-num{
    color: var(--white, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 155%; /* 24.8px */
}

.about__card-text{
    color: #B4BCD0;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%; /* 23.25px */
}

.about__title span{
  background: linear-gradient(91deg, #5DBAE8 0%, #CFFEA3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about__title .char{
  color: #3D444D;
  transition: color .35s linear;
  display: inline-block;
}

.about__title.is-animate .char{
  color: #FFF;
}

.about__title { white-space: normal; }
.about__title .char { display: inline; } /* было inline-block */

.about__title .char{
  color: #3D444D;
  transition: color .25s linear;
}

.about__title .char.is-on{
  color: #FFF;
}

.about__title span{
  background: linear-gradient(91deg, #5DBAE8 0%, #CFFEA3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about{
  position: relative;
  overflow: hidden;
}

.about{
    padding-top: 50px;
    padding-bottom: 100px;
}

.about{
  position: relative;
  overflow: hidden;
}

.about::before{
  content:"";
  position:absolute;
  left:50%;
  top:-122%;
  transform:translateX(-50%);
  width:220%;
  height:220%;
  border-radius:50%;
  pointer-events:none;
  z-index:0;

  border: 0px solid rgba(0, 240, 255, 0.55);
  filter: blur(0.6px);
  box-shadow:
    0 0 14px rgba(0, 238, 255, 0),
    0 0 21px rgba(146, 218, 199, 0.25);

  background: linear-gradient(358deg, #92dac71f -18.8%, rgba(0, 240, 255, 0.00) 56.51%);
}

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

.about::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:200px;
  z-index:1;
  pointer-events:none;
  background: linear-gradient(180deg, #000A15 0%, rgba(0, 10, 21, 0.00) 100%);
}

.about__card-wrap-mob{
  display: none;
}

@media (max-width: 768px) {
    .about__card-row{
        flex-direction: column;
        gap: 20px;
    }
    .about__card-wrap{
        gap: 20px;
        display: none;
    }
    .about__card-wrap-mob{
      display: flex;
    }
    .about::after{
        height: 80px;
    }
    .about__card{
        gap: 55px;
    }
    .about__card-num{
        font-size: 20px;
    }
    .hero__main-wrap{
        gap: 60px;
    }
    h2{
        font-size: 22px;
    }
    .about::before{
      width: 600%;
    }
}

/* 03. About Section End */

/* 04. Info Section Start */
.info{
  padding-top: 46px;
  padding-bottom: 110px;
}

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

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

.info__wrap-title{
  color: #FFF;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 49.5px */
}

.info__wrap-subtitle{
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 21.75px */
  letter-spacing: 5px;
  text-transform: uppercase;
}

.info__wrap-descr{
  color: #B4BCD0;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%; /* 38.75px */
}

.info__wrap-card-wrap{
  display: flex;
  gap: 15px;
  justify-content: center;
}

.info__wrap-card{
  display: flex;
  width: 295px;
  height: 450px;
  padding: 25px 23px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  border-radius: 30px;
  background: linear-gradient(205deg, rgba(0, 10, 21, 0.00) 4.54%, #000A15 99.81%), url(<path-to-image>) lightgray 50% / cover no-repeat;

  transition: width 250ms ease; /* плавность */
}

.info__wrap-card:hover{
  width: 441px;
}

.info__wrap-card-2{
  background: linear-gradient(205deg, rgba(0, 10, 21, 0.406) 4.54%, #000A15 99.81%), url('../img/pic-1.webp') lightgray 50% / cover no-repeat;
}

.info__wrap-card-1{
  background: linear-gradient(205deg, rgba(0, 10, 21, 0.413) 4.54%, #000A15 99.81%), url('../img/pic-2.webp') lightgray 50% / cover no-repeat;
}

.info__wrap-card{
  position: relative;
  overflow: hidden; 
  border-radius: 30px;
}

.info__wrap-card > *{
  position: relative;
  z-index: 1;
}

.info__wrap-card:hover::before{
  background: rgba(0, 20, 45, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}


.info__wrap-card-text{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
}

.info__wrap-card-subtitle{
  display: none;
  flex-direction: column;
  gap: 5px;
}

.info__wrap-card:hover .info__wrap-card-subtitle{
  display: flex;
  flex-direction: column;
}

.info__wrap-card-title{
  color: var(--white, #FFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 155%; 
  text-transform: uppercase;
}

.info__wrap-card-subtitle{
  width: 395px;
  color: #B4BCD0;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%; 
}

.info__wrap-card{
  --img: none;

  position: relative;
  overflow: hidden;
  border-radius: 30px;

  background-image:
    linear-gradient(205deg, rgba(0,10,21,0.10) 4.54%, #000A15 99.81%),
    var(--img);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}


.info__wrap-card::after{
  content:"";
  position:absolute;
  inset:0;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;

  filter: blur(2px);
  transform: scale(1.08);
  opacity: .35;
  transition: filter 250ms ease, opacity 250ms ease;
  z-index: 0;
  pointer-events:none;
}

/* контент поверх */
.info__wrap-card > *{
  position: relative;
  z-index: 2;
}

.info__wrap-card:hover::after{
  filter: blur(8px);
  opacity: .55;
}

.info__wrap-card:hover::before{
  background: rgba(0, 20, 45, 0.55);
}

.info__wrap-card-1{ --img: url('../img/pic-1.webp'); }
.info__wrap-card-2{ --img: url('../img/pic-2.webp'); }

.info__wrap-card{
  --img: none;

  position: relative;
  overflow: hidden;
  border-radius: 30px;

  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}


.info__wrap-card::after{
  content:"";
  position:absolute;
  inset:0;

  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;

  filter: blur(2px);
  transform: scale(1.08);
  opacity: .45;
  transition: filter 250ms ease, opacity 250ms ease;
  z-index: 0;
  pointer-events:none;
}


.info__wrap-card::before{
  content:"";
  position:absolute;
  inset:0;

  background: rgba(0, 25, 60, 0.25);
  transition: background 250ms ease;
  z-index: 1;
  pointer-events:none;
}

.info__wrap-card > *{
  position: relative;
  z-index: 2;
}

.info__wrap-card:hover::after{
  filter: blur(10px);
  opacity: .65;
}
.info__wrap-card:hover::before{
  background: rgba(0, 25, 60, 0.60);
}

.info__wrap-card-1{ --img: url('../img/pic-1.webp'); }
.info__wrap-card-2{ --img: url('../img/pic-2.webp'); }

.info__wrap-card::before{
  background: rgba(0, 25, 60, 0.40);
}
.info__wrap-card:hover::before{
  background: rgba(0, 25, 60, 0.75);
}

.info__wrap-rows{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}

.info__row{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  align-self: stretch;
}

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

.info__row-card{
  display: flex;
  width: 316px;
  padding: 20px;
  /* justify-content: center; */
  align-items: start;
  gap: 10px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);

  color: #B4BCD0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%; /* 23.25px */
}

.info__row-text{
  background: linear-gradient(91deg, #5DBAE8 0%, #CFFEA3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  width: 276px;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 37.5px */
  text-transform: uppercase;
}

@media (max-width: 1024px){
  .info__row{
    flex-direction: column;
  }
  .info__row{
    gap: 18px;
  }
  /* 2-й элемент -> 1-й */
  .info__row > :nth-child(2){ order: 1; }

  /* 1-й элемент -> 2-й */
  .info__row > :nth-child(1){ order: 2; }

  /* 3-й элемент -> 3-й */
  .info__row > :nth-child(3){ order: 3; }
}

/* Mobile: <= 767px */
@media (max-width: 767px) {
  .info__wrap-card-wrap{
    flex-direction: column;
  }
  .info__wrap-card{
    width: auto;
  }
  .info__wrap-card:hover{
    width: auto;
  }
  .info__wrap-card-subtitle{
    width: auto;
  }
  .info__wrap-title{
    font-size: 35px;
  }
  .info__wrap-descr{
    font-size: 18px;
  }
  .info{
    padding-bottom: 40px;
  }
}
/* 04. Info Section End */

/* 05. Speaker Section Start */
.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: #FFF;
    text-align: center;
    font-family: var(--font-accent);
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 49.5px */
}

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

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

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

.speaker__item{
    display: flex;
    width: 303px;
    /* height: 569px; */
    padding: 20px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    border-radius: 20px;
    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%);
}

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

.speaker__item-ico{
    width: 100%;
    height: 274px;
    border-radius: 20px;
}

.speaker__item-ico-1 {
    background-image: url(../img/sheyko.webp);
    background-position: 0px -50px;
    background-size: cover;
    background-repeat: no-repeat;
}

.speaker__item-ico-2 {
    background-image: url(../img/kudravcev.webp);
    background-position: 0px 0px;
    background-size: cover;
    background-repeat: no-repeat;
}

.speaker__item-ico-3 {
    background-image: url(../img/kluchnikov.webp);
    background-position: 0px 0px;
    background-size: cover;
    background-repeat: no-repeat;
}

.speaker__item-ico-03{
  background-image: url(../img/tolstoy.avif);
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.speaker__item-ico-4 {
    background-image: url(../img/simonov.webp);
    background-position: 0px -50px;
    background-size: cover;
    background-repeat: no-repeat;
}

.speaker__item-ico-5 {
    background-image: url(../img/savochka.webp);
    background-position: 0px -50px;
    background-size: cover;
    background-repeat: no-repeat;
}

.speaker__item-ico-05{
  background-image: url(../img/romanovscki.avif);
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.speaker__item-ico-6 {
    background-image: url(../img/miheev.avif);
    background-position: 0px 0px;
    background-size: cover;
    background-repeat: no-repeat;
}

.speaker__item-ico-7 {
    background-image: url(../img/sanakoev.avif);
    background-position: 0px 0px;
    background-size: cover;
    background-repeat: no-repeat;
}

.speaker__item-ico-8 {
    background-image: url(../img/gershuni.avif);
    background-position: 0px 0px;
    background-size: cover;
    background-repeat: no-repeat;
}

.speaker__item-ico-9 {
    background-image: url(../img/galimov.avif);
    background-position: 0px 0px;
    background-size: cover;
    background-repeat: no-repeat;
}

.speaker__item-ico-10 {
    background-image: url(../img/rojkov.avif);
    background-position: 0px 0px;
    background-size: cover;
    background-repeat: no-repeat;
}

.speaker__item-ico-o {
    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-p{
    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-t{
    background-image: url(../img/timakov.avif);
    background-position: 0px 0px;
    background-size: cover;
    background-repeat: no-repeat;
}

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

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

.speaker__item-subtitle{
    color: #B4BCD0;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.75px; /* 162.5% */
}

.speaker__btn-info{
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.speaker__btn-info-ico{
  border-radius: 1000px;
  background: url(<path-to-image>) lightgray 50% / cover no-repeat;
  width: 45px;
  height: 45px;
  aspect-ratio: 1/1;
}

.btn-info-ico-1{
  background: url('../img/sheyko_tg.avif') lightgray 50% / cover no-repeat;
}

.btn-info-ico-2{
  background: url('../img/kudravcev_tg.avif') lightgray 50% / cover no-repeat;
}

.btn-info-ico-03{
  background: url('../img/tolstoy_tg.avif') lightgray 50% / cover no-repeat;
}

.btn-info-ico-4{
  background: url('../img/simonov_tg.avif') lightgray 50% / cover no-repeat;
}

.btn-info-ico-05 {
  background: url('../img/romanovscki_tg.avif') lightgray 50% / cover no-repeat;
}

.btn-info-ico-6 {
  background: url('../img/miheev_tg.avif') lightgray 50% / cover no-repeat;
}

.btn-info-ico-7 {
  background: url('../img/sanakoev_tg.avif') lightgray 50% / cover no-repeat;
}

.btn-info-ico-8 {
  background: url('../img/gershuni_tg.avif') lightgray 50% / cover no-repeat;
}

.btn-info-ico-9 {
  background: url('../img/galimov_tg.avif') lightgray 50% / cover no-repeat;
}

.btn-info-ico-10 {
  background: url('../img/rojkov_tg.avif') lightgray 50% / cover no-repeat;
}

.btn-info-ico-s{
  background: url('../img/stratoplan_tg.avif') lightgray 50% / cover no-repeat;
}

.btn-info-ico-n{
  background: url('../img/timakov_tg.avif') lightgray 50% / cover no-repeat;
}

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

.speaker__btn{
    display: flex;
    padding: 10px;
    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;
}

.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: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
}

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

.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: 40px;
    height: 40px;
    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; /* чтобы самолёт оказался над кругом */
}

.speaker__div{
  width: 960px;
  height: 1px;
  background: linear-gradient(90deg, rgba(60, 57, 83, 0.00) 0%, #3C3953 40%, #3C3953 60%, rgba(60, 57, 83, 0.00) 100%);
  margin-bottom: 70px;
}

.mob-logo{
  display: none;
}

.ent-logo-pc{
  display: flex;
  gap: 10px;
  align-items: center;
}

.header__wrap-logos-footer{
  flex-direction: column;
  align-items: center;
}

.header__wrap-col1-text{
  display: none;
}

/* режим слайдера для мобилок/планшетов */
@media (max-width: 1023px) {
    .mob-logo{
      display: block;
    }
    .ent-logo-pc{
      display: none;
    }
    .ent-logo-pc-footer{
      display: flex;
    }
    .header__wrap-logos-footer{
      align-items: start;
    }
    #speaker .speaker__wrap {
        display: block; /* ломаем колонку рядов, будем управлять через JS */
    }
    .header__wrap-col1-text{
      display: block;
      color: #FFF;
      text-align: center;
      font-family: var(--font-accent);
      font-size: 18px;
      font-style: normal;
      font-weight: 700;
    }
    .header__wrap-col1{
      display: none;
    }
    /* когда секция в режиме слайдера – ряды «расплющиваем» */
    #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__div{
      width: 300px;
    }
    .speaker__div{
      margin-bottom: 20px;
    }
    .distance-speaker{
      padding-top: 30px;
    }
    .speaker__item{
      height: 519px;
    }
}


@media (min-width: 1024px) {
    #speaker .speaker__nav {
        display: none;
    }
    
}
/* 05. Speaker Section End */

/* 06. Program Section Start */

.program__wrap{
    display: flex;
    flex-direction: column;
    gap: 70px;
}

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

.program__title{
    text-align: center;
    font-family: var(--font-accent);
    font-size: 50px;
    font-weight: 500;
    line-height: 110%;
    background: linear-gradient(116deg, #FFF 30%, rgba(255, 255, 255, 0.38) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.program__subtitle{
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 21.75px */
  letter-spacing: 5px;
  text-transform: uppercase;
}

.program__list{
    display: none;
    flex-direction: column;
    gap: 70px;
}

.program__list-active{
  display: flex;
}

.program__item{
    display: grid;
    grid-template-columns: minmax(220px, 260px) 40px minmax(0, 1fr);
    column-gap: 32px;
    align-items: flex-start;
}

.program__meta{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    color: #B4BCD0;
    font-size: 14px;
    line-height: 145%;
}

.program__meta-row{
    display: flex;
    gap: 20px;
    align-items: center;
}

.program__meta-wrap{
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.program__meta-date{
    color: #FFF;
    font-size: 15px;
    font-weight: 500;
}

.program__meta-time{
    color: #D1D5DC;
    font-size: 14px;
}

.program__meta-text{
  color: var(--white, #FFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.75px; /* 162.5% */
}

.program__timeline-cell{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program__timeline-cell::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        rgba(148, 163, 184, 0) 0%,
        rgba(148, 163, 184, 0.7) 50%,
        rgba(148, 163, 184, 0) 100%
    );
}

.program__timeline-dot{
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #020617;
    border: 2px solid rgba(129, 140, 248, 0.95);
    box-shadow: 0 0 0 4px rgba(129, 140, 248, 0.25);
    z-index: 1;
}

.program__item:first-child .program__timeline-cell::before{
    top: 50%;
}

.program__item:last-child .program__timeline-cell::before{
    bottom: 50%;
}


.program__content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.program__content-text p{
  color: #B4BCD0;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 21.75px */
}
.program__content-text p:last-child{
    margin-bottom: 0;
}

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

.program__details-title{
  color: var(--white, #FFF);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 21.75px */
}

.program__details-content{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.program__details-head{
    text-align: start;
    width: 100%;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 26.1px */
}

.program__details-caption{
    flex: 1;
}

.program__details-icon svg{
    display: block;
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.8;
}

.program__details-body{
    padding: 0 30px 0;
    display: grid;
    gap: 30px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        opacity 0.3s ease,
        padding-bottom 0.3s ease;
}

.program__details--open .program__details-body{
    max-height: 800px;
    opacity: 1;
    padding-bottom: 20px;
}

.program__details--open .program__details-icon svg{
    transform: rotate(180deg);
}

.program__details-row{
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 30px;
    row-gap: 4px;
    align-items: flex-start;
}

.program__details-non-acc{
    padding: 20px 30px;
}

.program__details-non-acc p{
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%; /* 23.25px */
}

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

.program__details-text{
    color: #B4BCD0;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%; /* 23.25px */
}

.program__content-title-text{
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.program__content-title-title{
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 21.75px */
  letter-spacing: -0.6px;
}

.program__content-title-subtitle{
  color: #FFF;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 36.25px */
  letter-spacing: -0.6px;
}

.program__content-title-ico{
  width: 100px;
  height: 100px;
  aspect-ratio: 1/1;
  border-radius: 137px;
  /* background: url(<path-to-image>) lightgray 50% / cover no-repeat; */
}

.program__content-title-viele{
  display: flex;
  /* flex-direction: column; */
  gap: 6px;
  align-items: start;
}

.program__content-title-ico-viele{
  display: flex;
  gap: 6px;
}

.program__content-title-ico-1{
  background: url('../img/kudravcev.webp') lightgray 50% / cover no-repeat;
}

@media (max-width: 1024px) and (min-width: 768px){
    .program__item{
        grid-template-columns: minmax(200px, 230px) 32px minmax(0, 1fr);
        column-gap: 24px;
    }
    .program__content-title-viele{
    flex-direction: column;
  }
}

@media (max-width: 767px){
    .program__wrap{
        gap: 32px;
    }

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

    .program__timeline-cell{
        display: none;
    }
  .program__content-title-ico{
    width: 80px;
    height: 80px;
  } 
  .program__content-title-subtitle{
    font-size: 22px;
  }
  .program__content-title-viele{
    flex-direction: column;
  }
}


.program__list{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 70px;
    --program-line-left: 0px;   
    --program-progress: 0px;    
}


.program__timeline-cell::before{
    content: none;
}


.program__list::before,
.program__list::after{
    content: "";
    position: absolute;
    top: 0;
    left: calc(var(--program-line-left) - 1px); 
    width: 2px;
    border-radius: 999px;
    pointer-events: none;
}

.program__list::before{
    bottom: 0;
    background: rgba(148, 163, 184, 0.32); 
}

.program__list::after{
    height: var(--program-progress);
    background: linear-gradient(91deg, #5DBAE8 0%, #CFFEA3 100%);
} 

.program__timeline-dot{
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #9CA3AF;
    border: none;
    box-shadow: none;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.program__timeline-dot::before{
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.25s ease;
}


.program__timeline-dot--active{
    background: linear-gradient(91deg, #5DBAE8 0%, #CFFEA3 100%); 
    transform: scale(1.15);
    box-shadow: 0 0 0 4px #5dbae847;
}
.program__timeline-dot--active::before{
    opacity: 1;
}


.program__timeline-dot--done{
    background: #E5E7EB;
}

.program__btn-wrap{
  display: inline-flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.program__btn span{
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 29px */
  text-transform: uppercase;
  text-decoration: none !important;
}

.program__btn:hover{
  opacity: 1;
  text-decoration: none;
}

.program__btn{
  display: flex;
  justify-content: center;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  opacity: 0.5;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.06) 100%);
  padding: 10px 20px;
  width: 255px;
  text-decoration: none;
}

.program__btn-active{
  opacity: 1;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.program__btn-active span{
  background: linear-gradient(91deg, #5DBAE8 0%, #CFFEA3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.program__btn:hover{
  text-decoration: none;
  font-weight: 500;
}

.program__btn-active{
  text-decoration: none !important;
}


@media (max-width: 767px){
    .program__timeline-cell{
        display: none;
    }

    .program__list::before,
    .program__list::after{
        display: none;
    }
    .program__btn-wrap{
      gap: 30px;
    }
    .program__btn{
      width: auto;
    }
}
.program__list{
    position: relative;
    display: none;
    flex-direction: column;
    gap: 32px;

    --program-line-left: 0px;
    --program-line-top: 0px;
    --program-line-height: 0px;
    --program-progress: 0px;
}

.program__list-active{
  display: flex;
}

.program__timeline-cell::before{
    content: none;
}

.program__list::before,
.program__list::after{
    content: "";
    position: absolute;
    left: calc(var(--program-line-left) - 1px); 
    top: var(--program-line-top);
    width: 2px;
    border-radius: 999px;
    pointer-events: none;
}

.program__list::before{
    height: var(--program-line-height);
    background: rgba(148, 163, 184, 0.32);
}

.program__list::after{
    height: var(--program-progress);
    background: linear-gradient(91deg, #5DBAE8 0%, #CFFEA3 100%);
}
/* 06. Program Section End */

/* 07. Warum Section Start */
.warum{
  padding-top: 140px;
  padding-bottom: 200px;
}

.warum__main-wrap{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.warum__promo{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  display: flex;
  padding: 50px 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.warum__promo-title{
  color: #FFF;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 77px */
}

.warum__promo-subtitle{
  color: #B4BCD0;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%; /* 31px */
}

.warum__cards-wrap{
  display: flex;
  align-items: flex-start;
  gap: 36px;
}

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

.warum__card-num{
  background: linear-gradient(91deg, #5DBAE8 0%, #CFFEA3 100%);
  background-clip: text;
  -webkit-background-clip: start;
  -webkit-text-fill-color: transparent;
  text-align: start;
  font-family: var(--font-accent);
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 88px */
}

.warum__card-title{
  color: #B4BCD0;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 21.75px */
  padding-left: 60px;
  width: 250px;
}

.warum__card-title span{
  color: var(--white, #FFF);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
}

.warum {
  position: relative;
  overflow: hidden;
}

.warum__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.warum__main-wrap,
.warum .container {
  position: relative;
  z-index: 1; /* контент поверх блобов */
}

.warum__blob {
  position: absolute;
  will-change: transform;
  filter: blur(0px); /* можно не трогать, blur уже в SVG */
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: 50% 50%;
}

.warum__blob svg {
  display: block;
  width: clamp(220px, 26vw, 520px);
  height: auto;
}

/* Позиции (подгони под свой макет) */
.warum__blob--1 { top: 20px; left: -120px; }
.warum__blob--2 { top: 70px; right: -160px; }
.warum__blob--3 { bottom: -20px; left: -140px; }
.warum__blob--4 { bottom: -10px; right: -120px; }

/* “хаотичность” = разные траектории + разные тайминги + scale */
.warum__blob--1 { animation: blobFloatA 18s ease-in-out infinite alternate, blobPulse 7s ease-in-out infinite; }
.warum__blob--2 { animation: blobFloatB 22s ease-in-out infinite alternate, blobPulse 9s ease-in-out infinite; }
.warum__blob--3 { animation: blobFloatC 26s ease-in-out infinite alternate, blobPulse 8s ease-in-out infinite; }
.warum__blob--4 { animation: blobFloatD 20s ease-in-out infinite alternate, blobPulse 10s ease-in-out infinite; }

@keyframes blobFloatA {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  35%  { transform: translate3d(40px, 30px, 0) rotate(4deg) scale(1); }
  70%  { transform: translate3d(-30px, 60px, 0) rotate(-3deg) scale(1); }
  100% { transform: translate3d(50px, -20px, 0) rotate(2deg) scale(1); }
}

@keyframes blobFloatB {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  30%  { transform: translate3d(-60px, 40px, 0) rotate(-5deg) scale(1); }
  65%  { transform: translate3d(-20px, -30px, 0) rotate(3deg) scale(1); }
  100% { transform: translate3d(40px, 20px, 0) rotate(-2deg) scale(1); }
}

@keyframes blobFloatC {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  40%  { transform: translate3d(55px, -35px, 0) rotate(4deg) scale(1); }
  75%  { transform: translate3d(15px, 45px, 0) rotate(-4deg) scale(1); }
  100% { transform: translate3d(-45px, 10px, 0) rotate(2deg) scale(1); }
}

@keyframes blobFloatD {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  33%  { transform: translate3d(35px, 55px, 0) rotate(5deg) scale(1); }
  66%  { transform: translate3d(-50px, 15px, 0) rotate(-3deg) scale(1); }
  100% { transform: translate3d(-10px, -40px, 0) rotate(2deg) scale(1); }
}

@keyframes blobPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

/* если у пользователя reduce motion */
@media (prefers-reduced-motion: reduce) {
  .warum__blob { animation: none !important; }
}

@media (max-width: 1024px){
.warum__card-title{
    padding-left: 0;
    width: auto;
  }
  .warum__card{
    flex: 1 0 0;
  }
}
@media (max-width: 767px){
  .warum__card-title{
    padding-left: 0;
    width: auto;
  }
  .warum__card{
    flex: 0;
  }
  .warum__cards-wrap{
    flex-direction: column;
  }
  .warum__promo-title{
    font-size: 35px;
  }
  .warum__promo{
    padding: 20px;
  }
  .warum__promo-subtitle{
    font-size: 16px;
  }
  .warum__main-wrap{
    gap: 40px;
  }
  .warum{
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .warum__card-num-mob-left{
    text-align: end;
  }
}
/* 07. Warum Section End */

/* 08. Register Section Start */
.register{
  padding-bottom: 150px;
}

.register__main-wrap{
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.register__text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  z-index: 10;
}

.register__uptitle{
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 21.75px */
  letter-spacing: 5px;
  text-transform: uppercase;
}

.register__title{
  color: #FFF;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 49.5px */
}

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

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

.register__card{
  display: flex;
  width: 466px;
  padding: 30px;
  flex-direction: column;
  gap: 25px;
  justify-content: space-between;
  align-items: center;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.06) 100%);
  backdrop-filter: blur(6px);
}

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

.register__card-uptitle{
  display: flex;
  width: 111px;
  padding: 5px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 1000px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.10);
  color: var(--white, #FFF);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%; /* 23.25px */
}
.register__card-title{
 color: var(--white, #FFF);
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 155%; /* 38.75px */
}

.register__card-descr{
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%; /* 23.25px */
  text-align: center;
}

.register__card-descr span{
  text-align: center;
}

.register__card-subtitle{
  color: #B4BCD0;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%; /* 23.25px */
  padding-top: 15px;
}

.register__card-price{
  color: var(--white, #FFF);
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 155%; /* 38.75px */
  text-align: center;
}

.register__card-btn-wrap{
  display: flex;
  align-items: stretch;
  width: 100%;
  flex-direction: column;
  gap: 8px;
}

.btn-100{
  width: auto;
}

.pre-reg-alt-btn{
  color: #B4BCD0;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
    padding-top: 15px;
    margin-top: 20px;
}

.pre-reg-alt-btn a{
  color: #B4BCD0;
  font-weight: 600;
}

.register--video .register__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.register--video::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1900px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 10, 21, 0.00) 0%, #000A15 100%);
}

.register--video {
    position: relative;
    overflow: hidden;
    background: #000A15;
}

.register--video .register__bg {
    filter: blur(2px);
}

.register__wrap{
  z-index: 10;
}

.register--video::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 200px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(0, 10, 21, 0.00) 0%, #000A15 100%);
}

@media (max-width: 767px){
  .register__wrap{
    flex-direction: column;
  }
  .register__card{
    width: auto;
  }
  .register{
    padding-bottom: 60px;
  }
}
/* 08. Register Section End */



















/* 09. Footer Section Start */

.footer__main-wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.footer__title{
  color: #F5F5F5;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 128% */
}

.footer__main-content-wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.footer__main-content-wrap-top{
  display: flex;
  width: 100%;
  padding: 40px 0px;
  justify-content: space-between;
  align-items: center;
}

.footer__links-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.footer-link-btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-link-btn:hover {
  transform: scale(1.1);
}

.footer__main-content-wrap-bottom{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.footer__main-content-col1{
  display: flex;
  width: 695px;
  align-items: flex-start;
  gap: 60px;
}

.footer__main-content-col1, .footer__main-content-col2{
  flex: 1;
}

.footer__main-content-col1-item{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__main-content-title{
  padding-bottom: 2px;
  color: #F5F5F5;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 155.556% */
  text-transform: uppercase;
}

.footer__main-content-subtitle{
  color: #F5F5F5;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.foot-lnk{
  text-decoration: none;
  cursor: pointer;
}

.footer__main-content-col2{
  display: flex;
  justify-content: end;
  align-items: flex-end;
  align-self: stretch;
  
}

.footer__main-content-col2 p{
  width: 50%;
  color: #F5F5F5;
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.footer__main-bottom{
  border-top: 1px solid #898989;
  display: flex;
  width: 100%;
  padding-top: 50px;
  justify-content: space-between;
  align-items: center;
}

.footer__main-bottom a {
  color: #F5F5F5;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; 
  text-decoration: none;
  cursor: pointer;
  transition: text-decoration 0.3s ease; 
}

.footer__main-bottom a:hover {
  text-decoration: underline; 
}

.footer__main-bottom p{
  color: #F5F5F5;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

@media (max-width: 1024px) {
  .footer__main-content-wrap-bottom{
    flex-direction: column;
  }
  .footer__main-content-col1{
    width: 100%;
    flex-direction: column;
  }
  .footer__main-content-col2 p{
    margin-top: 60px;
    width: 100%;
    text-align: left;
  }
  .footer__main-content-col2{
    justify-content: start;
  }
  .footer__title{
    font-size: 31px;
    line-height: normal;
    text-align: start;
  }
  .footer__main-bottom{
    width: 100%;
    flex-direction: column;
    gap: 20px;
    text-align: start;
  }
  .footer__main-content-wrap-top{
    flex-direction: column;
    Gap: 20px;
    align-items: start;
  }
}
/* 09. Footer Section End */

/* 10. Pop-up Section Start */
.modal{
  position: fixed; inset: 0;
  display: none; align-items: center; justify-content: center;
  background: rgb(0 0 0 / 18%);
  backdrop-filter: blur(50px);
  z-index: 1000;
}
.modal.is-open{ display: flex; }

.modal__dialog {
    position: relative;
    max-width: 720px;
    width: calc(100% - 40px);
    border: 2px solid #00010e;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
    overflow: hidden;
    background: #000000ba;
}


.modal__dialog p{
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: #215FCB;
    padding-bottom: 20px;
}

.modal__close{
  position: absolute; right: 10px; top: 10px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: transparent; font-size: 48px; line-height: 1;
  cursor: pointer; color: #CFFEA3;
  z-index: 10;
}

.modal__form{
    margin-top: 35px;
}

body.no-scroll{ overflow: hidden; }

.modal__title{
    color: #FCD158;
    font-family: var(--font-accent);
    font-size: 50px;
    font-weight: 700;
    line-height: 125%;
    padding: 20px;
    background: url(../img/bg/main.webp) center center;
    background-size: cover;
    border-radius: 24px;
    margin-bottom: 10px;
}

.hero__form-alt-btn{
    color: #000000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    text-align: center;
    margin-top: 15px;
}

.hero__form-alt-btn a{
    color: #FCD158;
    font-weight: 700;
    
}

@media (max-width: 640px){
  .modal__dialog{ padding: 32px 20px; }
}

.secret-writer {
    background-image: url(https://stratoplan-school.com/archive/foundation/img/coaches/secret.webp), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: -15px, 0px;
    background-position-y: -3px, 00px;
    background-size: 140%;
}

.speaker__item-ico-o-ico{
  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: -20px, 00px;
    background-size: 140%;
}

.speaker__item-ico-1-ico{
      background-position: 0px -20px !important;
}

.speaker__item-ico-4-ico{
  background-position: 0px -10px;
}

.h3-mod{
  font-weight: 700;
  font-size: 18px;
}
/* 10. Pop-up Section End */


/* =================================== */
/* =================================== */
/* =================================== */
/* Danylo Oliinyk - https://iamdev.lol/ */
/* =====Februar 2026 For Statoplan =====*/
/* =================================== */
/* =================================== */
/* =================================== */