:root {
    /* Цвета */
    --color-bg: #03123a;
    /* Тёмно-синий фон всей страницы */
    --color-card-bg: rgba(255, 255, 255, 0.05);
    /* Прозрачный фон карточек */
    --color-card-border: rgba(255, 255, 255, 0.1);
    --color-text-main: #ffffff;
    --color-text-muted: #a0aec0;
    --color-primary: #00e5ff;
    /* Акцентный цвет кнопок/ссылок */
    --color-primary-hover: #00b2cc;
    --color-accent: #ccff00;
    /* Цвет плашек/акцентов (например, "16 октября") */

    /* Шрифты и размеры */
    --font-main: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius: 12px;
    --border-radius-lg: 24px;

    /* Отступы */
    --container-width: 1200px;
    --space-section: 160px;
    --padding-section: 64px 0;
    --space-wrap: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Onest';
}

html {
    scroll-behavior: smooth
}

/* body {
    background-color: linear-gradient(90deg, #002147, #003B92);
    background-image: url(../icons/main-bg.svg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
} */

body {
    background-image: url(../icons/main-bg.svg), linear-gradient(90deg, #002147, #003B92);
    background-repeat: no-repeat;
    background-position: center top;
    /* background-size: cover; */
    background-color: #002147;
}

html,
body {
    overflow-x: hidden;
}

.container {
    max-width: 1920px;
    padding: 0 48px;
    margin: 0 auto;
}

/* общие классы элементов */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    font-size: 20px;
    height: 52px;
    color: #01234D;
    text-decoration: none;
    font-weight: 600;
    background-color: #D2FC6B;
    border-width: 2px;
    border-style: solid;
    border-color: #D2FC6B;
    border-radius: 88px;
    transition: 0.2s all;
}

.btn_wrap {
    display: flex;
    justify-content: center;
}

.btn .btn_wrap {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
}

.wrap {
    display: grid;
}

.wrap_item {
    padding: 32px;
    border-radius: 20px;
}

.wrap_item .item_img {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    overflow: hidden;
}

.wrap_item .item_img img {
    width: 100%;
    height: 100%;
}

.wrap_item .item_title {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
}

