*, *::before, *::after {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova/ProximaNova-Regular.eot');
    src: url('../fonts/ProximaNova/ProximaNova-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/ProximaNova/ProximaNova-Regular.woff') format('woff'),
    url('../fonts/ProximaNova/ProximaNova-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova/ProximaNova-Bold.eot');
    src: url('../fonts/ProximaNova/ProximaNova-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/ProximaNova/ProximaNova-Bold.woff') format('woff'),
    url('../fonts/ProximaNova/ProximaNova-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    margin: 0;
    background: #0D1117;
}

h1 {
    margin: 0;
}

.container {
    max-width: 1140px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Затемнение фона + центрирование */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* ← было 0.3, теперь 0.7 для темноты */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* Показываем при добавлении класса */
.modal-overlay.show {
    display: flex;
}

/* Стили самого окна */
.modal-window {
    display: inline-flex;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    border-radius: 16px;
    border: 1px solid var(--blue-light, #08BCCA);
    background: var(--yellow, #CFE52D);
    box-shadow: 0px 4px 16px 0px rgba(34, 255, 249, 0.24);
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.modal-text {
    color: var(--blue-dark, #012139);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 16.8px */
}

.modal-text.ft-18 {
    font-size: 18px;
}

.video-container {
    position: relative;
    width: 100%; /* Ширина контейнера всегда 100% от родителя */
    padding-bottom: 56.25%; /* Соотношение сторон 16:9 (9/16 = 0.5625 * 100 = 56.25%) */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.modal-button {
    display: flex;
    width: 100%;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;

    border: none;
    border-radius: 16px;
    background: var(--color-button, linear-gradient(92deg, rgba(34, 255, 249, 0.90) 1.41%, rgba(20, 153, 149, 0.90) 99.77%));
    box-shadow: 0px 4px 12px 0px rgba(14, 23, 30, 0.26);
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;

    color: var(--white, #FFF);

    /* title/h3 */
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 33.6px */
}

.modal-button:hover {
    transform: translateY(-1px);
    box-shadow: 0px 6px 14px 0px rgba(14, 23, 30, 0.35);
}


/* Адаптивність */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    padding: 10px 0;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    gap: 10px;
    background: var(--yellow, #CFE52D);
}

.marquee {
    display: flex;
    width: max-content;
    gap: 10px;
    animation: scroll 10s linear infinite;
}

.marquee span {
    white-space: nowrap;
    color: var(--blue-dark, #012139);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 25.2px */
}

.marquee-track {
    display: flex;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.header__wrap {
    display: flex;
    padding: 24px 0;
    align-items: center;
    justify-content: center;
}

.header__logo {
    width: 251px;
}

.header__countdown {
    display: flex;
    padding: 16px 24px;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border-radius: 16px;
    border: 1px solid var(--blue-light, #08BCCA);
    background: var(--blue-light-15, rgba(8, 188, 202, 0.15));
}

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

#countdown {
    width: 300px;
}

.header__countdown__label {
    color: var(--white-80, rgba(255, 255, 255, 0.80));
    /* bode/large */
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 28px */
}

.header__countdown__value {
    color: var(--yellow, #CFE52D);
    /* title/h2 */
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 44.8px */
}

.header__countdown__hr {
    color: #FFF;
    text-align: center;

    /* bode/large */
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 28px */
}


.promo__wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    /*min-height: 100vh;*/
    /*height: 862px;*/
}

.promo__title {
    color: #E8E8E8;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);

    /* title/h1 */
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 100.8px */
}

.promo__descr {
    color: #A0A0A0;
    text-align: center;

    /* title/h2 */
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 44.8px */
}

.promo__badge {
    display: flex;
    padding: 4px 32px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: 26px;
    background: var(--white-80, rgba(255, 255, 255, 0.80));
}

.promo__badge__title {
    color: var(--blue-dark, #012139);
    text-align: center;

    /* title/h3 */
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 33.6px */
}

.promo__badge__text {
    color: var(--blue-dark, #012139);
    text-align: center;

    /* bode/body smal */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
}

.promo__subscribers {
    display: block;
    margin: 0 auto;
    margin-top: 22px;
}

.promo__text {
    text-align: center;
    margin-top: 10px;
    color: var(--white, #FFF);

    /* bode/body smal */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
}

.subscribe {
    padding: 36px 0;
}

.subscribe__wrap {
    display: flex;
    align-items: flex-end;
    gap: 104px;
    align-self: stretch;
}

.subscribe__main, .subscribe__form {
    width: calc(50% - 52px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.subscribe__main__title {
    width: 100%;
    color: var(--white, #FFF);
    text-align: center;

    /* title/h2 */
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 44.8px */
    margin-bottom: 12px;
}

.subscribe__main__item {
    width: calc(50% - 12px);
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    padding: 12px 24px;
    align-items: flex-start;
    gap: 16px;
    border-radius: 8px;
    border: 1px solid var(--blue-90, rgba(34, 255, 249, 0.90));
}

.subscribe__main__item:last-child {
    width: 100%;
}

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

.subscribe__main__item__title {
    color: var(--white, #FFF);
    /* bode/large */
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 28px */
}

.subscribe__main__item__img {
    width: 74px;
}

.subscribe__main__item__text {
    width: 100%;
    color: var(--white, #FFF);

    /* bode/body smal */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
}

.subscribe__form {
    position: relative;
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    border-radius: 16px;
    border: 1px solid var(--blue-light, #08BCCA);
    background: var(--yellow, #CFE52D);

    /* shadow blue */
    box-shadow: 0px 4px 16px 0px rgba(34, 255, 249, 0.24);
}

.subscribe__form__title {
    color: var(--blue-dark, #012139);
    text-align: center;

    /* title/h2 */
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 44.8px */
}

.subscribe__form__text {
    margin-top: -32px;
    color: var(--blue-dark, #012139);
    text-align: center;

    /* title/h3 */
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 33.6px */
}

.form-group {
    width: 100%;
}

.form-group input {
    width: 100%;
    height: 48px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--blue-light, #08BCCA);
    background: var(--white, #FFF);
    color: var(--blue-dark, #012139);

    /* bode/body smal */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
}

.form-group input::placeholder {
    color: var(--gray, #707070);
}

.form-group input:focus-visible {
    outline: none;
}

.subscribe__form button {
    cursor: pointer;
    display: flex;
    width: 352px;
    max-width: 100%;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: var(--color-button, linear-gradient(92deg, rgba(34, 255, 249, 0.90) 1.41%, rgba(20, 153, 149, 0.90) 99.77%));

    /* shadow button */
    box-shadow: 0px 4px 12px 0px rgba(14, 23, 30, 0.26);
    color: var(--white, #FFF);

    /* title/h3 */
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 33.6px */
    border: none;
}

.subscribe__form button:hover {
    background: linear-gradient(92deg, rgba(140, 173, 172, 0.90) 1.41%, rgba(41, 113, 111, 0.90) 99.77%);

    /* shadow button */
    box-shadow: 0px 4px 12px 0px rgba(14, 23, 30, 0.26);
}

.subscribe__form button:focus-visible {
    outline: none;
}

.form-group {
    color: #FD2020;

    /* bode/body smal */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
}

.custom-checkbox {
    width: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 10px;
    min-width: 0;
    flex-shrink: 0;
}

/* Скрываем стандартный чекбокс */
.custom-checkbox input {
    display: none;
}

/* Пустой чекбокс */
.custom-checkbox .checkmark {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid #095589;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

/* Внутренний квадрат (появляется при :checked) */
.custom-checkbox .checkmark::after {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 2px;
    background: #095589;
    display: none;
}

/* Показываем внутренний квадрат, когда чекбокс активен */
.custom-checkbox input:checked + .checkmark::after {
    display: block;
}

/* Текст рядом с чекбоксом */
.custom-checkbox .label-text {
    color: var(--blue-dark, #012139);

    /* bode/medium */
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
}

.error {
    color: #FD2020;

    /* bode/body smal */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    display: block;
}

.custom-checkbox.invalid .checkmark {
    border: 1px solid #FD2020;
}

.custom-checkbox.invalid .label-text {
    color: #FD2020;
}

.success {
    color: #095589;

    /* bode/body smal */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    display: block;
}

.error-common, .success-common {
    position: absolute;
    bottom: 90px;
    width: 100%;
    text-align: center;
}

.promo__bottom {
    margin-top: 25px;
    display: flex;
}

.promo__subscribers-container {
    margin-left: 24px;
}

@media (max-width: 1200px) {
    .header__countdown {
        flex-direction: column;
    }

    .header__countdown__hr {
        display: none;
    }

    .header__countdown__item {
        flex-direction: column;
    }

    /*.promo {*/
    /*    background-image: url("../img/bg-main-tab.png");*/
    /*}*/
    .promo__wrap {
        height: 830px;
    }

    .promo__title {
        font-size: 64px;
    }

    .promo__descr {
        font-size: 24px;
    }

    .subscribe__wrap {
        flex-direction: column;
        gap: 32px;
    }

    .subscribe__main, .subscribe__form {
        width: 100%
    }
}

@media (max-width: 991px) {
    .header__wrap {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .promo__subscribers-container {
        margin-left: 0;
    }

    .promo__descr {
        margin-bottom: 12px;
    }

    .subscribe {
        padding: 6px 0;
    }

    .promo__bottom {
        width: 100%;
        display: block;
        margin-top: 19px;
    }

    /*.promo {*/
    /*    background-image: url("../img/bg-main-mob.png");*/
    /*}*/
    .promo__wrap {
        height: 600px;
    }

    .promo__title {
        font-size: 38px;
    }

    .promo__badge__title {
        font-size: 18px;
    }

    .promo__badge {
        width: 100%;
    }

    .promo__badge__text {
        font-size: 16px;
    }

    .subscribe__main__title {
        margin-top: 10px;
        margin-bottom: 0;
        font-size: 24px;
    }

    .subscribe__main__item {
        width: 100%;
    }

    input[name="contact"]::placeholder {
        word-break: break-word;
    }
}

.faq-section {
    background-color: #fcfcff; /* темный фон */
    color: #e0e0e0;
    padding: 80px 20px;
  }
  
  .faq-title {
    text-align: center;
    font-size: 2rem;
    color: #43C8F2;
    margin-bottom: 40px;
  }
  
  .faq-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
  }

.faq-question {
    background-color: #f1f3ff !important;
    padding: 20px 150px 20px 20px !important;
    border-radius: 16px !important;
    height: auto;
    min-height: 88px;
    color: #020416 !important;
    font-family: 'Gilroy', 'Gilroy-Medium', sans-serif !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 140% !important;
    transition: color .3s
    ease !important;

    text-align: left;
    width: 100%;

    display: block;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    margin: 0;
    border: 0;
}
.faq-item.active .faq-question {
    background-color: #0e1020 !important;
    color: #ebecfa !important;
    transition: all .3s
    ease !important;
}
  
  .faq-question::after {
    position: absolute;
    right: 20px;
    font-size: 1.3rem;
    transition: transform 0.3s;
top: 50%;
      content: url(/assets/img/faq-plus.svg) !important;
      width: 48px !important;
      height: 48px;
      -webkit-transform: translate(0, -24px) !important;
      transform: translate(0, -24px) !important;
  }
  
  .faq-item.active .faq-question::after {
    transform: rotate(45deg);
  }
  
  .faq-question:hover {
      background-color: #0e1020 !important;
      color: #ebecfa !important;
      transition: all .3s
      ease !important;
  }

.faq-item:hover   .faq-question::after {
    content: url(/assets/img/faq-plus-hover.svg) !important;
}
.faq-item.active .faq-question:after {
    content: url(/assets/img/faq-minus.svg) !important;
}
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 15px;
    transition: all 0.4s ease;
  }
  
  .faq-item.active .faq-answer {
    max-height: 400px;
    opacity: 1;
    padding: 10px 15px 20px;
      color: #4e4f5c !important;
      font-family: 'Gilroy', 'Gilroy-Regular', sans-serif !important;
      font-size: 15px !important;
      font-style: normal !important;
      font-weight: 400 !important;
      line-height: 165% !important;
  }


  .hero-section {
    position: relative;
    width: 100%;
    background: url('/assets/img/banner7.png') no-repeat center center/cover;
    display: flex;
    justify-content: flex-end; /* текст справа */
    color: #fff;
  }

  .hero-content-wrap {
      display: flex;
      margin-bottom: 50px;
      margin-top: 20px;
      gap: 30px;
      justify-content: space-between;
      align-items: flex-end;
  }

@media (max-width: 500px) {
    .hero-content-wrap {
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

  .hero-logo {
    display: block;
    width: 200px;

  }
  
  .hero-overlay {
    width: 100%;
    height: 100%;
      /*background: rgba(16, 25, 40, 0.6);  лёгкий затемняющий слой */
    display: flex;
    justify-content: center;
 
  }
  
  .hero-content {
    max-width: 700px;
      padding-bottom: 40px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    color: #E8E8E8; /* голубой акцент */
    margin-bottom: 15px;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
    color: #A0A0A0;
    font-weight: 400;
    line-height: 1.4;
  }

  .hero-event {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
    background: rgba(67, 200, 242, 0.95);
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }

  .hero-event .event-title {
    font-size: 1.5rem; /* ~32px */
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    white-space: nowrap;
  }

.hero-event .event-note {
    margin: 0;
}

.hero-event .event-location a {
    color: #FFFFFF;
    text-decoration: underline;
}

.hero-event .event-location a:hover {
    color: #FFFFFF; /* например, золотой при наведении */
}

  .hero-event .event-meta {
    font-size: 1.2rem; /* ~20px */
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
  }

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

.hero-register-btn {
    margin-top: 20px;
    background: #161B26;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    padding: 12px 30px;
    border-radius: 7px;
    cursor: pointer;
    width: 100%;
}
.hero-home {
    margin-top: 20px;
    background: #fff;
    color: #161B26;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    padding: 12px 30px;
    border-radius: 7px;
    cursor: pointer;
    width: 100%;
    display: block;
    text-decoration: none;
    text-align: center;
}
@media (max-width: 768px) {
    .hero-home {
        margin: auto;
    }
}

.hero-home:hover {
    box-shadow: 0 0 60px rgba(67, 200, 242, 1), 0 12px 30px rgba(0, 0, 0, 0.4);
  }

.hero-register-btn:hover {
    background: #2c364b;
    box-shadow: 0 0 40px rgba(67, 200, 242, 1), 0 8px 24px rgba(0, 0, 0, 0.3);
}

  .hero-sponsor {
    display: block;
    color: #A0A0A0;
    font-size: 1rem;
  }

.hero-event .event-location {
    font-size: 1rem; /* чуть меньше времени */
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF;
    margin-top: 4px;
    white-space: normal; /* чтобы текст переносился */
}
  
  /* адаптив */
  @media (max-width: 768px) {
    .hero-section {
      justify-content: center;
      text-align: center;
      padding: 0 0px;
    }

      .hero-overlay {
          padding: 0 20px;
      }
  
    .hero-content {
      text-align: center;
    }
  
    .hero-content h1 {
      font-size: 2.2rem;
    }
  
    .hero-content h2 {
      font-size: 1.2rem;
    }

    .hero-event {
      margin-left: auto;
      margin-right: auto;
      padding: 10px 14px;
    }

    .hero-event .event-title {
      font-size: 1.5rem; /* ~24px */
    }

    .hero-event .event-meta {
      font-size: 1rem; /* ~16px */
    }

    .hero-sponsor {
      margin-top: 24px;
      font-size: 0.95rem;
    }
  }
  

  .promo__title {
    color: #E8E8E8;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);

    /* title/h1 */
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 100.8px */
}

.promo__descr {
    color: #A0A0A0;
    text-align: center;

    /* title/h2 */
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 44.8px */
}


.schedule-section {
    background-color: #0D1117;
    color: #E8E8E8;
    padding: 0 0 80px;
  }
  
  .schedule-title {
    text-align: center;
    font-size: 4rem;
    color: #43C8F2;
    margin-bottom: 40px;
  }
  
  .schedule-table {
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
  }
  
  .schedule-row {
    display: flex;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: center;
    transition: background 0.3s;
  }
  
  .schedule-row:hover {
    background: rgba(67, 200, 242, 0.05);
  }

.schedule-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.schedule-time-event {
    width: 190px; /* фиксированная ширина для времени+названия */
    display: flex;
    flex-direction: column;
}

.schedule-time {
    font-weight: 600;
    color: #43C8F2; /* голубой для времени */
    margin-bottom: 4px;
}

.schedule-event {
    font-weight: 700;
    color: #FFFFFF; /* белый для названия события */
}

.schedule-desc {
    flex: 1;
    font-weight: 400;
    color: #A0A0A0;
}

@media (max-width: 768px) {
    .schedule-row {
        flex-direction: column; /* переносим блоки друг под другом */
    }

    .schedule-time-event {
        width: 100%; /* растягиваем на всю ширину */
        margin-bottom: 8px; /* небольшой отступ перед описанием */
    }

    .schedule-desc {
        flex: none; /* убираем flex-grow */
    }
}





  .contact-form-section {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #0D1117;
  }
  
  .contact-overlay {
    background: rgba(0,0,0,0.6); /* затемняем фон баннера */
    padding: 60px 0;
  }
  
  .contact-text {
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 1rem;
    color: #C4C5C9;

  }


.contact-text ul {
    padding-left: 20px; /* отступ для списка */
    margin: 10px 0;
    list-style: disc; /* маркеры */

}

@media (max-width: 768px) {
    .contact-text {
        max-width: 100%;
        text-align: center;
    }
}

  .contact-text-wrapper {
    display: flex;

    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  
  /* белый блок формы */
  .form-wrapper {
    width: 400px;
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

  @media (max-width: 768px) {
    .contact-text-wrapper {
      flex-wrap: wrap;
      justify-content: center; /* центрируем элементы */
    }
  }


.contact-text-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.contact-card {
    background-color: #fff; /* белый кубик */
    color: #0D1117; /* текст темный */
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    flex: 1 1 220px; /* адаптивная ширина */
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
}

@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}


.contact-card-top {
    background-color: #fff; /* белый кубик */
    color: #0D1117; /* текст темный */
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    flex: 1 1 220px; /* адаптивная ширина */
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    text-align: center;
}

.contact-card-icon {
    font-size: 1.4rem;
    line-height: 1;
    color: rgba(67, 200, 242, 0.95);
}

.contact-card-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #3E4450;
}

@media (max-width: 768px) {
    .contact-card {
        flex: 1 1 100%;
    }
}

  
  /* форма */
  .contact-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
      flex-direction: column;
  }
  
  .form-left, .form-right {
    flex: 1;
    min-width: 250px;
  }

.form-group.name-row {
    display: flex;
    gap: 10px;
    flex-direction: row;
}

.name-field {
    flex: 1;
}

input {
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
}
  
  .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    background-color: #F9F9F9;
    color: #0D1117;
    font-size: 1rem;
    resize: none;
      font-family: 'Proxima Nova'
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #43C8F2;
  }
  
  .form-submit {
    width: 100%;
    text-align: center;
  }
  
  .form-submit button {
    background-color: #0D1117;
    color: #FFFFFF;
    font-weight: 600;
    
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s;
    width: 300px;
    height: 50px;
  }
  
  .form-submit button:hover {
    background-color: #1C8FD1;
  }
  
  /* адаптив */
  @media (max-width: 768px) {
    .contact-form {
      flex-direction: column;
    }
  
    .form-left, .form-right {
      min-width: 100%;
    }
  
    .form-wrapper {
      padding: 30px 20px;
    }
  }
  
  .countdown-section {
    position: relative;
    margin: 0px auto 60px auto; /* заходит на hero-section */
    background-color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    padding: 20px 30px;
    z-index: 10;
  }

  @media (max-width: 768px) {
    .countdown-section {
        margin: 0 5px; /* заходит на hero-section */
        padding: 20px 0px;
    }

  }
  
  .countdown-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
      max-width: 700px;
  }
  
  .countdown-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0D1117;
    flex-shrink: 0;
  }
  
  .countdown-timer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .countdown-box-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .countdown-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 70px;
    text-align: center;
    font-weight: 600;
      border: 1px solid #A0A0A0;
  }
  
  .countdown-box span {
    font-size: 1.5rem;
    color: #43C8F2;
  }
  
  .countdown-label {
    font-size: 0.9rem;
    color: #0D1117;
    margin-top: 5px;
  }


.glide-main .glide__slide img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.glide-thumbs .glide__slide {
    margin-bottom: 10px;
    cursor: pointer;
}

.glide-thumbs .glide__slide img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: border 0.3s;
}

.glide-thumbs .glide__slide--active img {
    border-color: #43C8F2;
}

.footer-section {
    background-color: #0d0d0d;
    color: #fff;
    padding: 20px 20px;
    border-top: 1px solid #414141;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
      padding: 0 10px;
  }
  
  .footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
      text-align: left;

  }

  
  .social-link svg {
    width: 28px;
    height: 28px;
    color: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  
  .social-link:hover svg {
    transform: scale(1.1);
    opacity: 0.8;
  }
  
  .footer-right {
    font-size: 14px;
  }
  
  .wow-highlight {
    color: #00bfff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
  }
  
  .wow-highlight:hover {
    color: #66d9ff;
  }
  
  /* Адаптив */
  @media (max-width: 948px) {
      .schedule-title {
          margin-bottom: 20px;
          font-size: 2rem;
      }
    .footer-container {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
      .footer-left {
          flex-direction: column;
          text-align: center;
      }
      .form-wrapper {
          width: 100%;
      }
  }

@media (max-width: 980px) {
    .contact-text-wrapper {
        align-items: self-start;
    }
}

@media (max-width: 768px) {
    .form-wrapper {
        width: 100%;
    }

    .faq-section {
        padding: 40px 20px;
    }

    .faq-question {
        font-size: 16px !important;
    }
}

.made_by {
    color:#aaa; font-size:15px;
    text-align: right;
}

/* Базовый эффект для всех элементов, которые будут появляться */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Класс, который появляется при скролле */
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Задержки для последовательного появления блоков внутри секции */
.fade-in.delay-1 { transition-delay: 0.2s; }
.fade-in.delay-2 { transition-delay: 0.4s; }
.fade-in.delay-3 { transition-delay: 0.6s; }
.fade-in.delay-4 { transition-delay: 0.8s; }
.fade-in.delay-5 { transition-delay: 1s; }
