/* =================================== */
/* =================================== */
/* =================================== */
/* D///O*/
/* =====JULY 2026 For Statoplan =====*/
/* =================================== */
/* =================================== */
/* =================================== */
/* =================================== */
/* =================================== */
/* =================================== */






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

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

.header__wrap-col2{
  display: flex;

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

.header__wrap-col1-ul {
    gap: 28px;
    display: flex;
    width: auto;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

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

.header__wrap-col1-ul li{
  display: flex;
  align-items: center;
}

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


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

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

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

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

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

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

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

/* Иконка бургера */
.section-badge{
  display: inline-flex;
  width: fit-content;
  min-height: 54px;
  padding: 6px 18px;
  align-items: center;
  justify-content: center;
  border-radius: 8px 12px 9px 14px;
  background: #FEE3B5;
  transform: rotate(-4deg);
  transform-origin: center;
}

.section-badge img{
  display: block;
  width: var(--section-badge-img-width, auto);
  max-width: 100%;
  height: auto;
}

.section-badge--who{
  --section-badge-img-width: 246px;
}

.section-badge--what{
  --section-badge-img-width: 288px;
  align-self: flex-start;
  padding-right: 14px;
  padding-left: 14px;
}

.section-badge--schedule{
  --section-badge-img-width: 262px;
}

.section-badge--format{
  --section-badge-img-width: 301px;
  padding-right: 16px;
  padding-left: 16px;
}

.section-badge--speaker{
  --section-badge-img-width: 208px;
  align-self: flex-start;
  padding-right: 12px;
  padding-left: 12px;
}

.section-badge--feedback{
  --section-badge-img-width: 154px;
  align-self: flex-start;
  padding-right: 12px;
  padding-left: 12px;
}

.section-badge--faq{
  --section-badge-img-width: 401px;
  align-self: flex-start;
  padding-right: 16px;
  padding-left: 16px;
}

.section-badge--register{
  --section-badge-img-width: 362px;
  align-self: flex-start;
  padding-right: 16px;
  padding-left: 16px;
}

.burger-icon {
    display: none; 
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 30px;
    cursor: pointer;
}

.burger-line {
    background-color: #000;
    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;
    }
}

/* Thanks Page Start */
.thanks-page{
  background: var(--color-surface-muted);
}

.thanks-header{
  position: static;
  width: 100%;
  padding-top: 40px;
}

.thanks-header__wrap{
  display: flex;
  min-height: 86px;
  padding: 20px 28px;
  align-items: center;
  justify-content: flex-start;
  border-radius: 16px;
  border: 1px solid rgb(var(--color-black-rgb) / 0.06);
  background: rgb(var(--color-white-rgb) / 0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.thanks-logo,
.thanks-footer-logo{
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: #162422;
  text-decoration: none;
  line-height: 1;
}

.thanks-logo__name,
.thanks-footer-logo__name{
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .04em;
}

.thanks-logo__caption,
.thanks-footer-logo__caption{
  margin-top: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .36em;
  text-transform: uppercase;
}

.thanks-hero{
  padding-top: 60px;
  padding-bottom: 110px;
}

.thanks-hero__wrap{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
  gap: 96px;
  align-items: start;
}

.thanks-hero__content{
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.thanks-hero__eyebrow{
  color: #BE8330;
  font-size: 15px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.thanks-hero__title{
  margin: 28px 0 0;
  color: #162422;
  font-family: var(--font-accent);
  font-size: 64px;
  font-weight: 700;
  line-height: 112%;
}

.thanks-hero__title span{
  color: #BE8330;
}

.thanks-hero__text{
  display: flex;
  max-width: 610px;
  margin-top: 30px;
  flex-direction: column;
  gap: 20px;
  color: #6B6258;
  font-size: 18px;
  font-weight: 400;
  line-height: 155%;
}

.thanks-hero__telegram{
  display: inline-flex;
  min-height: 108px;
  width: min(100%, 500px);
  margin-top: 32px;
  padding: 18px 28px 18px 20px;
  align-items: center;
  gap: 20px;
  border-radius: 16px;
  background: #FEE3B5;
  color: #162422;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
  transition: transform .2s ease, box-shadow .2s ease;
}

.thanks-hero__telegram:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgb(var(--color-black-rgb) / .08);
}

.thanks-hero__telegram-icon{
  display: flex;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2CA5E0;
}

.thanks-hero__support{
  max-width: 650px;
  margin-top: 32px;
  color: #6B6258;
  font-size: 17px;
  line-height: 150%;
}

.thanks-hero__support a{
  color: inherit;
}

.thanks-form{
  width: 100%;
}

.thanks-form__inner{
  padding: 48px 40px 40px;
  border-radius: 24px;
  border: 1px solid rgb(var(--color-black-rgb) / 0.05);
  background: #FFF;
  box-shadow: 0 18px 60px rgb(var(--color-black-rgb) / 0.06);
}

.thanks-form__inner h2{
  color: #162422;
  font-size: 25px;
  font-weight: 700;
  line-height: 145%;
}

.thanks-form__inner p{
  margin-top: 24px;
  color: #6B6258;
  font-size: 15px;
  font-weight: 400;
  line-height: 145%;
}

.thanks-form__field{
  width: 100%;
  height: 148px;
  margin-top: 20px;
  border: 1px solid rgb(var(--color-black-rgb) / 0.07);
  border-radius: 10px;
  background: #FFF;
}

.thanks-form__button{
  display: flex;
  width: 100%;
  height: 56px;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 1000px;
  background: #E2AD68;
  color: #1E2B24;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
}

.thanks-footer-logo{
  color: var(--color-white);
}

.thanks-page .footer__btn{
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .thanks-hero__wrap{
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .thanks-form{
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .thanks-header{
    padding-top: 20px;
  }

  .thanks-header__wrap{
    min-height: 72px;
    justify-content: center;
    padding: 16px 20px;
  }

  .thanks-hero{
    padding-top: 42px;
    padding-bottom: 70px;
  }

  .thanks-hero__content{
    align-items: center;
    text-align: center;
  }

  .thanks-hero__title{
    margin-top: 18px;
    font-size: 42px;
  }

  .thanks-hero__text{
    margin-top: 24px;
    font-size: 16px;
  }

  .thanks-hero__telegram{
    min-height: 82px;
    padding: 14px 18px;
    gap: 14px;
    font-size: 18px;
  }

  .thanks-hero__telegram-icon{
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .thanks-form__inner{
    padding: 30px 20px 24px;
    border-radius: 18px;
  }

  .thanks-form__field{
    height: 124px;
  }
}
/* Thanks Page End */

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

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

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

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

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

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

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

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

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

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

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

/* 02. Hero Section Start */

/* ── Keyframes ── */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes badge-pop {
  0%   { opacity: 0; transform: rotate(-1deg) scale(.88); }
  70%  { transform: rotate(-1deg) scale(1.03); }
  100% { opacity: 1; transform: rotate(-1deg) scale(1); }
}

.hero{
  min-height: 80vh;
  padding-top: 200px;
  padding-bottom: 0;
  background-image: url('../img/hero-bg.png');
  background-size: 100% auto;
  background-position: center calc(100% + 80px);
  background-repeat: no-repeat;
}

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

.hero__col-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 37px;
  width: 643px;
  overflow: visible;
}

/* Animated entrance for hero children */
.hero__col-left h3 {
  animation: hero-fade-up .65s cubic-bezier(.22,.61,.36,1) both;
  animation-delay: .1s;
}
.hero__col-left h1 {
  animation: hero-fade-up .65s cubic-bezier(.22,.61,.36,1) both;
  animation-delay: .25s;
}
.hero__col-left h2 {
  animation: hero-fade-up .65s cubic-bezier(.22,.61,.36,1) both;
  animation-delay: .4s;
}
.hero__btn-group {
  animation: hero-fade-up .65s cubic-bezier(.22,.61,.36,1) both;
  animation-delay: .55s;
}
.hero__col-right {
  animation: hero-fade-up .7s cubic-bezier(.22,.61,.36,1) both;
  animation-delay: .3s;
}

h3{
  color: #BE8330;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20.15px; /* 134.333% */
  letter-spacing: 2.08px;
  text-transform: uppercase;
}

h1{
  color: #1E2B24;
  font-family: var(--font-accent);
  font-size: 68px;
  font-style: normal;
  font-weight: 600;
  line-height: 69.36px; /* 102% */
}

h1 span{
  color: #BE8330;
}

h2{
  color: #6B6258;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 26.1px */
}

.hero__btn-group{
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 16px;
  position: relative;
}

/* ── h1 underline ── */
.hero__h1-accent {
  position: relative;
}
.hero__underline {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: auto;
  animation: hero-fade-in .7s ease both;
  animation-delay: .6s;
  pointer-events: none;
}

/* ── Badge / плашка ── */
.hero__badge-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: badge-pop .7s cubic-bezier(.22,.61,.36,1) both;
  animation-delay: .8s;
}

.hero__badge-arrow {
  width: 52px;
  height: auto;
  flex-shrink: 0;
}

.hero__badge {
  width: 470px;
  height: 54px;
  transform: rotate(-1deg);
  border-radius: 8px 12px 9px 14px;
  background: #FEE3B5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px 0 18px;
  overflow: visible;
}

.hero__badge-text {
  width: auto;
  flex-shrink: 0;
}

.hero__badge-mug {
  flex-shrink: 0;
  width: 43px;
  height: 28px;
  margin-left: auto;
  position: relative;
  top: -3px;
}

.form-container{
  display: flex;
  width: 549px;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #FEFEFE;
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.03);
}

.form-container #form_245759_1,
.form-container #form_245759_1 iframe {
  width: 100% !important;
  max-width: 100% !important;
}

#next-form-host,
#next-form-host *,
.reg-modal__form-host,
.reg-modal__form-host * {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

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

.form-title span{
  color: #162422;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 36.25px */
}

.form-title p{
  color: #6B6258;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21.7px;
}

.form-title p b{
  color: #1E2B24;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 21.7px; /* 155% */
}

.hero__btn{
  display: flex;
  width: 220px;
  height: 55px;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 1000px;
  background: #60594E;
  text-decoration: none;
  color: #FFFDF8;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  letter-spacing: 0.32px;
}

.hero__col-right-2{
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #FFFDF8;
  box-shadow: 10px 10px 50px 0 rgba(0, 0, 0, 0.03), 5px 5px 5px 0 #FFF inset;
}

.hero__col-right-2-title{
  color: #BE8330;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.15px; /* 100.75% */
}

.hero__items-wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}

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

.hero__item p{
  color: #6B6258;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 21.75px */
}
/* 02. Hero Section End */




/* ── Hero adaptive ── */

/* Tablet (≤ 1100px) */
@media (max-width: 1100px) {
  .hero__wrap {
    gap: 40px;
  }
  .hero__col-left {
    width: 520px;
  }
  h1 {
    font-size: 54px;
    line-height: 56px;
  }
  .form-container {
    width: 420px;
    padding: 28px;
  }
  .hero__badge {
    width: 380px;
  }
  .hero__badge-text {
    height: 44px;
  }
}

/* Tablet portrait (≤ 900px) */
@media (max-width: 900px) {
  .hero {
    padding-top: 130px;
    padding-bottom: 48px;
    background-position: right bottom;
  }
  .hero__wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .hero__col-left {
    width: 100%;
    gap: 24px;
  }
  .hero__col-right {
    width: 100%;
  }
  .form-container {
    width: 100%;
    padding: 28px;
  }
  h1 {
    font-size: 48px;
    line-height: 50px;
  }
  h2 {
    font-size: 16px;
  }
  .hero__badge {
    width: 360px;
  }
  .hero__badge-text {
    height: 44px;
  }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  .hero {
    padding-top: 140px;
    padding-bottom: 32px;
    background-position: 70% bottom;
  }
  .hero__wrap {
    gap: 32px;
  }
  .hero__col-left {
    gap: 20px;
  }
  h3 {
    font-size: 12px;
    letter-spacing: 1.4px;
  }
  h1 {
    font-size: 36px;
    line-height: 38px;
  }
  h2 {
    font-size: 15px;
  }
  .hero__btn {
    width: 190px;
    height: 48px;
    font-size: 14px;
  }
  /* Badge hidden on very small screens — decorative only */
  .hero__badge-wrap {
    display: none;
  }
  .form-container {
    padding: 20px 16px;
    border-radius: 16px;
  }
}

/* 03. Next Section Start */
.next{
  box-sizing: border-box;
  padding-top: 150px;
  padding-bottom: 75px;
}

.next *{
  box-sizing: border-box;
}

.next__wrap{
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

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

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

.next__header-title{
  color: #BE8330;
  font-family: var(--font-accent);
  font-size: 65px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 94.25px */
}

.next__header-subtitle{
  display: flex;
  align-items: center;
  gap: 25px;
}

.next__header-subtitle p{
  color: #1E2B24;
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 50.75px */
}

.next__items{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.next__descr{
  color: #162422;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 36.25px */
}

.next__descr-badge{
  display: inline-block;
  padding: 11px 22px 10px;
  border-radius: 8px 12px 9px 14px;
  background: #FEE3B5;
  transform: rotate(-2deg);
  transform-origin: left center;
}

.next__items{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

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

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

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

.next__timer-wrap{
  display: flex;
  width: 403px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.next__timer{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  align-self: stretch;
  padding-left: 60px;
}

.next__timer-item{
  display: flex;
  width: 100px;
  height: 84px;
  flex-direction: column;
  padding: 14px 22px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  border: 1px solid #E8DFCD;
  background: #FFF;
}

.next__timer-item span{
  color: #1E2B24;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 100% */
}

.next__timer-item p{
  color: #6B6258;
  text-align: center;
  font-size: 11.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 17.825px; /* 155% */
}

@media (max-width: 1200px) {
  .next__wrap{
    gap: 34px;
  }

  .next__col-left{
    flex: 1 1 auto;
  }

  .next .form-container{
    width: 440px;
  }
}

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

  .next__wrap{
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
  }

  .next__header-title{
    font-size: 52px;
    line-height: 120%;
  }

  .next__header-subtitle{
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .next__header-subtitle p{
    font-size: 28px;
    line-height: 120%;
  }

  .next .hero__col-right,
  .next .form-container{
    width: 100%;
  }

  .next__timer-wrap{
    width: 100%;
    align-items: flex-start;
  }

  .next__timer{
    justify-content: flex-start;
    padding-left: 0;
  }
}

@media (max-width: 680px) {
  .next{
    padding-top: 60px;
    padding-bottom: 45px;
  }

  .next__col-left{
    gap: 26px;
  }

  .next__header-title{
    font-size: 34px;
  }

  .next__header-subtitle{
    gap: 10px;
  }

  .next__header-subtitle p{
    font-size: 20px;
  }

  .next__header-subtitle svg{
    width: 7px;
    height: 7px;
  }

  .next__descr{
    font-size: 20px;
  }

  .next__descr-badge{
    padding: 9px 14px 8px;
  }

  .next__item{
    align-items: flex-start;
    gap: 14px;
  }

  .next__item svg{
    width: 24px;
    min-width: 24px;
    height: auto;
    margin-top: 2px;
  }

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

  .next__item br,
  .next__descr br{
    display: none;
  }

  .next__timer-wrap > img{
    max-width: 100%;
    height: auto;
  }

  .next__timer{
    width: 100%;
    gap: 10px;
  }

  .next__timer-item{
    flex: 1;
    width: auto;
    height: 74px;
    padding: 12px 10px;
  }

  .next__timer-item span{
    font-size: 26px;
    line-height: 26px;
  }
}
/* 03. Next Section End */

/* 04. Who Section Start */
.who{
  box-sizing: border-box;
  padding-top: 75px;
  padding-bottom: 75px;
}

.who *{
  box-sizing: border-box;
}

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

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

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

.who__subtitle{
  color: #6B6258;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 26.1px */
}

.who__cards-wrap{
  display: flex;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}

.who__card{
  display: flex;
  width: 322px;
  min-block-size: 490px;
  padding: 40px;
  flex-direction: column;
  gap: 30px;

  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #FFFDF8;
  box-shadow: 5px 5px 5px 0 #FFF inset, 10px 10px 50px 0 rgba(0, 0, 0, 0.03);
}

.who__card-title{
  color: #162422;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 29px */
}

.who__card-descr{
  color: #6B6258;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 21.75px */
}

.who__card img{
  display: flex;
  justify-content: center;
  align-items: center;

  width: 200px;
  height: 200px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

@media (max-width: 1200px) {
  .who__cards-wrap{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .who__card{
    width: 100%;
    min-block-size: 430px;
  }
}

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

  .who__wrap{
    gap: 45px;
  }

  .who__title{
    font-size: 38px;
    line-height: 120%;
  }

  .who__subtitle{
    max-width: 560px;
  }
}

@media (max-width: 680px) {
  .who{
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .who__wrap{
    gap: 30px;
  }

  .who__header img{
    max-width: 210px;
    height: auto;
  }

  .who__title{
    font-size: 30px;
  }

  .who__subtitle{
    font-size: 15px;
  }

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

  .who__card{
    min-block-size: auto;
    padding: 24px;
    gap: 22px;
    border-radius: 18px;
  }

  .who__card img{
    width: 150px;
    height: 150px;
  }

  .who__card-title{
    font-size: 18px;
  }
}
/* 04. Who Section End */

/* 05. What Section Start */
.what{
  box-sizing: border-box;
  padding-top: 75px;
  padding-bottom: 120px;
}

.what *{
  box-sizing: border-box;
}

.what__wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 110px;
}

.what__layout{
  position: relative;
  width: 100%;
  min-height: 1064px;
}

.what__intro{
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 470px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.what__intro img{
  width: 288px;
  height: auto;
}

.what__title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}

.what__subtitle{
  max-width: 390px;
  color: #6B6258;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}

.what__line{
  position: absolute;
  top: 78px;
  left: 50%;
  display: flex;
  width: 128px;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.what__line img{
  display: block;
  width: 128px;
  height: 236px;
  margin-top: -2px;
}

.what__line img:not(:first-child){
  opacity: .36;
}

.what__dot{
  position: absolute;
  left: 50%;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 8px solid #FFFDF8;
  border-radius: 50%;
  background: #D89B38;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transform: translateX(-50%);
}

.what__dot--1{ top: 74px; }
.what__dot--2{ top: 300px; }
.what__dot--3{ top: 530px; }
.what__dot--4{ top: 765px; }
.what__dot--5{ top: 1000px; }

.what__card{
  position: absolute;
  z-index: 1;
  display: grid;
  width: 500px;
  min-height: 135px;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 30px;
  padding: 40px;
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #FEFEFE;
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.03);
}

.what__card--1,
.what__card--3,
.what__card--5{
  right: 0;
}

.what__card--2,
.what__card--4{
  left: 0;
}

.what__card--1{ top: 0; }
.what__card--2{ top: 210px; }
.what__card--3{ top: 448px; }
.what__card--4{ top: 686px; }
.what__card--5{ top: 924px; }

.what__number{
  color: #BE8330;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: var(--font-accent);
  font-size: 45px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.what__card-content{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.what__card-title{
  color: #162422;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%;
}

.what__card-text{
  color: #6B6258;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}

.what__btn{
  display: flex;
  width: 260px;
  height: 55px;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 1000px;
  background: #E2AD68;
  color: #1E2B24;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.32px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.what__btn:hover{
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.what__btn:active{
  transform: scale(.98);
}

@media (max-width: 1200px) {
  .what__card{
    width: 430px;
  }
}

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

  .what__wrap{
    gap: 40px;
  }

  .what__layout{
    display: grid;
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .what__intro,
  .what__card{
    position: static;
    width: auto;
  }

  .what__intro{
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }

  .what__subtitle{
    max-width: 520px;
  }

  .what__line,
  .what__dot{
    display: none;
  }

  .what__card{
    min-height: 100%;
    padding: 30px;
    gap: 20px;
  }
}

@media (max-width: 680px) {
  .what{
    padding-top: 45px;
    padding-bottom: 70px;
  }

  .what__layout{
    grid-template-columns: 1fr;
  }

  .what__intro img{
    width: 230px;
  }

  .what__title{
    font-size: 34px;
  }

  .what__subtitle{
    font-size: 15px;
  }

  .what__card{
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 18px;
  }

  .what__number{
    font-size: 38px;
  }

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

  .what__btn{
    width: calc(100% - 40px);
    max-width: 320px;
  }
}
/* 05. What Section End */

/* 06. Schedule Section Start */
.schedule{
  box-sizing: border-box;
  padding-top: 90px;
  padding-bottom: 120px;
}

.schedule *{
  box-sizing: border-box;
}

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

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

.schedule__header img{
  width: 262px;
  height: auto;
}

.schedule__title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}

.schedule__subtitle{
  color: #6B6258;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}

.schedule__list{
  display: flex;
  width: 100%;
  max-width: 1070px;
  flex-direction: column;
  gap: 20px;
}

.schedule__item{
  overflow: hidden;
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #FEFEFE;
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.03);
  transition: box-shadow .25s ease, transform .25s ease;
}

.schedule__item:hover{
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.06);
}

.schedule__head{
  display: grid;
  width: 100%;
  grid-template-columns: 270px 1fr 28px;
  align-items: start;
  gap: 42px;
  padding: 38px 32px 38px 40px;
  text-align: left;
  cursor: pointer;
}

.schedule__date{
  display: flex;
  min-height: 70px;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding-right: 38px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.schedule__badge{
  display: none;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 8px;
  border: 1px solid rgba(190, 131, 48, 0.08);
  background: #FFF6E9;
  color: #BE8330;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.2px;
}

.schedule__item:first-child .schedule__badge{
  display: flex;
}

.schedule__badge img{
  width: 20px;
  height: auto;
}

.schedule__day{
  color: #6B6258;
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.schedule__time{
  display: flex;
  align-items: center;
  gap: 20px;
  color: #6B6258;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%;
}

.schedule__calendar{
  position: relative;
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.schedule__calendar::before{
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 8px;
  height: 2px;
  background: currentColor;
}

.schedule__calendar::after{
  content: "";
  position: absolute;
  right: 4px;
  bottom: 3px;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #FEFEFE;
}

.schedule__content{
  display: flex;
  min-height: 70px;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.schedule__name{
  color: #162422;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
}

.schedule__body{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .32s ease, margin-top .25s ease, opacity .2s ease;
}

.schedule__body ul{
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #6B6258;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  list-style-position: outside;
  padding-left: 18px;
}

.schedule__btn{
  display: flex;
  width: 260px;
  height: 55px;
  margin-top: 20px;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  background: #E2AD68;
  color: #1E2B24;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.32px;
}

.schedule__arrow{
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.schedule__arrow::before{
  content: "";
  position: absolute;
  inset: 4px;
  border-right: 3px solid #0C4B4A;
  border-bottom: 3px solid #0C4B4A;
  transform: rotate(45deg);
  transition: transform .25s ease;
}

.schedule__item.is-open .schedule__head{
  padding-top: 40px;
  padding-bottom: 40px;

  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #FFFDF8;
  box-shadow: 5px 5px 5px 0 #FFF inset, 10px 10px 50px 0 rgba(0, 0, 0, 0.03);
}

.schedule__item.is-open .schedule__date{
  color: #BE8330;
}

.schedule__item.is-open .schedule__day{
  color: #BE8330;
  font-family: var(--font-accent);
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.schedule__item.is-open .schedule__time{
  color: #6B6258;
  font-size: 18px;
  font-weight: 500;
}

.schedule__item.is-open .schedule__body{
  margin-top: 18px;
  max-height: 360px;
  opacity: 1;
}

.schedule__item.is-open .schedule__arrow::before{
  transform: translateY(5px) rotate(225deg);
}

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

  .schedule__wrap{
    gap: 45px;
  }

  .schedule__title{
    font-size: 38px;
  }

  .schedule__head{
    grid-template-columns: 220px 1fr 24px;
    gap: 28px;
    padding: 32px 26px;
  }

  .schedule__date{
    padding-right: 28px;
  }

  .schedule__item.is-open .schedule__day{
    font-size: 40px;
  }
}

@media (max-width: 760px) {
  .schedule{
    padding-top: 45px;
    padding-bottom: 70px;
  }

  .schedule__wrap{
    gap: 34px;
  }

  .schedule__header img{
    width: 220px;
  }

  .schedule__title{
    font-size: 30px;
  }

  .schedule__subtitle{
    font-size: 14px;
  }

  .schedule__subtitle br,
  .schedule__name br{
    display: none;
  }

  .schedule__list{
    gap: 14px;
  }

  .schedule__item{
    border-radius: 18px;
  }

  .schedule__head{
    grid-template-columns: 1fr 22px;
    gap: 20px;
    padding: 24px;
  }

  .schedule__date{
    grid-column: 1 / -1;
    min-height: auto;
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .schedule__content{
    min-height: auto;
  }

  .schedule__name{
    font-size: 17px;
  }

  .schedule__arrow{
    grid-column: 2;
    grid-row: 2;
    margin-top: 2px;
  }

  .schedule__item.is-open .schedule__day{
    font-size: 38px;
  }

  .schedule__item.is-open .schedule__time{
    font-size: 15px;
  }

  .schedule__body ul{
    font-size: 14px;
  }

  .schedule__btn{
    width: 100%;
  }
}
/* 06. Schedule Section End */

/* 07. Format Section Start */
.format{
  box-sizing: border-box;
  padding-top: 90px;
  padding-bottom: 100px;
}

.format *{
  box-sizing: border-box;
}

.format__wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 76px;
}

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

.format__mark{
  color: #000;
  font-family: var(--font-accent);
  font-size: 95px;
  font-style: normal;
  font-weight: 400;
  line-height: 72px;
}

.format__header img{
  width: 301px;
  height: auto;
}

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

.format__items{
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}

.format__item{
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.format__item img{
  width: 200px;
  height: auto;
  margin-bottom: 36px;
}

.format__item-title{
  color: #162422;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
}

.format__item-text{
  max-width: 230px;
  margin-top: 12px;
  color: #6B6258;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}

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

  .format__wrap{
    gap: 52px;
  }

  .format__title{
    font-size: 38px;
  }

  .format__items{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 28px;
  }
}

@media (max-width: 680px) {
  .format{
    padding-top: 45px;
    padding-bottom: 60px;
  }

  .format__wrap{
    gap: 34px;
  }

  .format__mark{
    font-size: 72px;
    line-height: 54px;
  }

  .format__header img{
    width: 245px;
  }

  .format__title{
    font-size: 30px;
  }

  .format__items{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .format__item img{
    width: 170px;
    margin-bottom: 22px;
  }
}
/* 07. Format Section End */

/* 08. Speaker Section Start */
.speaker{
  box-sizing: border-box;
  padding-top: 100px;
  padding-bottom: 120px;
}

.speaker *{
  box-sizing: border-box;
}

.speaker__wrap{
  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: start;
  gap: 70px;
}

.speaker__intro{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding-top: 32px;
}

.speaker__intro img{
  width: 208px;
  height: auto;
}

.speaker__title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 118%;
}

.speaker__subtitle{
  max-width: 270px;
  color: #6B6258;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}

.speaker__cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
}

.speaker__card{
  min-width: 0;
}

.speaker__photo{
  --speaker-photo-scale: 1;
  --speaker-photo-x: 0px;
  --speaker-photo-y: 0px;
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 1.2 / 1;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background-image: url('../img/speaker-bg.png');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

.speaker__photo img{
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 92%;
  height: 94%;
  object-fit: contain;
  object-position: bottom center;
  transform: translate(var(--speaker-photo-x), var(--speaker-photo-y)) scale(var(--speaker-photo-scale));
  transform-origin: bottom center;
}

.speaker__photo--pankratov {
    --speaker-photo-scale: 2.0;
    --speaker-photo-x: 18px;
    --speaker-photo-y: 300px;
}

.speaker__photo--pankratov img{
  max-width: 98%;
  height: 100%;
}

.speaker__photo--orlov {
    --speaker-photo-scale: 1.6;
    --speaker-photo-x: 0px;
    --speaker-photo-y: 260px;
}

.speaker__photo--orlov img{
  height: 98%;
}

.speaker__name{
  margin-top: 34px;
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.speaker__role{
  margin-top: 12px;
  color: #BE8330;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%;
}

.speaker__line{
  width: 50px;
  height: 1px;
  margin-top: 28px;
  background: #BE8330;
}

.speaker__text{
  max-width: 390px;
  margin-top: 28px;
  color: #6B6258;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}

@media (max-width: 1100px) {
  .speaker__wrap{
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .speaker__intro{
    align-items: center;
    padding-top: 0;
    text-align: center;
  }

  .speaker__subtitle{
    max-width: 520px;
  }
}

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

  .speaker__cards{
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .speaker__photo--pankratov {
    --speaker-photo-x: 46px;
  }

  .speaker__title{
    font-size: 34px;
  }

  .speaker__subtitle{
    font-size: 15px;
  }

  .speaker__name{
    margin-top: 24px;
    font-size: 26px;
  }

  .speaker__role{
    font-size: 15px;
  }

  .speaker__text{
    max-width: none;
  }
}

@media (max-width: 480px) {
  .speaker__intro img{
    width: 170px;
  }

  .speaker__title{
    font-size: 30px;
  }

  .speaker__photo{
    aspect-ratio: 1 / .92;
  }

  .speaker__photo--pankratov {
    --speaker-photo-x: 52px;
  }
}
/* 08. Speaker Section End */

/* 09. Feedback Section Start */
.feedback{
  box-sizing: border-box;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 110px;
}

.feedback *{
  box-sizing: border-box;
}

.feedback__header{
  display: flex;
  max-width: 980px;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

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

.feedback__subtitle{
  color: #6B6258;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}

.feedback__marquee{
  width: 100%;
  margin-top: 72px;
  overflow: hidden;
}

.feedback__track{
  display: flex;
  width: max-content;
  align-items: stretch;
  gap: 30px;
  animation: feedback-marquee 68s linear infinite;
  will-change: transform;
}

.feedback__marquee:hover .feedback__track{
  animation-play-state: paused;
}

.feedback__card{
  display: block;
  flex: 0 0 390px;
  height: 174px;
  overflow: hidden;
  margin: 0;
  background: #111;
}

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

.feedback__nav{
  display: none;
}

.feedback__btn{
  position: relative;
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(30, 43, 36, 0.12);
  border-radius: 50%;
  background: #FFFDF8;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.feedback__btn::before{
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #0C4B4A;
  border-left: 2px solid #0C4B4A;
}

.feedback__prev::before{
  transform: translateX(2px) rotate(-45deg);
}

.feedback__next::before{
  transform: translateX(-2px) rotate(135deg);
}

.feedback__btn:hover{
  transform: scale(1.05);
  background: #FEE3B5;
}

.feedback__btn:active{
  transform: scale(.96);
}

.feedback__btn.is-disabled{
  opacity: .35;
  pointer-events: none;
}

@keyframes feedback-marquee{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(calc(-50% - 15px));
  }
}

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

  .feedback__title{
    font-size: 38px;
  }

  .feedback__marquee{
    margin-top: 52px;
  }
}

@media (max-width: 760px) {
  .feedback{
    padding-top: 58px;
    padding-bottom: 76px;
  }

  .feedback__header{
    align-items: center;
    text-align: center;
  }

  .feedback__title{
    font-size: 30px;
  }

  .feedback__subtitle{
    font-size: 15px;
  }

  .feedback__marquee{
    width: auto;
    margin: 34px 20px 0;
    overflow: hidden;
  }

  .feedback__track{
    width: auto;
    align-items: flex-start;
    gap: 16px;
    animation: none;
    transition: transform .35s ease;
  }

  .feedback__card{
    flex: 0 0 100%;
    height: clamp(170px, 32vw, 230px);
    min-height: 0;
    border-radius: 0;
  }

  .feedback__card[aria-hidden="true"]{
    display: none;
  }

  .feedback__card img{
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: top left;
    background: #111;
  }

  .feedback__nav{
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .section-badge--feedback img{
    width: 132px;
  }

  .feedback__marquee{
    margin-right: 16px;
    margin-left: 16px;
  }
}
/* 09. Feedback Section End */

/* 10. FAQ Section Start */
.faq{
  box-sizing: border-box;
  padding-top: 80px;
  padding-bottom: 120px;
}

.faq *{
  box-sizing: border-box;
}

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

.faq__intro{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-top: 18px;
}

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

.faq__list{
  overflow: hidden;
  width: 100%;
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #FFFDF8;
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.03);
}

.faq__item{
  border-bottom: 1px solid rgba(30, 43, 36, 0.08);
}

.faq__item:last-child{
  border-bottom: 0;
}

.faq__head{
  display: flex;
  width: 100%;
  min-height: 82px;
  padding: 0 48px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 0;
  background: transparent;
  color: #162422;
  text-align: left;
  font-family: inherit;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  cursor: pointer;
}

.faq__arrow{
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.faq__arrow::before{
  content: "";
  position: absolute;
  inset: 4px;
  border-top: 3px solid #0C4B4A;
  border-left: 3px solid #0C4B4A;
  transform: translateY(4px) rotate(45deg);
  transition: transform .25s ease;
}

.faq__content{
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq__answer{
  padding: 0 48px 32px;
  color: #6B6258;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.faq__item.is-open .faq__arrow::before{
  transform: translateY(-2px) rotate(225deg);
}

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

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

  .faq__intro{
    align-items: center;
    padding-top: 0;
    text-align: center;
  }

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

@media (max-width: 680px) {
  .faq{
    padding-top: 58px;
    padding-bottom: 76px;
  }

  .section-badge--faq{
    align-self: center;
    padding-right: 12px;
    padding-left: 12px;
  }

  .section-badge--faq img{
    width: 300px;
  }

  .faq__wrap{
    gap: 30px;
  }

  .faq__title{
    font-size: 34px;
  }

  .faq__list{
    border-radius: 18px;
  }

  .faq__head{
    min-height: 70px;
    padding: 0 22px;
    gap: 18px;
    font-size: 18px;
  }

  .faq__answer{
    padding: 0 22px 24px;
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .section-badge--faq img{
    width: 250px;
  }
}
/* 10. FAQ Section End */

/* 11. Register Section Start */
.register{
  box-sizing: border-box;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 120px;
}

.register *{
  box-sizing: border-box;
}

.register__wrap{
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(430px, .82fr);
  align-items: center;
  gap: 28px;
}

.register__media{
  --register-image-scale: 1.22;
  --register-image-x: -14px;
  --register-image-y: 0px;
  min-width: 0;
}

.register__media img{
  display: block;
  width: calc(100% * var(--register-image-scale));
  max-width: none;
  height: auto;
  transform: translate(var(--register-image-x), var(--register-image-y));
  transform-origin: center;
}

.register__media{
  position: relative;
}

.register__card-overlay {
    position: absolute;
    top: 33%;
    left: 40%;
    transform: translateX(-56%) rotate(355deg);
    text-align: center;
    pointer-events: none;
    width: 52%;
}

.register__card-label{
  display: block;
  font-family: 'Craftwork Grotesk', sans-serif;
  font-size: clamp(8px, 1.1vw, 12px);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #C4A265;
  margin-bottom: 6px;
}

.register__card-divider{
  width: 40px;
  height: 1px;
  background: #C4A265;
  margin: 0 auto 10px;
  opacity: .5;
}

.register__card-date{
  font-family: 'Craftwork Grotesk', sans-serif;
  font-size: clamp(18px, 3.2vw, 38px);
  font-weight: 500;
  color: #1E2B24;
  line-height: 1;
  margin: 0 0 10px;
  letter-spacing: -.01em;
}

.register__card-time{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Manrope, sans-serif;
  font-size: clamp(9px, 1.3vw, 14px);
  color: #6B6258;
  margin: 0;
}

.register__card-time img{
  width: clamp(14px, 1.8vw, 20px);
  height: auto;
  opacity: .7;
}

.register__content{
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.register__title{
  margin: 14px 0 0;
  color: #000;
  font-family: var(--font-accent);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 128%;
}

.register__divider{
  display: grid;
  width: 330px;
  max-width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.register__divider span{
  display: block;
  height: 1px;
  background: #BE8330;
}

.register__divider img{
  display: block;
  width: 23px;
  height: auto;
}

.register__text{
  max-width: 560px;
  margin-top: 30px;
  color: #6B6258;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}

.register__btn{
  display: flex;
  width: 300px;
  height: 58px;
  margin-top: 44px;
  padding: 5px 20px;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  background: #E2AD68;
  color: #1E2B24;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.32px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.register__btn:hover{
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.register__btn:active{
  transform: scale(.98);
}

@media (max-width: 1120px) {
  .register__wrap{
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    gap: 26px;
  }

  .register__media{
    --register-image-scale: 1.14;
    --register-image-x: -8px;
  }

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

@media (max-width: 900px) {
  .register{
    padding-top: 58px;
    padding-bottom: 90px;
  }

  .register__wrap{
    grid-template-columns: 1fr;
  }

  .register__media{
    order: 2;
    --register-image-scale: 1;
    --register-image-x: 0px;
  }

  .register__content{
    align-items: center;
    text-align: center;
  }

  .section-badge--register{
    align-self: center;
  }

  .register__title{
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .register{
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .register__media{
    display: none;
  }

  .section-badge--register img{
    width: 285px;
  }

  .register__title{
    margin-top: 10px;
    font-size: 30px;
    line-height: 125%;
  }

  .register__divider{
    width: 240px;
    gap: 12px;
    margin-top: 24px;
  }

  .register__text{
    margin-top: 24px;
    font-size: 16px;
  }

  .register__btn{
    width: 100%;
    max-width: 320px;
    height: 56px;
    margin-top: 32px;
  }
}
/* 11. Register Section End */

@media (max-width: 680px) {
  .section-badge{
    min-height: 44px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .section-badge--who img{
    width: 210px;
  }

  .section-badge--what{
    align-self: center;
  }

  .section-badge--what img{
    width: 230px;
  }

  .section-badge--schedule img{
    width: 220px;
  }

  .section-badge--format img{
    width: 245px;
  }

  .section-badge--speaker{
    align-self: center;
  }

  .section-badge--speaker img{
    width: 170px;
  }

  .section-badge--feedback{
    align-self: center;
  }
}

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

/* ── Registration modal ── */
.reg-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.reg-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.reg-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.reg-modal__box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px 36px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  transform: translateY(12px);
  transition: transform 0.2s ease;
}
.reg-modal.is-open .reg-modal__box {
  transform: translateY(0);
}
.reg-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4f4f5;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #71717a;
  transition: background 0.15s, color 0.15s;
}
.reg-modal__close:hover {
  background: #e4e4e7;
  color: #18181b;
}
.reg-modal__title {
  font-family: var(--font-accent, sans-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: #1E2B24;
  margin-bottom: 24px;
  padding-right: 32px;
}
.reg-modal__form-host {
  min-height: 80px;
}

@media (max-width: 600px) {
  .reg-modal__box {
    padding: 32px 20px 28px;
    border-radius: 12px;
    max-height: 95vh;
  }
  .reg-modal__title {
    font-size: 17px;
  }
}

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

footer{
  background: var(--color-surface-muted);
}

.footer__wrap{
  gap: 50px;
  display: flex;
  padding: 40px 40px 0 40px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-radius: 24px;
  background: var(--color-ink-900);
}

.footer__header-wrap{
  display: flex;
  align-items: flex-start;
  gap: 80px;
  align-self: stretch;
  justify-content: space-between;
}

.footer__col{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 180px;
}

.footer__col-main{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
  width: 230px;
}

.footer__col-main-title{
  color: var(--white, var(--color-white));
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
}

.footer__col-main-btns{
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}

.footer__btn{
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgb(var(--color-white-rgb) / 0.10);
  background: var(--color-ink-700);
}

.footer__col-title{
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.5px; /* 150% */
  background: var(--color-orange);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__col-content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer__col-content-link{
  color: var(--white, var(--color-white));
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.footer__col-acc{
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid rgb(var(--color-white-rgb) / 0.10);
  background: var(--color-ink-700);
}

.footer__col-acc-title{
  color: var(--white, var(--color-white));
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 133.333% */
}

.footer__col-acc-btn{
  display: flex;
  padding: 16px 48.2px 16px 48.21px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  border-radius: 10px;
  border: 1px solid var(--color-orange);
  background: var(--color-ink-900);
  text-decoration: none;
}

.footer__col-acc-btn span{
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  background: var(--color-line-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.footer__footer{
  display: flex;
  padding: 24px 0;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  border-top: 1px solid var(--color-text-secondary);
}

.footer__footer p{
  color: var(--white, var(--color-white));
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.footer__footer-btn{
  color: var(--white, var(--color-white));
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

@media (max-width: 1024px) {
  .footer__header-wrap{
    flex-wrap: wrap;
  }
}

/* mobile */
@media (max-width: 768px) {
  .footer__header-wrap, .footer__footer{
    flex-direction: column;
  }
/*   .footer__wrap{
        padding: 40px 0px 0 0px;
  } */
  .footer__col-main, .footer__col, .footer__col-acc{
    width: auto;
  }
  .footer__header-wrap{
    gap: 40px;
  }
  .thanks-hero__telegram{
    width: auto;
  }

  .form-title{
    flex-direction: column;
    gap: 15px;
  }
}
/* 16. Footer Section End */