.wrap_item .item_subtitle {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.wrap_item .item_descr {
    font-weight: 200;
    line-height: 32px;
    color: #fff;
}

.title {
    font-weight: 700;
    font-size: 80px;
    line-height: 96px;
    color: #fff;
    text-align: center;
}

.subttitle {
    line-height: 36px;
    font-size: 32px;
    text-align: center;
    color: #fff;
    font-weight: 400;
}

/* главный блок */
.main {
    position: relative;
}

.main .main_bg {
    position: absolute;
    z-index: -1;
}

.main_bg_left {
    top: 20%;
    left: -300px;
}

.main .main_bg_right {
    bottom: 0;
    right: -300px;
}

/* шапка */
.header {
    position: relative;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.header .header_logo {
    display: block;
    height: 56px;
}

.header .header_logo img {
    height: 100%;
}

.header_menu {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.header_menu .btn {
    height: 50px;
}

.header_menu .menu_item {
    padding: 0 20px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 35px;
    transition: 0.2s all;
}

/* мобильное меню */
.mobail_menu {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 24px;
    z-index: 5;
}

.mobail_menu.show {
    display: flex;
}

.mobail_menu .menu_item {
    border: none;
    background-color: transparent;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
}

.mobail_menu .menu_item-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.mobail_nav {
    display: none;
}

/* промо экран */
.promo {
    position: relative;
    padding: 120px 0;
}

.promo .promo_partner {
    display: flex;
    justify-content: center;
}

.promo .promo_partner .item_wrap {
    display: flex;
    gap: 24px;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    padding: 16px 32px;
    flex-wrap: wrap;
}

.promo .promo_partner .partner_item {
    width: 64px;
    height: 64px;
    border-radius: 100%;
    overflow: hidden;
    cursor: pointer;
}

.promo .promo_partner .partner_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo .subttitle {
    font-weight: 200;
}

.promo .title {
    margin-top: 32px;
    font-size: 160px;
}

.promo .promo_info {
    margin-top: 64px;
    color: #D2FC6B;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
}

.promo .promo_btn {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 64px;
}

.promo .promo_btn .btn_prog {
    padding-left: 61px;
    padding-right: 65px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.promo_data {
    position: absolute;
    display: flex;
    align-items: center;
    height: 68px;
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0.1px;
    border-radius: 46px;
    background: #D2FC6B;
    color: #01234D;
    max-width: max-content;
    padding: 0 27px;
    top: 100px;
    right: 78px;
    transform: rotate(15deg);
    white-space: nowrap;
}

/* бегущая строка */
.ticker-container {
    width: 100%;
    /* overflow: hidden; */
    background: transparent;
    padding: 20px 0;
    display: flex;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
    gap: 24px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 24px;
    border-radius: 46px;
    padding: 0 12px 0 25px;
    height: 80px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.1px;
    white-space: nowrap;
}

.ticker-item:nth-child(1) {
    margin-left: 24px;
}

.ticker-item.bg-glass::before,
.ticker-item.bg-glass::after {
    border-radius: 46px;
}

.logo-wrapper {
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ticker-container:hover .ticker-track {
    animation-play-state: paused;
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* Всем участникам */
.benefits-section {
    padding: var(--padding-section);
    margin-top: var(--space-section);
}

.benefits-grid {
    /* display: grid;
    grid-template-columns: repeat(4, 356px);
    gap: 40px;
    justify-content: center; */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: var(--space-wrap);
}

.benefit-card {
    flex-shrink: 0;
    border-radius: 20px;
    padding: 32px;
    width: 356px;
    height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.benefit-text {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-icon {
    align-self: flex-end;
    width: 100px;
    height: 110px;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* блок about */
.about {
    padding: var(--padding-section);
    margin-top: var(--space-section);
}

.about_subttitle {
    margin: 0 auto;
    margin-top: 40px;
    font-weight: 400;
    max-width: 1054px;
}

.about .about_wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about .about_wrap {
    margin-top: var(--space-wrap);
}

.about .about_wrap .wrap_item .item_img {
    height: auto;
    width: 160px;
    border-radius: 0;
}

.about .about_wrap .wrap_item .item_subtitle {
    font-size: 24px;
    margin-top: 16px;
}

.about .about_wrap .wrap_item .item_descr {
    margin-top: 12px;
    font-size: 22px;
}

.about .about_btn {
    margin-top: 48px;
}

/* блок спикеры */
.speaker {
    padding: var(--padding-section);
    margin-top: var(--space-section);
}

.speaker .speaker_bg {
    position: absolute;
    z-index: -1;
}

.speaker_bg.right {
    top: 0;
    right: -400px;
}

.speaker_bg.left {
    bottom: 0;
    left: -400px;
}

.speaker .speaker_wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: var(--space-wrap);
}

.speaker .speaker_wrap .wrap_item .item_title {
    margin-top: 32px;
}

.speaker .speaker_wrap .wrap_item .item_subtitle {
    margin-top: 8px;
}

.speaker .speaker_wrap .wrap_item .item_descr {
    margin-top: 12px;
    font-size: 24px;
}

.speaker .speaker_info {
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-top: var(--space-wrap);
}

.speaker .speaker_btn {
    margin-top: 32px;
}

/* блок "что будет" */
.plan {
    padding: var(--padding-section);
    margin-top: var(--space-section);
}

.plan .plan_bg {
    position: absolute;
    z-index: -1;
}

.plan .plan_bg.right {
    top: 0;
    right: -200px;
}

.plan .plan_bg.left {
    bottom: 0;
    left: -200px;
}

.plan .plan_info {
    margin-top: 48px;
}

.plan .plan_info .info_wrap {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.plan .plan_info .info_wrap .info_item {
    padding: 9px 20px;
    border-radius: 46px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 24px;
    line-height: 36px;
    font-weight: 400;
    backdrop-filter: blur(7px);
}

.plan .plan_info .info_img {
    margin-top: 120px;
}

.plan .plan_info .info_img img {
    width: 100%;
    height: auto;
}

.instruction {
    margin: var(--space-wrap);
}

.instruction .wrap {
    padding: 0 152px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.instruction .instruction_item {
    width: 356px;
}

.instruction .instruction_item .item_step {
    font-size: 72px;
    line-height: 100%;
    color: #fff;
    font-weight: 500;
}

.instruction .instruction_item .item_desc {
    margin-top: 50px;
    color: #fff;
    font-size: 22px;
    font-weight: 300;
}

.instruction .instruction_item .item_desc span {
    color: #D2FC6B;
}

.instruction .instruction_item .item_desc .btn-share-main {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: transparent;
    color: var(--color-text-main);
    margin-top: 12px;
    cursor: pointer;
}

.steps .btn_wrap {
    margin-top: var(--space-wrap);
}

.steps {
    padding: var(--padding-section);
    margin-top: var(--space-section);
}

.plan_btn {
    margin-bottom: 64px;
}

/* блок программа конференции */
.programm_wrap {
    margin-top: 120px;
}

.programm_wrap .wrap_item {
    display: grid;
    grid-template-columns: 172px 426px 1fr;
    gap: 98px;
    align-items: start;
    padding: 40px;
    max-height: 324px;
    overflow: hidden;
    transition: height 0.4s ease-in-out;
}

.programm_wrap .wrap_bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.programm_wrap .wrap_item .item_time {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    font-size: 24px;
    color: #fff;
    line-height: 36px;
    font-weight: 400;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 46px;
}

.programm_wrap .wrap_item .item_descr-title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    color: #D2FC6B;
}

.programm_wrap .wrap_item .item_descr-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #fff;
    margin-top: 16px;
}

.programm_wrap .wrap_item .item_img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.programm_wrap .wrap_item .item_info {
    display: flex;
    gap: 24px;
}

.programm_wrap .wrap_item .item_title {
    font-weight: 700;
    font-size: 24px;
}

.programm_wrap .wrap_item .item_subtitle {
    margin-top: 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.programm_wrap {
    grid-template-columns: 1fr;
    gap: 32px;
}


.plan .btn_wrap {
    margin-top: 120px;
}

/* блок организаторы */
.org {
    padding: var(--padding-section);
    margin-top: var(--space-section);
}

.org .org_logo {
    display: flex;
    justify-content: center;
}

.org .org_logo .wrap {
    margin: var(--space-wrap) 0 48px 0;
}

.org .org_logo .wrap_item {
    padding: 20px 64px;
}

.org .org_descr {
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
}

.org .org_btn {
    margin-top: 32px;
}

/* Как это было — 2025 */
.history {
    padding: var(--padding-section);
    margin-top: var(--space-section);
}

.history_subttitle {
    margin-top: 20px;
}

.history_preview {
    margin: var(--space-wrap) auto;
    height: 640px;
    width: 1280px;
    border-radius: 20px;
    overflow: hidden;
}

.history_preview img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* подвал */
.footer {
    margin-top: 200px;
    padding: 48px 0;
    background-color: #000;
}

.footer .container {
    padding: 0 32px;
}

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

.footer .header_logo {
    height: 64px;
}

.footer .header_menu .menu_title {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-right: 16px;
}

.footer .header_menu {
    display: flex;
}

.footer_left {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.doc_link {
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
    text-decoration: none;
    color: var(--color-text-main);
    display: block;
}

.footer_docs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.substrate {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(33, 33, 33, 0.3);
    backdrop-filter: blur(8px);
    z-index: 4;
}

.bg-glass {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.bg-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
    border-radius: 20px;
    -webkit-mask-image: radial-gradient(circle at 0% 0%, #fff 5%, transparent 80%);
    mask-image: radial-gradient(circle at 0% 0%, #fff 5%, transparent 80%);
}

.bg-glass::after {
    content: "";
    position: absolute;
    inset: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle at 100% 100%, #fff 5%, transparent 80%);
    mask-image: radial-gradient(circle at 100% 100%, #fff 5%, transparent 80%);
}

.programm_wrap .wrap_item.is-open {
    height: auto;
    max-height: 100%;
}

.programm_wrap .wrap_item.is-open .item_descr-text-wrap {
    height: 100% !important;
}

.item_descr-text-wrap {
    height: auto;
    overflow: hidden;
}

.read-more-btn {
    display: inline-block;
    margin-top: 12px;
    color: #4da6ff;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
}

.item_descr-btn {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #D2FC6B;
    cursor: pointer;
}

.item_descr-btn.hide {
    display: none;
}

.programm_wrap .wrap_item.is-open .item_descr-text-wrap {
    height: var(--expanded-height, auto) !important;
}

.item_descr-btn svg {
    transition: transform 0.3s ease;
}

.programm_wrap .wrap_item.is-open .item_descr-btn svg {
    transform: rotate(180deg);
}

/* Hover эффект на декстопе */
@media (hover: hover) {
    .btn:hover {
        background-color: #bfe955;
        border-color: #bfe955;
    }

    .header_menu .menu_item:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }

    .promo .promo_btn .btn_prog:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }
}

/* адаптив */
/* Экран до 1440 */
@media(max-width: 1919px) {
    .container {
        max-width: 1440px;
    }

    .instruction .wrap {
        padding: 0;
    }

    .promo_data {
        top: 60px;
        right: 0px;
    }

    .programm_wrap .wrap_item {
        gap: 48px;
    }

    .programm_wrap .wrap_item .item_descr-title {
        font-size: 28px;
        line-height: 36px;
    }

    .history_preview {
        height: auto;
        width: 80%;
    }
}

/* Экран до 1280 */
@media(max-width: 1439px) {
    :root {
        --space-section: 100px;
    }

    .container {
        max-width: 1280px;
    }

    .promo .title {
        font-size: 130px;
    }

    .speaker .speaker_wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo_data {
        height: 48px;
        font-size: 24px;
        line-height: 32px;
    }

    .programm_wrap .wrap_item {
        padding: 32px;
        gap: 32px;
        grid-template-columns: 150px 350px 1fr;
    }

    .programm_wrap .wrap_item .item_time {
        font-size: 20px;
        height: 48px;
    }

    .item_descr-btn,
    .programm_wrap .wrap_item .item_descr-text {
        margin-top: 8px;
    }

    .programm_wrap .wrap_item .item_descr-text {
        font-size: 18px;
        line-height: 24px;
    }
}

@media(max-width: 1279px) {
    :root {
        --space-wrap: 40px;
    }

    .container {
        max-width: 1024px;
    }

    .title {
        font-size: 65px;
        line-height: 80px;
    }

    .promo .title {
        margin-top: 32px;
        font-size: 110px;
    }

    .promo .subttitle {
        margin-top: 56px;
        font-size: 28px;
    }

    .promo .promo_info {
        margin-top: 56px;
        font-size: 40px;
    }

    .instruction .instruction_item {
        width: 45%;
    }

    .promo .promo_partner .partner_item {
        width: 56px;
        height: 56px;
    }

    .promo .promo_partner .item_wrap {
        gap: 20px;
    }

    .wrap_item .item_img {
        width: 90px;
        height: 90px;
    }

    .wrap_item .item_title {
        font-size: 28px;
    }

    .wrap_item .item_subtitle {
        font-size: 18px;
    }

    .about .about_wrap .wrap_item .item_subtitle {
        font-size: 20px;
    }

    .wrap_item .item_descr {
        font-size: 20px;
    }

    .footer .footer_wrap {
        flex-direction: column;
        align-items: start;
        justify-content: start;
        gap: 24px;
    }

    .programm .programm_wrap {
        grid-template-columns: repeat(1, 1fr);
    }

    .programm .programm_wrap .wrap_item .item_time {
        font-size: 20px;
    }

    .header_menu {
        display: none;
    }

    .mobail_nav {
        display: block;
    }

    .about .about_wrap {
        grid-template-columns: repeat(1, 1fr);
    }

    .promo_data {
        top: 90px;
        right: 50%;
        transform: translateX(50%);
    }

    .programm_wrap .wrap_item {
        grid-template-columns: 150px 1fr;
        gap: 16px;
    }

    .wrap_item .item_descr {
        grid-column: 1 / -1;
    }

    .programm_wrap .wrap_item {
        max-height: 100% !important;
    }

    /* .wrap_item .item_descr {
        max-height: 150px;
    } */

    .programm_wrap .wrap_item.is-open .item_descr {
        max-height: 100%;
    }
}

@media(max-width: 1023px) {
    :root {
        --padding-section: 20px 0;
    }

    .container {
        max-width: 768px;
        padding: 0 12px;
    }

    .footer {
        margin-top: 120px;
        padding: 24px 0;
    }

    .org {
        margin-top: 120px;
    }

    .footer .footer_wrap {
        gap: 12px;
    }

    .footer .header_menu .menu_title {
        font-size: 20px;
        margin-right: 6px;
    }

    .header_menu {
        gap: 6px;
    }

    .mobail_menu {
        gap: 24px;
    }

    .footer .header_logo {
        height: 54px;
    }

    .title {
        font-size: 52px;
    }

    .wrap {
        margin: 40px 0;
    }

    /* .programm {
        margin-top: 120px;
    }

    .plan {
        padding-top: 120px;
    } */

    .speaker .speaker_info {
        font-size: 20px;
        line-height: 28px;
    }

    .about .about_wrap .wrap_item .item_img {
        width: 120px;
    }

    .about .about_wrap .wrap_item .item_subtitle {
        margin-top: 24px;
    }

    .speaker .speaker_wrap {
        grid-template-columns: repeat(1, 1fr);
    }

    .wrap_item .item_img {
        width: 120px;
        height: 120px;
    }

    /* .promo {
        padding: 120px 0;
    } */

    .promo .title {
        font-size: 80px;
    }

    .promo .promo_info {
        font-size: 32px;
        line-height: 28px;
    }

    .promo .subttitle {
        font-size: 24px;
    }

    /* 
    .speaker {
        padding-top: 120px;
    } */

    .instruction .instruction_item {
        width: 100%;
    }

    .instruction .instruction_item .item_step {
        font-size: 45px;
    }

    .instruction .instruction_item .item_desc {
        margin-top: 8px;
        font-size: 16px;
    }

    .instruction .wrap {
        gap: 12px;
    }

    .org .org_logo .wrap {
        margin: 40px 0 24px 0;
    }

    .org .org_descr {
        font-size: 24px;
        line-height: 28px;
    }

    .org .org_logo .wrap_item {
        padding: 10px 32px;
    }

    .org .org_logo .wrap_item .img {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .org .org_logo .wrap_item .img img {
        width: 100%;
        height: auto;
    }

    .plan .plan_info {
        margin-top: 24px;
    }

    .plan .plan_info .info_wrap {
        flex-direction: column;
    }

    .plan .plan_info .info_wrap .info_item {
        text-align: center;
        font-size: 20px;
        line-height: 24px;
    }

    .plan .plan_info .info_img {
        margin-top: 40px;
    }

    .instruction {
        margin-top: 40px;
    }

    .main_bg {
        height: auto;
        width: 350px;
    }

    .main_bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .speaker .speaker_bg {
        height: auto;
        width: 350px;
    }

    .speaker .speaker_bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .programm .programm_wrap .wrap_bg {
        height: auto;
        width: 80%;
        top: 20%;
    }

    .programm .programm_wrap .wrap_bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ticker-item {
        height: 62px;
        font-size: 18px;
        padding: 0 18px;
        gap: 12px;
    }

    .logo-wrapper {
        width: 48px;
        height: 48px;
    }

    .ticker-track {
        gap: 18px;
    }

    .ticker-item:nth-child(1) {
        margin-left: 18px;
    }

    .programm_wrap .wrap_item .item_descr-title {
        font-size: 20px;
        line-height: 24px;
    }

    .item_descr-btn {
        font-size: 16px;
        line-height: 24px;
    }

    .programm_wrap .wrap_item .item_descr-text {
        font-size: 16px;
    }

    .programm_wrap .wrap_item .item_subtitle {
        font-size: 14px;
        line-height: 18px;
    }

    .programm_wrap .wrap_item .item_title {
        font-size: 20px;
    }

    .programm_wrap .wrap_item .item_time {
        font-size: 18px;
        height: 36px;
    }

    .programm_wrap .wrap_item {
        grid-template-columns: 130px 1fr;
    }

    .instruction .instruction_item .item_desc .btn-share-main {
        font-size: 18px;
    }

    .benefit-card {
        width: 100%;
        height: auto;
    }

    .benefit-text {
        font-size: 20px;
        line-height: 28px;
    }

    .benefit-icon {
        width: 100px;
        height: 100px;
    }

    .subttitle {
        line-height: 32px;
        font-size: 26px;
    }

    .about_subttitle {
        margin-top: 20px;
    }

    .programm_wrap .wrap_item .item_img {
        width: 80px;
        height: 80px;
    }

    .plan .btn_wrap {
        margin-top: 40px;
    }

    .benefits-grid {
        gap: 12px;
    }

    .footer_docs {
        gap: 8px;
    }
}

@media(max-width: 767px) {
    :root {
        --padding-section: 0;
        --space-section: 80px;
    }

    .container {
        padding: 0 16px;
    }

    .promo .promo_btn {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .btn .btn_wrap {
        text-align: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }

    .btn {
        padding: 9px 8px 9px 12px;
        width: 100%;
        font-size: 16px;
    }

    .promo {
        padding: 80px 0;
        padding-bottom: 40px;
    }

    .promo .title {
        font-size: 68px;
        line-height: 68px;
        margin-top: 16px;
    }

    .about .about_wrap .wrap_item .item_subtitle {
        margin-top: 12px;
    }

    .about .about_wrap .wrap_item .item_descr {
        margin-top: 6px;
    }

    .about .about_wrap .wrap_item .item_subtitle {
        margin-top: 6px;
    }

    .promo .promo_info {
        font-size: 22px;
        line-height: 32px;
    }

    .promo .subttitle,
    .promo .promo_info {
        margin-top: 28px;
    }

    .promo .promo_partner .partner_item {
        width: 32px;
        height: 32px;
    }

    .promo .promo_partner .item_wrap {
        gap: 12px;
        padding: 8px 16px;
    }

    .header .header_logo {
        height: 40px;
    }

    .header {
        padding: 12px 0;
    }

    .mobail_menu {
        margin-top: 12px;
        gap: 24px;
    }

    .mobail_menu .menu_item {
        font-size: 16px;
        font-weight: 400;
    }

    .title {
        font-size: 40px;
        line-height: 52px;
    }

    .wrap_item {
        padding: 16px;
    }

    .speaker .speaker_wrap .wrap_item .item_title {
        margin-top: 16px;
        font-size: 24px;
    }

    .wrap_item .item_subtitle {
        font-size: 14px;
        margin-top: 6px;
    }

    .about .about_wrap .wrap_item .item_subtitle {
        font-size: 18px;
    }

    .speaker .speaker_wrap .wrap_item .item_descr {
        font-size: 18px;
        line-height: 24px;
        margin-top: 6px;
    }

    /* .speaker {
        padding-top: 80px;
    }

    .plan {
        padding-top: 80px;
    } */

    .org {
        margin-top: 80px;
    }

    .speaker .speaker_info {
        font-size: 18px;
        line-height: 24px;
    }

    .programm {
        margin-top: 80px;
    }

    .programm .programm_wrap .wrap_item .item_time {
        font-size: 16px;
        padding: 6px 8px;
    }

    .programm .programm_wrap .wrap_item .item_descr {
        margin-top: 12px;
        font-size: 20px;
        line-height: 22px;
    }

    .programm .programm_wrap .wrap_item .item_info {
        margin-top: 12px;
        gap: 12px;
    }

    .programm .programm_wrap .wrap_item .item_title {
        font-size: 18px;
        line-height: 22px;
    }

    .programm .programm_wrap .wrap_item .item_subtitle {
        margin-top: 6px;
        font-size: 12px;
    }

    .footer {
        margin-top: 80px;
    }

    .footer .container {
        /* max-width: 80%; */
        padding: 0 12px;
    }

    .footer .header_logo {
        height: 44px;
    }

    .footer .footer_wrap {
        gap: 18px;
    }

    .programm_wrap .wrap_item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 16px;
    }

    .programm_wrap .wrap_item .item_descr-title {
        font-size: 18px;
        line-height: 20px;
    }

    .programm_wrap .wrap_item .item_descr-text {
        line-height: 20px;
    }

    .item_descr-btn {
        font-size: 14px;
        line-height: 20px;
    }

    .subttitle {
        line-height: 28px;
        font-size: 22px;
    }

    .promo_data {
        height: 36px;
        font-size: 20px;
        line-height: 36px;
        top: 40px;
    }

    .benefit-icon {
        width: 90px;
        height: 90px;
    }

    .history_preview {
        width: 90%;
    }
}

.fancybox__slide.has-iframe .f-html {
    max-width: 800px;
    height: 100%;
}

.modal-text {
    line-height: 32px;
    font-size: 24px;
    text-align: center;
    color: #fff;
    font-weight: 400;
}

.modal-container {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 28px;
    max-width: 440px;
    width: 100%;
    margin: 0 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Блок текста */
.modal-body {
    margin-bottom: 24px;
}

.label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #9ca3af;
    /* Приглушенный текст подписей */
    margin-bottom: 8px;
}

/* Внутреннее поле с текстом (эффект вдавленного стекла) */
.text-preview-box {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
}

.text-preview-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #e5e7eb;
}

.btn-copy {
    width: 100%;
    background-color: #ffffff;
    color: #030712;
    font-size: 15px;
    font-weight: 600;
    padding: 14px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s, transform 0.1s;
}

.btn-copy:hover {
    background-color: #f3f4f6;
}

.btn-copy.success {
    background-color: #D2FC6B !important;
    color: #01234D !important;
}

/* Декоративный разделитель */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #6b7280;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 24px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.divider:not(:empty)::before {
    margin-right: 16px;
}

.divider:not(:empty)::after {
    margin-left: 16px;
}

.share-grid {
    display: grid;
    grid-template-cols: repeat(3, 1fr);
    gap: 12px;
}

.share-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    gap: 8px;
    transition: 0.2s all;
}

.share-item:hover {
    background: rgba(255, 255, 255, 0.1);
}