:root {
    --color-green: #1afe4c;
    --color-green-dark: #0f541f;
    --color-green-darker: #074315;
    --color-black: #161616;
    --color-black-20: rgba(22, 22, 22, 0.2);
    --color-dark-gray: #171717;
    --color-white: #ffffff;
    --color-gray: #d9d9d9;
    --color-gray-secondary: #c0c0c0;
    --color-gray-tertiary: #4d4d4d;
    --font-body: 'Onest', Arial, sans-serif;
    --font-display: 'MOSCOW2024', Arial, sans-serif;
    --page-margin: 40px;
    --page-gutter: 20px;
    --reviews-peek: 20px;
    --content-max: 1360px;
    --header-h: 70px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --z-header: 100;
    --z-overlay: 150;
    --z-menu: 200;
    --timer-h: 120px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    padding-top: var(--header-h);
    scrollbar-gutter: stable;
    overflow-x: clip;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--color-white);
    background: var(--color-black);
    -webkit-font-smoothing: antialiased;
}

body.is_menu_open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    color: inherit;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    width: calc(100% - 80px);
    margin: 0 40px;
}

.about__inner,
.features__inner,
.tickets__inner,
.speakers__inner,
.installments__inner,
.media__inner,
.media__partners_block,
.hero__stats,
.audience__grid {
    min-width: 0;
}

.about__gallery,
.about__top,
.about__content,
.features__inner,
.features__row,
.tickets__grid,
.speakers__cards,
.speakers__top,
.installments__top,
.installments__bottom,
.media__top,
.partners,
.media__partners_block,
.audience__grid,
.audience__panel {
    min-width: 0;
    max-width: 100%;
}

.about__photo,
.feature_card,
.ticket_card,
.speaker_card {
    max-width: 100%;
    box-sizing: border-box;
}

.section {
    position: relative;
    padding: 80px 0;
}

.section > .container {
    position: relative;
    z-index: 2;
}

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

.section_dark {
    background: var(--color-black);
    color: var(--color-white);
}

.is_hidden {
    display: none !important;
}

/* Typography */

.h1,
.h2,
.h3,
.h4,
.h5,
.label_slash,
.descriptor,
.number_40,
.btn {
    font-family: var(--font-display);
    font-weight: 400;
}

.h1 {
    margin: 0;
    font-size: 80px;
    line-height: 1;
    letter-spacing: 0;
}

.h2 {
    margin: 0 0 20px;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: 0;
}

.h3 {
    margin: 0 0 20px;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0;
}

.h4 {
    margin: 0;
    font-size: 22px;
    line-height: 1.1;
}

.h5 {
    margin: 0;
    font-size: 20px;
    line-height: 1.1;
}

.label_slash {
    margin: 0 0 20px;
    font-size: 22px;
    line-height: 1.2;
    text-transform: lowercase;
}

.descriptor {
    font-size: 28px;
    line-height: 1.4;
}

.number_40 {
    margin: 0;
    font-size: 40px;
    line-height: 1;
}

.text_14 { font-size: 14px; line-height: 1.3; letter-spacing: 0; margin: 0; }

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-height: 58px;
    padding: 20px 35px;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn_sm {
    min-height: 42px;
    padding: 12px 24px;
    font-size: 14px;
}

.btn_lg {
    min-height: 70px;
    padding: 22px 40px;
}

.btn_green {
    background: var(--color-green);
    color: var(--color-black);
}

.btn_green:hover {
    background: var(--color-black);
    color: var(--color-green);
}

.btn_green:active {
    background: var(--color-green-dark);
    color: var(--color-white);
}

.btn_outline {
    border-color: var(--color-green-dark);
    color: var(--color-green-dark);
    background: transparent;
}

.btn_outline:hover {
    border-color: var(--color-black);
    color: var(--color-black);
}

.btn_white {
    background: var(--color-white);
    color: var(--color-black);
}

.btn_white:hover {
    background: var(--color-gray);
}

.btn_bordered {
    border: 1px solid var(--color-black);
}

.btn_outline_white {
    border-color: var(--color-white);
    color: var(--color-white);
    background: transparent;
}

.btn_outline_white:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.btn_menu {
    min-height: auto;
    padding: 15px 25px;
    font-size: 16px;
    line-height: 1;
}

.site_header .btn_menu {
    width: 180px;
}

.header_btn {
    width: 182px;
    padding-left: 0;
    padding-right: 0;
}

/* Cards */

.card {
    background: var(--color-white);
    border: 1px solid var(--color-gray);
    border-radius: var(--radius-md);
    padding: 20px;
    color: var(--color-black);
}

.card_dark {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

/* Header */

.site_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    height: var(--header-h);
    background: var(--color-black);
    color: var(--color-white);
}

.site_header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 24px;
}

.site_header__logo {
    flex-shrink: 0;
}

.site_header__logo img {
    width: 132px;
    height: 32px;
    object-fit: contain;
}

.site_header__burger {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.site_header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
}

.site_header__panel {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.site_header__nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site_header__link {
    font-size: 16px;
    line-height: 1.25;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.site_header__link:hover,
.site_header__link.is_active {
    color: var(--color-green);
}

.site_header__right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.site_header__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site_header__social_link {
    display: flex;
    align-items: center;
}

.site_header__contacts {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 14px;
    line-height: 1.3;
    white-space: nowrap;
}

.site_header__phone,
.site_header__email {
    transition: color 0.2s ease;
}

.site_header__phone:hover,
.site_header__email:hover {
    color: var(--color-green);
}

/* Footer */

.site_footer {
    position: relative;
    background: var(--color-black);
    color: var(--color-white);
    padding: 60px 0 50px;
    border-top: 1px solid var(--color-gray-tertiary);
}

.site_footer__inner {
    display: grid;
    grid-template-columns: 264px repeat(4, 1fr) 280px;
    gap: 30px 40px;
    align-items: start;
}

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

.site_footer__logo img {
    width: 264px;
    height: 64px;
    object-fit: contain;
}

.site_footer__copy {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    color: var(--color-white);
}

.site_footer__heading {
    margin: 0;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.1;
}

.site_footer__col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.site_footer__link {
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-gray);
}

a.site_footer__link:hover {
    color: var(--color-green);
}

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

.site_footer__aside {
    display: contents;
}

.site_footer__text {
    font-size: 16px;
    line-height: 1.25;
    margin: 0;
    color: var(--color-white);
}

.site_footer__subscribe_btn {
    align-self: stretch;
    width: 100%;
    min-height: 58px;
    padding: 20px 35px;
    line-height: 1.1;
}

.site_footer__payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.site_footer__pay {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    max-width: none;
}

.site_footer__pay_combo {
    position: relative;
    display: block;
}

.site_footer__pay_bg {
    width: 50px;
    height: 50px;
}

.site_footer__pay_logo {
    position: absolute;
    object-fit: contain;
    pointer-events: none;
}

.site_footer__pay_logo_tinkoff {
    left: 5.5px;
    top: 16.5px;
    width: 40px;
    height: 17px;
}

.site_footer__pay_logo_yoomoney {
    left: 12.5px;
    top: 15.5px;
    width: 26px;
    height: 19px;
}

.site_footer__pay_logo_sber {
    left: 6.5px;
    top: 16px;
    width: 38px;
    height: 18px;
}

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

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

.site_footer__credits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-gray);
}

/* Hero */

.hero {
    position: relative;
    padding: 20px 0 80px;
}

.hero__bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: auto;
    border-radius: 0;
    z-index: 0;
    background: linear-gradient(112.88deg, #0a0a0a 3.23%, #40a055 78.21%, #1b8e34 98.59%);
    overflow: hidden;
    pointer-events: none;
}

.hero__layout {
    position: relative;
    z-index: 1;
    padding-top: 0;
}

.hero__wrap {
    position: relative;
    display: flex;
    align-items: stretch;
}

.hero__main {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    flex: 0 0 auto;
    width: calc(100% - 365px);
    padding: 70px 40px;
    color: var(--color-white);
}

.hero__main > :not(.hero__bg) {
    position: relative;
    z-index: 2;
}

.hero__label {
    margin: 0 0 45px;
    font-family: var(--font-display);
    font-size: 34px;
    line-height: 1.4;
    text-transform: lowercase;
}

.hero__title {
    margin: 0 0 25px;
    font-family: var(--font-body);
    font-size: 90px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
}

.hero__text {
    margin: 0 0 50px;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
}

.hero__buttons .btn:not(:last-child) {
    margin-right: 40px;
}

/* Hero aside — cards */

.hero__aside {
    position: relative;
    right: auto;
    top: auto;
    z-index: 2;
    margin-left: auto;
    width: 325px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.hero__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
}

.hero__card + .hero__card {
    margin-top: 20px;
}

.hero__card_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-shrink: 0;
}

.hero__card_label {
    margin: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: #0F541F;
    text-transform: lowercase;
}

.hero__card_icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

.hero__card_body {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.hero__card_title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.25;
    color: #161616;
}

.hero__card_subtext {
    margin: 15px 0 0;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: #161616;
}

.hero__stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--page-gutter);
    margin-top: 20px;
}

/* Hero Timer */

.hero__timer {
    display: none;
    position: fixed;
    bottom: 0;
    left: var(--page-margin);
    right: var(--page-margin);
    z-index: 100;
    background: #161616;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.hero__timer_close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--color-green);
    transition: color 0.2s ease;
}

.hero__timer_close:hover,
.hero__timer_close:focus-visible {
    color: var(--color-white);
    outline: none;
}

.hero__timer_close_icon {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
}

.hero__timer_close_icon::before,
.hero__timer_close_icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    margin-top: -1px;
    margin-left: -8px;
    background: currentColor;
    border-radius: 1px;
}

.hero__timer_close_icon::before {
    transform: rotate(45deg);
}

.hero__timer_close_icon::after {
    transform: rotate(-45deg);
}

.hero__timer.is_visible {
    transform: translateY(0);
    opacity: 1;
}

.hero__timer_inner {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    min-height: 80px;
}

.hero__timer_label {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.1;
    color: var(--color-white);
    white-space: nowrap;
}

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

.hero__timer_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 64px;
}

.hero__timer_num {
    display: block;
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-green);
    white-space: nowrap;
}

.hero__timer_text {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.25;
    color: var(--color-gray);
    text-align: center;
    width: 100%;
}

.hero__timer_btn {
    flex-shrink: 0;
}


.stat_card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: var(--color-white);
    color: var(--color-black);
}

.stat_card_green {
    background: var(--color-green);
}

.stat_card__title {
    margin: 0 0 65px;
    font-family: var(--font-body);
    font-size: 40px;
    line-height: 1;
}

.stat_card__line {
    height: 1px;
    margin: 0 0 15px;
    background: var(--color-black);
    opacity: 0.2;
}

.stat_card_green .stat_card__line {
    background: var(--color-black);
    opacity: 0.3;
}

.stat_card__text {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

/* Page glow (Figma Ellipse 466) */

main {
    position: relative;
}

.page_glow {
    position: absolute;
    z-index: 1;
    top: 1284px;
    left: -447px;
    width: 975px;
    height: 975px;
    pointer-events: none;
}

.page_glow__img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
}

/* About */

.about {
    position: relative;
}

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

.about__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

/* Unified section head label */
.block_head__label {
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
}

.about__label {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
    text-transform: lowercase;
}

.about__content {
    width: 670px;
    max-width: 100%;
    flex-shrink: 0;
}

.about__title {
    margin: 0 0 20px;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
}

.about__text_cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.about__text_cols p {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

.about__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--page-gutter);
}

.about__photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Features */

.features__inner {
    display: flex;
    flex-direction: column;
    gap: var(--page-gutter);
}

.features__label {
    display: none;
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
    text-transform: lowercase;
}

.features__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--page-gutter);
}

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

.features__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
}

.feature_card {
    background: var(--color-white);
    color: var(--color-black);
    padding: 20px;
    min-height: 100%;
}

.feature_card__body {
    display: flex;
    flex-direction: column;
    gap: 60px;
    height: 100%;
}

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

.feature_card__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.1;
}

.feature_card__decor {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
    flex-shrink: 0;
    width: 26px;
    height: 16px;
}

.feature_card__pixel {
    background: var(--color-gray);
}

.feature_card__pixel.is_green {
    background: var(--color-green);
}

.feature_card__desc {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature_card__line {
    height: 1px;
    background: var(--color-gray);
}

.feature_card__text {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

/* Audience */

.audience {
    padding: 80px 0;
}

.audience__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--page-gutter);
    align-items: stretch;
}

.audience__panel {
    position: relative;
    min-height: 979px;
    padding: 20px;
}

.audience__panel_left {
    color: var(--color-black);
    overflow: hidden;
}

.audience__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.audience__bg_wide {
    display: none;
}

.audience__panel_inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(979px - 40px);
    height: 100%;
}

.audience__label {
    margin: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
}

.audience__main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.audience__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.05;
}

.audience__text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.audience__text p {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
}

.audience__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.audience__buttons .btn {
    flex: 0 0 auto;
}

.audience__panel_right {
    background: var(--color-green-dark);
    color: var(--color-white);
}

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

.audience_card {
    display: flex;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.audience_card__num {
    flex-shrink: 0;
    align-self: flex-start;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1;
    color: var(--color-gray);
    opacity: 0.5;
}

.audience_card__body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.audience_card__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
}

.audience_card__text {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

/* Accordion (FAQ etc.) */

.streams_intro__grid,
.benefits__grid,
.speakers__grid {
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 40px;
    align-items: start;
}

.accordion_item {
    border-top: 2px solid var(--color-gray);
}

.accordion_item:last-child {
    border-bottom: 2px solid var(--color-gray);
}

.accordion_item__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    padding: 22px 0;
    text-align: left;
}

.accordion_item__icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-gray);
    position: relative;
}

.accordion_item__icon::before,
.accordion_item__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: var(--color-black);
    transform: translate(-50%, -50%);
}

.accordion_item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion_item.is_open .accordion_item__icon::after {
    display: none;
}

.accordion_item__panel {
    display: none;
    padding: 0 0 22px;
}

.accordion_item.is_open .accordion_item__panel {
    display: block;
}

/* Streams */

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

.streams_intro__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

.streams_intro__label {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
}

.streams_intro__head {
    width: 576px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.streams_intro__intro p {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

.streams_intro__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-white);
}

.streams_intro__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.streams_intro__buttons .btn {
    flex: 0 0 auto;
}

.streams_intro__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--page-gutter);
}

.stream_card {
    position: relative;
    padding: 30px;
    border-radius: var(--radius-lg);
    min-height: 383px;
    color: var(--color-white);
    overflow: hidden;
}

.stream_card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.stream_card__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.stream_card__num {
    flex-shrink: 0;
    align-self: flex-start;
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1;
    color: var(--color-gray);
    opacity: 0.3;
}

.stream_card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 40px;
    min-width: 0;
}

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

.stream_card__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    max-width: 325px;
}

.stream_card__decor {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.stream_card__pixel {
    background: var(--color-gray);
}

.stream_card__pixel.is_green {
    background: var(--color-green);
}

.stream_card__desc {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stream_card__line {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.stream_card__text {
    margin: 0;
}

/* Benefits */

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

.benefits__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

.benefits__label {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
}

.benefits__head {
    width: 669px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.benefits__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
}

.benefits__text_cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.benefits__text_cols p {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

.benefits__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

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

.benefit_case__line {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.benefit_case__content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit_case__main {
    display: flex;
    gap: 20px;
    width: 670px;
    max-width: 100%;
    flex-shrink: 0;
}

.benefit_case__num {
    flex-shrink: 0;
    align-self: flex-start;
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1;
    color: var(--color-green);
    opacity: 0.7;
}

.benefit_case__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 445px;
}

.benefit_case__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
}

.benefit_case__text {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

.benefit_case__examples {
    display: flex;
    flex: 1;
    gap: 20px;
    min-width: 0;
}

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

.benefit_case__media {
    width: 100%;
    height: 251px;
    background: var(--color-gray);
}

.benefit_case__caption {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

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

/* CTA talks */

.cta_talks {
    padding: 80px 0;
}

.cta_talks__panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 566px;
    padding: 60px 30px;
    border-radius: 20px;
    background: linear-gradient(119.9deg, #ffffff 3.23%, #1afe4c 63.08%, #1b8e34 98.59%);
    overflow: hidden;
}

.cta_talks__mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    width: 294px;
    height: 446px;
    flex-shrink: 0;
}

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

.cta_talks__mosaic_left .cta_talks__photo_1 { grid-column: 1; grid-row: 1; }
.cta_talks__mosaic_left .cta_talks__photo_2 { grid-column: 2; grid-row: 2; }
.cta_talks__mosaic_left .cta_talks__photo_3 { grid-column: 1; grid-row: 2; }
.cta_talks__mosaic_left .cta_talks__photo_4 { grid-column: 2; grid-row: 3; }

.cta_talks__mosaic_right .cta_talks__photo_5 { grid-column: 1; grid-row: 2; }
.cta_talks__mosaic_right .cta_talks__photo_6 { grid-column: 2; grid-row: 1; }
.cta_talks__mosaic_right .cta_talks__photo_7 { grid-column: 2; grid-row: 2; }
.cta_talks__mosaic_right .cta_talks__photo_8 { grid-column: 1; grid-row: 3; }

.cta_talks__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 617px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-black);
}

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

.cta_talks__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
}

.cta_talks__text {
    font-size: 20px;
    line-height: 1.2;
    margin: 0 auto;
    max-width: 578px;
}

.cta_talks__text p {
    margin: 0;
}

.cta_talks__text p + p {
    margin-top: 10px;
}

/* CTA speaker */

.cta_speaker {
    padding: 80px 0;
}

.cta_speaker__panel {
    position: relative;
    min-height: 492px;
    background: var(--color-green);
    overflow: hidden;
}

.cta_speaker__mask {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.cta_speaker__photo {
    position: absolute;
    z-index: 2;
    top: 74px;
    width: 344px;
    height: 344px;
    object-fit: cover;
}

.cta_speaker__photo_left {
    left: 30px;
}

.cta_speaker__photo_right {
    right: 30px;
}

.cta_speaker__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 628px;
    margin: 0 auto;
    padding: 93px 20px;
    text-align: center;
    color: var(--color-black);
}

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

.cta_speaker__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
}

.cta_speaker__text {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 602px;
    margin: 0 auto;
}

.cta_speaker__text p {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

.cta_speaker__text p:not(:last-child) {
    margin-bottom: 20px;
}

/* CTA speaker — decor vectors */
.cta_speaker__deco {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}
/* CTA speaker — 1440+ BP (also 1920 decor — same positions) */
.cta_speaker__deco_tr_corner { right: 400px;  top: 232px;  width: 43px; height: 46px; }
.cta_speaker__deco_tl_top    { left: 440px;   top: 37px;   width: 62px; height: 74px; }
.cta_speaker__deco_bl_left   { left: 397px;   top: 258px;  width: 74px; height: 62px; }
.cta_speaker__deco_tr_top    { right: 2px;    top: 0;      width: 74px; height: 62px; }
.cta_speaker__deco_br_right  { right: 501px;  bottom: 54px; width: 74px; height: 62px; }
.cta_speaker__deco_bc_center { left: 532px;   bottom: 49px; width: 65px; height: 49px; }
.cta_speaker__deco_tr_mid    { right: 443px;  top: 51px;   width: 65px; height: 49px; }
.cta_speaker__deco_bl_corner { left: 0;       bottom: 0;   width: 65px; height: 49px; }
.cta_speaker__deco_768_tl,
.cta_speaker__deco_768_bl,
.cta_speaker__deco_768_tr,
.cta_speaker__deco_768_ml,
.cta_speaker__deco_768_br,
.cta_speaker__deco_768_mr,
.cta_speaker__deco_992_tl,
.cta_speaker__deco_992_bl,
.cta_speaker__deco_992_mr,
.cta_speaker__deco_992_br,
.cta_speaker__deco_992_tr,
.cta_speaker__deco_992_bc {
    display: none;
}

/* cta_speaker — hide 480 decors at base */
.cta_speaker__deco_480_tl,
.cta_speaker__deco_480_bl,
.cta_speaker__deco_480_tr,
.cta_speaker__deco_480_br {
    display: none;
}

/* CTA blocks (repeat, final) */

.cta_block {
    padding: 80px 0;
}

.cta_block__bg {
    min-height: 560px;
    margin: 0 var(--page-margin);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.cta_block__bg_dark {
    background: linear-gradient(135deg, #0f541f, #161616);
}

.cta_block__bg_green {
    background: linear-gradient(135deg, #1afe4c, #0f541f);
}

.cta_block__inner {
    margin-top: -460px;
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    padding: 60px 0;
}

.cta_block__title {
    margin-bottom: 20px;
}

.cta_block__text {
    max-width: 560px;
    margin: 0 auto 30px;
}

.cta_block__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Speakers */

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

.speakers__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

.speakers__label {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
}

.speakers__head {
    width: 668px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}
.speakers__head > *:not(:last-child) {
    margin-bottom: 30px;
}

.speakers__head p {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

.speakers__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
}

.speakers__head .btn {
    flex: 0 0 auto;
    width: 202px;
}

.speakers__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--page-gutter);
}

.speaker_card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 10px 20px;
    background: var(--color-white);
    color: var(--color-black);
    border-radius: var(--radius-lg);
}

.speaker_card__photo {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    background: var(--color-gray);
    overflow: hidden;
}

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

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

.speaker_card__info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.speaker_card__name {
    margin: 0;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.speaker_card__role {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

.speaker_card__link {
    font-size: 16px;
    line-height: 1.1;
    color: var(--color-green);
    text-decoration: underline;
    align-self: flex-start;
}

.speakers__controls {
    display: none;
}

.speaker_card:nth-child(n+9) {
    display: none;
}

.speakers__more {
    align-self: center;
    min-width: 292px;
}

/* All-speakers page */

.speakers_all {
    padding: 80px 0;
}

.speakers_all__top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}

.speakers_all__label {
    margin: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
}

.speakers_all__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 50px;
    font-weight: 500;
    line-height: 1.05;
}

.speakers_all__grid .speaker_card {
    display: flex;
}

/* Tickets */

.tickets {
    color: var(--color-white);
}

.tickets__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.tickets__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
}

.tickets__subtitle {
    font-size: 22px;
    line-height: 1.2;
    margin: 0;
}

.tickets__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--page-gutter);
}

.ticket_card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    color: var(--color-black);
}

.ticket_card_company {
    background: var(--color-green-dark);
    color: var(--color-white);
}

.ticket_card__body {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 100%;
    padding: 20px;
}

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

.ticket_card__heading {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

.ticket_card__name {
    margin: 0;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-green-dark);
}

.ticket_card_company .ticket_card__name,
.ticket_card_company .ticket_card__date {
    color: var(--color-white);
}

.ticket_card__date {
    font-size: 22px;
    line-height: 1.2;
    margin: 0;
    color: var(--color-black);
}

.ticket_card__line {
    height: 1px;
    background: var(--color-gray-secondary);
}

.ticket_card_company .ticket_card__line {
    background: rgba(255, 255, 255, 0.25);
}

.ticket_card__main {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.ticket_card__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    line-height: 1.25;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ticket_card__feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ticket_card__mark {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-top: 5px;
    background: var(--color-green);
}

.ticket_card__price {
    margin: 0;
    font-size: 40px;
    line-height: 1;
    color: var(--color-green-dark);
}

.ticket_card__increases {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ticket_card__increases_label {
    font-size: 16px;
    line-height: 1.25;
    margin: 0;
}

.ticket_card__increases_list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
    line-height: 1.25;
    margin: 0;
}

.ticket_card__increase_dash {
    height: 1px;
    background: url('../img/tickets/dash-line.svg') repeat-x left center / auto 1px;
}

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

.ticket_card__decor {
    position: absolute;
    right: 20px;
    bottom: 110px;
    width: 140px;
    height: auto;
    pointer-events: none;
}

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

.ticket_card__actions .btn {
    width: 100%;
    justify-content: center;
}

.btn_outline_green {
    color: var(--color-green-dark);
    background: transparent;
    border: 1px solid var(--color-green-dark);
}

.btn_outline_green:hover {
    background: var(--color-green);
    border-color: var(--color-green);
    color: var(--color-black);
}

/* Installments */

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

.installments__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

.installments__label {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
    text-transform: lowercase;
}

.installments__intro {
    width: 670px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.installments__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-white);
}

.installments__text {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
    max-width: 528px;
}

.installments__intro .btn {
    align-self: flex-start;
    flex: 0 0 auto;
}

.installments__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
}

.installments__cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.installment_card {
    border-radius: var(--radius-md);
    color: var(--color-black);
    background: linear-gradient(122.78deg, #ffffff 3.23%, #1afe4c 63.08%, #1b8e34 98.59%);
}

.installment_card:nth-child(2) {
    background: linear-gradient(-69.8deg, #ffffff 7.75%, #1afe4c 92.64%);
}

.installment_card__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 184px;
    padding: 20px;
}

.installment_card__title {
    margin: 0;
    font-weight: 500;
    color: var(--color-black);
}

.installment_card__line {
    height: 1px;
    background: var(--color-gray-secondary);
}

.installment_card__text {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
    color: var(--color-black);
}

.installment_form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
}

.installment_form__title {
    margin: 0;
    font-weight: 500;
}

.installment_form__fields {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.installment_form__field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.installment_form__label {
    display: block;
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

.installment_form__select {
    display: block;
    width: 100%;
    min-height: 55px;
    padding: 0 44px 0 20px;
    border: 1px solid var(--color-gray);
    border-radius: var(--radius-sm);
    font: inherit;
    font-size: 16px;
    line-height: 1.2;
    color: var(--color-black);
    background: var(--color-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23161616' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") calc(100% - 20px) 50% / 12px 8px no-repeat;
    appearance: none;
    cursor: pointer;
}

.installment_form__submit_wrap {
    width: 100%;
}

.installment_form__tinkoff {
    display: block;
    width: 100%;
}

.installment_form__price {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    color: var(--color-green-dark);
}

.installment_form__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.installment_form__consent a {
    color: var(--color-green-dark);
    text-decoration: underline;
}

.installment_form__checkbox {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

/* Reviews */

.reviews__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow-x: visible;
}

.reviews__slider {
    overflow: hidden;
    width: calc(100% + var(--page-margin) + var(--reviews-peek));
    margin-right: calc(-1 * (var(--page-margin) + var(--reviews-peek)));
}

.reviews__track {
    display: block;
    width: 100%;
}

.reviews__track .slick-list {
    overflow: hidden;
}

.reviews__track .slick-track {
    display: flex;
}

.reviews__track .slick-slide {
    height: auto;
    float: none;
}

.reviews__track .slick-slide > div {
    height: 100%;
}

.reviews__track .review_card {
    width: 440px;
    margin-right: 20px;
    box-sizing: border-box;
    height: 100%;
    border-radius: 0;
}

.review_card {
    display: flex;
    flex-direction: column;
    min-height: 555px;
    padding: 20px;
}

.reviews__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

.reviews__label {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
    text-transform: lowercase;
}

.reviews__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 90px;
    grid-template-rows: auto auto;
    gap: 20px 0;
    width: 670px;
    max-width: 100%;
    align-items: start;
}

.reviews__intro {
    display: contents;
}

.reviews__title {
    grid-column: 1;
    grid-row: 1;
}

.reviews__subtitle {
    grid-column: 1;
    grid-row: 2;
}

.reviews__controls {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin-top: 8px;
}

.reviews__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
}

.reviews__subtitle {
    font-size: 22px;
    line-height: 1.2;
    margin: 0;
}

.review_card__author {
    display: flex;
    gap: 22px;
    align-items: center;
    margin-bottom: 20px;
}

.review_card__avatar {
    flex-shrink: 0;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    object-fit: cover;
}

.review_card__meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review_card__name {
    font-size: 20px;
    line-height: 1.2;
    margin: 0;
    font-weight: 500;
}

.review_card__role {
    font-size: 16px;
    line-height: 1.25;
    margin: 0;
}

.review_card__texts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    word-break: break-word;
    flex: 1;
}

.review_card__text {
    font-size: 16px;
    line-height: 1.25;
    margin: 0;
    color: var(--color-black);
}

.reviews__controls .slick-arrow {
    position: static;
    transform: none;
}

.reviews__track .slick-arrow::before {
    display: none;
}

.slider__arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40px 40px;
}

.slider__arrow_prev {
    background-image: url('../img/icons/slider-arrow-left.svg');
}

.slider__arrow_next {
    background-image: url('../img/icons/slider-arrow-right.svg');
}

.slider__arrow_prev:hover {
    background-image: url('../img/icons/slider-arrow-left-hover.svg');
}

.slider__arrow_next:hover {
    background-image: url('../img/icons/slider-arrow-right-hover.svg');
}

/* Media / partners */

.media__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.media__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

.media__label {
    margin: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
    text-transform: lowercase;
}

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

.media__intro p {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

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

.media__controls {
    display: none;
    flex-shrink: 0;
    gap: 10px;
}

.media__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
}

.media__mosaic {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--page-gutter);
    margin-top: 40px;
}

.media__photo {
    display: block;
    width: 100%;
    height: 325px;
    border-radius: 0;
    object-fit: cover;
}

.media__photo_01 {
    grid-column: 1 / span 2;
    grid-row: 1;
}

.media__photo_02 {
    grid-column: 3;
    grid-row: 1;
}

.media__photo_03 {
    grid-column: 4;
    grid-row: 1;
}

.media__photo_04 {
    grid-column: 1;
    grid-row: 2;
}

.media__photo_05 {
    grid-column: 2;
    grid-row: 2;
}

.media__photo_06 {
    grid-column: 3 / span 2;
    grid-row: 2;
}

.cta_partners {
    padding: 0;
}

.cta_partners .cta_talks__panel {
    width: 100%;
}

.cta_partners .cta_talks__mosaic {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.cta_partners .cta_talks__mosaic_left {
    left: 30px;
}

.cta_partners .cta_talks__mosaic_right {
    right: 30px;
}

.cta_partners .cta_talks__content {
    width: 100%;
    max-width: none;
    flex: 1 1 auto;
    margin: 0;
    padding: 0 410px;
    box-sizing: border-box;
}

.cta_partners .cta_talks__text {
    max-width: none;
}

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

.partners {
    display: none !important;
}

/* hide — пока скрыто */
.speakers,
.speakers_all,
.speakers_page__section {
    display: none !important;
}

.cta_speaker {
    display: none !important;
}


.partners__head {
    width: 100%;
    margin: 0 0 60px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 30px;
}

.partners__label {
    margin: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
    text-transform: lowercase;
    width: calc((100% - 20px) / 2);
}

.partners__intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc((100% - 20px) / 2);
}

.partners__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-white);
    white-space: nowrap;
}

.partners__intro p {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
    color: var(--color-white);
}

.partners__rows {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
}

.partners__row {
    display: flex;
    align-items: flex-start;
    min-height: 267px;
    padding-top: 30px;
    border-top: 1px solid var(--color-gray-secondary);
}

.partners__row span {
    display: block;
    max-width: 445px;
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-white);
}

.partners__row_tall {
    min-height: 264px;
}

.partners__row:last-child {
    border-bottom: 1px solid var(--color-gray-secondary);
}

/* Organizers */

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

.organizers__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

.organizers__label {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
    text-transform: lowercase;
}

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

.organizers__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
    white-space: nowrap;
}

.organizers__text {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

.organizers__cta {
    align-self: flex-start;
    min-height: 58px;
    padding: 20px 35px;
    line-height: 1.1;
}

.organizers__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--page-gutter);
}

.organizer_card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    min-height: 355px;
}

.organizer_card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.organizer_card__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 34px;
    min-height: 100%;
    padding: 20px;
}

.organizer_card__photo {
    flex-shrink: 0;
    width: 185px;
    height: 185px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.organizer_card__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1 auto;
    max-width: 411px;
    padding-top: 0;
}

.organizer_card__desc {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.organizer_card__name {
    font-size: 30px;
    margin: 0;
    font-weight: 500;
    line-height: 1;
    color: var(--color-white);
}

.organizer_card__line {
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.organizer_card__texts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    word-break: break-word;
}

.organizer_card__text {
    font-size: 18px;
    margin: 0;
    line-height: 1.25;
    color: var(--color-white);
}

/* FAQ */

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

.organizers__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.organizers__content .organizers__intro {
    width: 100%;
    max-width: none;
}

.faq__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

.faq__label {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
    text-transform: lowercase;
}

.faq__title {
    margin: 0;
    width: 670px;
    max-width: 100%;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-white);
}

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

.faq__col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq__col .accordion_item {
    border-top: 1px solid var(--color-gray-secondary);
    padding: 30px 0;
}

.faq__col .accordion_item:last-child {
    border-bottom: 1px solid var(--color-gray-secondary);
}

.faq__col .accordion_item__row {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.faq__col .accordion_item.is_open .accordion_item__row {
    align-items: flex-start;
}

.faq__col .accordion_item__main {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq__col .accordion_item.is_open .accordion_item__main {
    gap: 15px;
}

.faq__col .accordion_item__toggle {
    gap: 0;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    width: 100%;
    color: var(--color-white);
}

.faq__col .accordion_item__icon_btn {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    padding: 0;
    align-self: flex-start;
    color: inherit;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.faq__col .accordion_item:not(.is_open) .accordion_item__icon_btn {
    align-self: center;
}

.faq__col .accordion_item__title {
    flex: 1 1 auto;
    max-width: none;
    line-height: 1.1;
    font-weight: 500;
    color: var(--color-white);
    word-break: break-word;
}

.faq__col .accordion_item__panel p {
    line-height: 1.25;
    color: var(--color-white);
    word-break: break-word;
}

.faq__col .accordion_item__panel {
    padding: 0;
}

.faq__col .accordion_item__icon {
    position: relative;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin: 0;
    border: none;
    border-radius: 0;
    background: transparent;
}

.faq__col .accordion_item__icon::before,
.faq__col .accordion_item__icon::after {
    display: none;
    content: none;
}

.faq__col .accordion_item__icon_frame {
    position: absolute;
    top: -0.72px;
    left: -0.72px;
    width: 41.44px;
    height: 41.44px;
    max-width: none;
    display: block;
}

.faq__col .accordion_item__icon_inner {
    position: absolute;
    top: 8.57px;
    left: 8.57px;
    width: 22.86px;
    height: 22.86px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    overflow: visible;
}

.faq__col .accordion_item__icon_mark {
    flex: 0 0 auto;
    width: 22.86px;
    height: 22.86px;
    max-width: none;
    display: block;
    transform-origin: center center;
}

.faq__col .accordion_item.is_open .accordion_item__icon_mark {
    transform: rotate(-45deg);
}

/* Location */

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

.location__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

.location__label {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
    text-transform: lowercase;
}

.location__title {
    margin: 0;
    width: 670px;
    max-width: 100%;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-white);
}

.location__cards {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 325px 325px;
    grid-template-rows: auto auto;
    gap: var(--page-gutter);
}

.location__venue {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: var(--color-white);
    color: var(--color-black);
    border: none;
    border-radius: var(--radius-lg);
}

.location__info:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
}

.location__info_place {
    grid-column: 2;
    grid-row: 2;
}

.location__photo {
    width: 100%;
    height: 566px;
    grid-column: 3;
    grid-row: 1 / span 2;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.location__venue_label,
.location__info_label {
    margin: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-green);
    text-transform: lowercase;
}

.location__venue_label {
    margin-bottom: 25px;
}

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

.location__venue_title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-green-dark);
}

.location__venue_text {
    font-size: 22px;
    line-height: 1.2;
    margin: 0;
}

.location__venue_text p {
    margin: 0;
}

.location__venue_text p + p {
    margin-top: 10px;
}

.location__venue_address {
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    margin: 40px 0 20px;
}

.location__venue .btn {
    align-self: flex-start;
}

.location__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 273px;
    padding: 30px;
    background: var(--color-white);
    color: var(--color-black);
    border: none;
    border-radius: var(--radius-lg);
}

.location__info_value {
    margin: 0;
    margin-top: auto;
    font-size: 40px;
    line-height: 1.2;
}

.location__stats {
    display: flex;
    gap: 100px;
    margin-top: auto;
    width: 100%;
}

.location__stat_value {
    margin: 0;
    font-size: 40px;
    line-height: 1.2;
}

.location__stat_label {
    font-size: 22px;
    line-height: 1.2;
    margin: 10px 0 0;
}

.location__map {
    min-height: 650px;
    border-radius: var(--radius-lg);
    background: var(--color-gray);
    overflow: hidden;
}

/* CTA final */

.cta_home__wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--page-gutter);
    align-items: stretch;
}

.cta_home__photo {
    display: block;
    width: 100%;
    height: 530px;
    border-radius: 0;
    object-fit: cover;
}

.cta_home__panel {
    position: relative;
    min-height: 530px;
    overflow: hidden;
    border-radius: 0;
    background: var(--Green-main, #1AFE4C);
}

/* CTA home — decor 1920 (base) */
.cta_home__deco {
    position: absolute;
    pointer-events: none;
    user-select: none;
}
.cta_home__deco_tl { left: 0;     top: 0;     width: 125px; height: 105px; }
.cta_home__deco_br { right: 0;    bottom: 0;  width: 154px; height: 129px; }
.cta_home__deco_bl { left: 62px;  bottom: 68px; width: 99px; height: 75px; }
.cta_home__deco_tr { right: 91px; top: 75px;  width: 98px;  height: 74px; }

/* CTA home — hide 768+992 decor at base */
.cta_home__deco_768_tl,
.cta_home__deco_768_tr,
.cta_home__deco_768_ml,
.cta_home__deco_768_mr,
.cta_home__deco_992_tl,
.cta_home__deco_992_br,
.cta_home__deco_992_bl,
.cta_home__deco_992_tr {
    display: none;
}

.cta_home__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 530px;
    padding: 40px;
    text-align: center;
    background: transparent;
    color: var(--color-black);
    border-radius: 0;
}

.cta_home__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 602px;
}

.cta_home__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
}

.cta_home__text {
    font-size: 22px;
    line-height: 1.2;
    margin: 0;
    max-width: 519px;
}

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

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

.cta_home__social img {
    display: block;
    max-width: none;
    flex-shrink: 0;
}

.cta_home__social:nth-child(1) img {
    width: 45px;
    height: 45px;
}

.cta_home__social:nth-child(2) img {
    width: 67px;
    height: 41px;
}

.cta_home__social:nth-child(3) img {
    width: 45px;
    height: 38px;
}

/* Tech pages */

.tech_hero {
    position: relative;
    padding: 20px 0 60px;
}

.tech_hero__bg {
    position: absolute;
    top: 20px;
    right: var(--page-margin);
    left: var(--page-margin);
    z-index: 0;
    min-height: 600px;
    border-radius: 0;
    background: linear-gradient(114.93deg, #0a0a0a 3.23%, #2f7e40 54.24%, #127728 98.59%);
    overflow: hidden;
    pointer-events: none;
}

.tech_hero__pixels {
    position: absolute;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.tech_hero__pixels_left {
    top: 0;
    left: 0;
    width: 539px;
    aspect-ratio: 539 / 444;
    background-image: url(../img/decor/tech_hero/pixels_shared_1440.svg);
    transform: rotate(180deg);
}

.tech_hero__pixels_right {
    top: auto;
    right: 0;
    bottom: 0;
    width: 539px;
    aspect-ratio: 539 / 444;
    background-image: url(../img/decor/tech_hero/pixels_shared_1440.svg);
}

.tech_hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 736px;
    margin: 0 auto;
    padding: 201px var(--page-margin) 0;
    text-align: center;
    color: var(--color-white);
}

.tech_hero__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.tech_hero__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 90px;
    font-weight: 400;
    line-height: 1;
}

.tech_hero__title_display {
    font-family: var(--font-display);
}

.tech_hero__text {
    margin: 0;
    max-width: 736px;
    font-size: 30px;
    line-height: 1.25;
}

.tech_hero__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.tech_hero__buttons .btn {
    min-width: 202px;
}

.legal_page {
    padding: 40px 0 90px;
}

.legal_page__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1013px;
    margin-left: auto;
    margin-right: auto;
}

.legal_page__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
}

.legal_page__body {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.legal_page__body p {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
}

.legal_page__intro p {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
}

.legal_page__body--policy ol {
    margin: 0 0 10px;
    padding-left: 1.5em;
    font-size: inherit;
    line-height: 1.2;
}

.legal_page__body--policy p {
    margin: 0 0 10px;
}

.legal_page__body--policy p:last-child {
    margin-bottom: 0;
}

.legal_page__body--policy a {
    color: inherit;
    text-decoration: underline;
}

/* Speaker page (Figma 3218:2658) */

.speaker_page {
    padding: 30px 0 60px;
}

.speaker_page__inner {
    display: flex;
    flex-direction: column;
}

.speaker_page__inner .speaker_page__back {
    margin-bottom: 60px;
}

.speaker_page__back {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    font-weight: 400;
    text-transform: lowercase;
    color: var(--color-white);
}

.speaker_page__back > span {
    margin-left: 15px;
}

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

.speaker_page__back_arrow_turn {
    display: flex;
    transform: rotate(180deg) scaleY(-1);
}

.speaker_page__back_arrow {
    position: relative;
    width: 18px;
    height: 18.356px;
    flex-shrink: 0;
}

.speaker_page__back_arrow_shape {
    width: 18px;
    height: 18.356px;
    max-width: none;
}

.speaker_page__back_arrow_stem {
    position: absolute;
    left: 0.39px;
    top: 4.63px;
    width: 13.47px;
    height: 13.47px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker_page__back_arrow_stem img {
    width: 2.162px;
    height: 16.888px;
    max-width: none;
    transform: rotate(45deg);
}

.speaker_page__layout {
    display: flex;
    align-items: flex-start;
}

.speaker_page__photo {
    width: 590px;
    flex-shrink: 0;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-gray);
}

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

.speaker_page__content {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    flex: 1;
    margin-left: 30px;
}

.speaker_page__content > * + * {
    margin-top: 50px;
}

.speaker_page__name {
    margin: 0;
    font-size: 40px;
    line-height: 1.05;
    font-weight: 500;
}

.speaker_page__block {
    display: flex;
    flex-direction: column;
}

.speaker_page__label {
    font-size: 24px;
    margin: 0 0 25px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-green);
}

.speaker_page__talk_title {
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    margin: 0;
}

.speaker_page__text {
    font-size: 18px;
    margin: 0;
    line-height: 1.25;
}

.speaker_page__text,
.speaker_page__list,
.speaker_page__social_link span {
    font-size: 18px;
    line-height: 1.25;
    margin: 0;
}

.speaker_page__list {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    list-style: none;
}

.speaker_page__list > * + * {
    margin-top: 10px;
}

.speaker_page__list_item {
    display: flex;
    align-items: flex-start;
}

.speaker_page__list_item > * + * {
    margin-left: 10px;
}

.speaker_page__mark {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-top: 5px;
    background: var(--color-green);
}
.speaker_page__social_link {
    display: inline-flex;
    align-items: center;
    color: var(--color-white);
}

.speaker_page__social_link > * + * {
    margin-left: 20px;
}

.speaker_page__social_icon {
    flex-shrink: 0;
    width: 35px;
    height: 21.429px;
    max-width: none;
    object-fit: contain;
    margin-right: 20px;
}

.speaker_page__actions {
    display: flex;
    flex-wrap: wrap;
}

.speaker_page__actions .btn + .btn {
    margin-left: 40px;
}

.speaker_page__actions .btn {
    min-width: 202px;
}

/* UI kit page */

.ui_kit_page {
    padding: 160px 0 90px;
}

.ui_kit_page__block {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-gray);
}

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

/* Speakers page */

.speakers_hero {
    position: relative;
    padding: 0 0 70px;
}

.speakers_hero__layout {
    position: relative;
}

.speakers_hero__wrap {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 412px;
    gap: 40px;
    align-items: start;
    min-height: 462px;
    padding: 70px 30px 48px;
}

.speakers_hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(117.5deg, #0a0a0a 3.23%, #40a055 78.21%, #1b8e34 98.59%);
    pointer-events: none;
}

.speakers_hero__main {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    color: var(--color-white);
}

.speakers_hero__copy {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.speakers_hero__label {
    margin: 0;
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.4;
    text-transform: lowercase;
}

.speakers_hero__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 80px;
    font-weight: 400;
    line-height: 1;
    max-width: 556px;
}

.speakers_hero__btn {
    min-width: 202px;
}

.speakers_hero__aside {
    position: relative;
    z-index: 1;
    width: 412px;
    max-width: 100%;
    padding: 20px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    color: var(--color-black);
}

.speakers_hero__aside_inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.speakers_hero__aside_decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 88px;
    height: 71px;
    transform: rotate(180deg);
    pointer-events: none;
}

.speakers_hero__aside_label {
    margin: 0;
    padding-right: 98px;
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.4;
    color: var(--color-green-dark);
    text-transform: lowercase;
}

.speakers_hero__aside_body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 377px;
    word-break: break-word;
}

.speakers_hero__aside_date {
    margin: 0;
    font-family: var(--font-body);
    font-size: 30px;
    line-height: 1.25;
}

.speakers_hero__aside_place {
    margin: 0;
    max-width: 377px;
    font-size: 22px;
    line-height: 1.2;
}

.speakers_page__section {
    padding: 70px 0;
}

.speakers_page__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 20px;
}

.speakers_page__grid .speaker_card {
    display: flex;
}

.speakers_page__grid .speaker_card__name {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.1;
}

.speakers_page__grid .speaker_card__role {
    font-size: 18px;
    line-height: 1.2;
}

.speakers_cta {
    padding: 70px 0;
}

.speakers_cta__panel {
    position: relative;
    overflow: hidden;
    min-height: 492px;
    border-radius: 20px;
    background: var(--color-green);
    color: var(--color-black);
}

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

.speakers_cta__pixels {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.speakers_cta__pixel {
    position: absolute;
    pointer-events: none;
}

.speakers_cta__photo {
    position: absolute;
    top: 93px;
    width: 305px;
    height: 305px;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.speakers_cta__photo_left {
    left: 20px;
}

.speakers_cta__photo_right {
    right: 20px;
}

.speakers_cta__inner {
    position: relative;
    z-index: 2;
}

.speakers_cta__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
    max-width: 628px;
    margin: 0 auto;
    padding: 93px 20px;
}

.speakers_cta__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.speakers_cta__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
}

.speakers_cta__text {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 602px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}

.speakers_cta__text p {
    margin: 0;
}

.speakers_cta__text p:not(:last-child) {
    margin-bottom: 20px;
}

.speakers_cta__content .btn {
    flex: 0 0 auto;
    min-width: 202px;
}

.btn_dark {
    background: var(--color-black);
    color: var(--color-green);
}

.btn_dark:hover {
    background: #333;
}

.btn_dark:active {
    background: #444;
}

/* ================================================================
   for-speakers
   ================================================================ */

/* --- hero overrides --- */

.page_for_speakers .hero__bg {
    border-radius: 0;
}

.page_for_speakers .hero__buttons .btn:not(:last-child) {
    margin-right: 20px;
}

.page_for_speakers .fs_hero__notice {
    margin: 0 0 50px;
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-white);
    max-width: 919px;
}

.page_for_speakers .hero__buttons .btn {
    flex-shrink: 0;
    width: 275px;
    min-height: 58px;
    height: 58px;
    padding: 20px 35px;
    white-space: nowrap;
}

/* Section heads: flex 50/50 — adaptive.css @media (min-width: 769px) */
.page_for_speakers {
    --fs-head-left: 445px;
    --fs-head-gap: 485px;
    --fs-content-col: minmax(0, 1fr);
}

.page_for_speakers .fs_process__title {
    margin-bottom: 20px;
}

.page_for_speakers .fs_process__note {
    margin-bottom: 60px;
}

/* Критерии: номер слева, текст в колонке x≈970 (Figma 3300:9304) */
.page_for_speakers .fs_criteria__card {
    display: grid;
    grid-template-columns: var(--fs-head-left) var(--fs-head-gap) var(--fs-content-col);
    gap: 0;
    align-items: start;
}

.page_for_speakers .fs_criteria__card_num {
    grid-column: 1;
}

.page_for_speakers .fs_criteria__card_body {
    grid-column: 3;
    min-width: 0;
    max-width: none;
}

.fs_criteria__card_box {
    max-width: 774px;
}

/* --- С чего начать --- */

.fs_basics {
    padding: 80px 0;
}

.fs_basics__left {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fs_basics__label {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
}

.fs_basics__decor-wrap {
    width: 445px;
    max-width: 100%;
    height: 208px;
    margin-top: auto;
    flex-shrink: 0;
    overflow: hidden;
}

.fs_basics__decor {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

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

.fs_basics__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-white);
}

.fs_basics__text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fs_basics__text p {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-white);
}

/* --- Темы --- */

.fs_topics {
    padding: 80px 0;
}

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

.fs_topics__label {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
}

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

.fs_topics__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-white);
}

.fs_topics__note {
    margin: 0;
    max-width: 594px;
}

.fs_topics__note p {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-white);
}

.fs_topics__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--page-gutter);
}

.fs_topics__card {
    position: relative;
    padding: 30px;
    border-radius: 0;
    overflow: hidden;
    min-height: 381px;
}

.fs_topics__card_bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fs_topics__card_body {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.fs_topics__card_num {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1;
    color: rgba(217, 217, 217, 0.3);
}

.fs_topics__card_right {
    width: 411px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.fs_topics__card_title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-white);
    max-width: 325px;
}

.fs_topics__card_arrow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 7px;
}

.fs_topics__card_arrow_dot {
    display: block;
    width: 6px;
    height: 6px;
    background: #D9D9D9;
}

.fs_topics__card_arrow_dot_green {
    background: #1AFE4C;
}

.fs_topics__card_divider {
    display: block;
    width: 100%;
    height: 1px;
    background: #D9D9D9;
}

.fs_topics__card_desc {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fs_topics__card_text {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-white);
}

/* --- Тайминг --- */

.fs_timing {
    padding: 80px 0;
}

.fs_timing__label {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
}

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

.fs_timing__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-white);
}

.fs_timing__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-white);
}

.fs_timing__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--page-gutter);
    width: 100%;
    margin-top: 40px;
}

.fs_timing__card {
    padding: 30px;
    background: #FFF;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 65px;
}

.fs_timing__card_value {
    margin: 0;
    font-family: var(--font-body);
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-green);
}

.fs_timing__card_desc {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fs_timing__card_divider {
    display: block;
    width: 100%;
    height: 1px;
    background: #C0C0C0;
}

.fs_timing__card_text {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: #161616;
}

/* --- Как проходит отбор --- */

.fs_process {
    padding: 80px 0;
}

.fs_process__left {
    position: relative;
    flex-shrink: 0;
}

.fs_process__label {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
    white-space: nowrap;
}

.fs_process__decor {
    display: block;
    width: 100%;
    max-width: 445px;
    height: auto;
    object-fit: cover;
}

.fs_process__content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fs_process__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-white);
}

.fs_process__note {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-white);
    max-width: 559px;
}

.fs_process__steps {
    margin: 0;
    padding: 0;
    list-style: none;
    width: calc((100% - 20px) / 2);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fs_process__stepswrap {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
}

.fs_process__stepsleft {
    display: flex;
    align-items: flex-end;
    width: calc((100% - 20px) / 2);
    overflow: hidden;
}

.fs_process__divider {
    display: block;
    width: 100%;
    height: 1px;
    background: #4D4D4D;
}

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

.fs_process__step_num {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1;
    color: var(--color-green);
    opacity: 0.7;
}

.fs_process__step_text {
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-white);
    margin: 0;
}

/* --- per-step text widths (Figma 728/563/617/617/728/728) --- */
.fs_process__step:nth-of-type(1) .fs_process__step_text { max-width: 728px; }
.fs_process__step:nth-of-type(2) .fs_process__step_text { max-width: 563px; }
.fs_process__step:nth-of-type(3) .fs_process__step_text { max-width: 617px; }
.fs_process__step:nth-of-type(4) .fs_process__step_text { max-width: 617px; }
.fs_process__step:nth-of-type(5) .fs_process__step_text { max-width: 728px; }
.fs_process__step:nth-of-type(6) .fs_process__step_body { max-width: 728px; }

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

.fs_process__step_desc {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-white);
}

/* --- Этапы рассмотрения --- */

.fs_stages {
    padding: 80px 0;
}

.fs_stages__label {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
}

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

.fs_stages__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-white);
}

.fs_stages__note {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-white);
}

.fs_stages__cards {
    display: flex;
    flex-wrap: wrap;
    gap: var(--page-gutter);
    width: 100%;
    margin-top: 60px;
}

.fs_stages__cards > .fs_stages__card {
    flex: 1 1 calc((100% - 60px) / 4);
    min-width: 0;
}

.fs_stages__card {
    padding: 30px;
    background: #FFF;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.fs_stages__card_date {
    margin: 0 0 65px;
    font-family: var(--font-body);
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-green);
}

.fs_stages__card_desc {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fs_stages__card_divider {
    display: block;
    width: 100%;
    height: 1px;
    background: #C0C0C0;
}

.fs_stages__card_text {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: #161616;
}

/* --- Критерии отбора --- */

.fs_criteria {
    padding: 80px 0;
}

.fs_criteria__wrap {
    position: relative;
}

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

.fs_criteria__label {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
}

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

.fs_criteria__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-white);
}

.fs_criteria__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-white);
    max-width: 594px;
}

.fs_criteria__cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.fs_criteria__card {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.fs_criteria__card_num {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.2;
    color: var(--color-green);
    min-width: 40px;
}

.fs_criteria__card_body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: none;
}

.fs_criteria__card_title {
    margin: 0 0 20px;
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-white);
}

.fs_criteria__card_text {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    color: var(--color-white);
    max-width: none;
}

/* --- Что НЕ пройдёт отбор --- */

.fs_rejection {
    padding: 80px 0;
}

.fs_rejection__inner {
    position: absolute;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 0;
}

.fs_rejection__title {
    position: absolute;
    margin: 0;
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-white);
    white-space: nowrap;
}

.fs_rejection__label {
    display: none;
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
}

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

.fs_rejection__row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--page-gutter);
    width: 100%;
}

.fs_rejection__row:nth-child(1) .fs_rejection__card:nth-child(1) {
    grid-column: 3;
}

.fs_rejection__row:nth-child(1) .fs_rejection__card:nth-child(2) {
    grid-column: 4;
}

.fs_rejection__card {
    padding: 20px;
    background: #FFF;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 253px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

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

.fs_rejection__card_title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.1;
    color: #161616;
}

.fs_rejection__card_plus {
    flex-shrink: 0;
    display: block;
    width: 32px;
    height: 32px;
    max-width: none;
}

.fs_rejection__card_desc {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fs_rejection__card_divider {
    display: block;
    width: 100%;
    height: 1px;
    background: #C0C0C0;
}

.fs_rejection__card_text {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: #161616;
}

/* --- Работа с методистом --- */

.fs_methodologist {
    padding: 80px 0;
}

.fs_methodologist__label {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
}

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

.fs_methodologist__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-white);
    width: 625px;
    flex-shrink: 0;
}

.fs_methodologist__desc {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fs_methodologist__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-white);
}

.fs_methodologist__warning {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-white);
}

.fs_methodologist__warning_green {
    color: var(--color-green);
}

.fs_methodologist__stages {
    display: flex;
    flex-wrap: wrap;
    gap: var(--page-gutter);
    width: 100%;
    margin-top: 60px;
}

.fs_methodologist__stages > .fs_methodologist__stage {
    flex: 1 1 calc((100% - 60px) / 4);
    min-width: 0;
}

.fs_methodologist__stage {
    padding: 20px;
    background: #FFF;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.fs_methodologist__stage_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.fs_methodologist__stage_num {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1;
    color: var(--color-green);
    opacity: 0.7;
    margin-bottom: 60px;
}

.fs_methodologist__stage_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
}

.fs_methodologist__stage_arrow_turn {
    display: flex;
}

.fs_methodologist__stage_arrow_inner {
    display: flex;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
}

.fs_methodologist__stage_arrow_inner img {
    display: block;
    width: 26px;
    height: 26px;
    max-width: none;
}

.fs_methodologist__stage_body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

/* per-stage body widths (Figma: 317/336/392/292) */
.fs_methodologist__stage:nth-of-type(1) .fs_methodologist__stage_body { max-width: 317px; }
.fs_methodologist__stage:nth-of-type(2) .fs_methodologist__stage_body { max-width: 336px; }
.fs_methodologist__stage:nth-of-type(3) .fs_methodologist__stage_body { max-width: 392px; }
.fs_methodologist__stage:nth-of-type(4) .fs_methodologist__stage_body { max-width: 292px; }

.fs_methodologist__stage_body_wide {
    gap: 20px;
    justify-content: flex-start;
}

.fs_methodologist__stage_title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    color: #161616;
}

.fs_methodologist__stage_text {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: #161616;
}

/* --- Что на созвоне --- */

.fs_call {
    padding: 80px 0;
}

.fs_call__label {
    display: none;
    margin: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
    white-space: nowrap;
}

.fs_call__inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 0;
}

.fs_call__head {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc((100% - 20px) / 2);
}

.fs_call__title {
    margin: 0;
    width: 525px;
    flex-shrink: 0;
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-white);
}

.fs_call__decor {
    display: block;
    width: 445px;
    height: 285px;
    margin-top: auto;
    object-fit: cover;
}

.fs_call__steps {
    width: calc((100% - 20px) / 2);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fs_call__divider {
    display: block;
    width: 100%;
    height: 1px;
    background: #4D4D4D;
}

.fs_call__step {
    display: flex;
    align-items: flex-start;
    gap: 100px;
    width: 100%;
    word-break: break-word;
}

.fs_call__steps > .fs_call__step:nth-child(2) {
    gap: 98px;
}

.fs_call__step_body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 774px;
    flex-shrink: 0;
    max-width: 774px;
}

.fs_call__step_title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-white);
}

.fs_call__step_text {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-white);
}

.fs_call__steps > .fs_call__step:nth-child(2) .fs_call__step_text {
    max-width: 754px;
}

.fs_call__steps > .fs_call__step:nth-child(4) .fs_call__step_text {
    max-width: 679px;
}

.fs_call__step_num {
    flex-shrink: 0;
    width: 38px;
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1;
    color: var(--color-green);
    opacity: 0.7;
    text-align: right;
}

.fs_call__steps > .fs_call__step:nth-child(4) .fs_call__step_num,
.fs_call__steps > .fs_call__step:nth-child(6) .fs_call__step_num,
.fs_call__steps > .fs_call__step:nth-child(8) .fs_call__step_num,
.fs_call__steps > .fs_call__step:nth-child(10) .fs_call__step_num,
.fs_call__steps > .fs_call__step:nth-child(12) .fs_call__step_num {
    width: 36px;
}

/* --- Преимущества --- */

.fs_benefits {
    padding: 80px 0;
}

.fs_benefits__wrap {
    position: relative;
}

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

.fs_benefits__label {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
}

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

.fs_benefits__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-white);
}

.fs_benefits__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-white);
    max-width: 594px;
}

.fs_benefits__cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 445px));
    justify-content: space-between;
    gap: var(--page-gutter);
}

.fs_benefits__controls {
    display: none;
}

.fs_benefits__card {
    padding: 20px;
    background: #FFF;
    border-radius: 0;
    height: 357px;
    box-sizing: border-box;
}

.fs_benefits__card_inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 317px;
    gap: 0;
    word-break: break-word;
}

.fs_benefits__card:nth-child(1) .fs_benefits__card_inner {
    gap: 0;
}

.fs_benefits__card:nth-child(6) .fs_benefits__card_inner {
    gap: 0;
}

.fs_benefits__card:nth-child(7) .fs_benefits__card_inner {
    gap: 0;
}

.fs_benefits__card_num {
    flex-shrink: 0;
    align-self: flex-start;
    font-family: var(--font-display);
    margin: 0 0 87px;
    font-size: 50px;
    line-height: 1;
    color: var(--color-green);
    opacity: 0.7;
}

.fs_benefits__card_body {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex-shrink: 0;
}

.fs_benefits__card_title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.1;
    color: #161616;
    min-height: 48px;
}

.fs_benefits__card_text {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: #161616;
}


/* per-card body/title widths (Figma) */
.fs_benefits__card:nth-child(1) .fs_benefits__card_body { max-width: 405px; }
.fs_benefits__card:nth-child(2) .fs_benefits__card_body { max-width: 393px; }
.fs_benefits__card:nth-child(3) .fs_benefits__card_body { max-width: 405px; }
.fs_benefits__card:nth-child(3) .fs_benefits__card_title { max-width: 385px; }
.fs_benefits__card:nth-child(4) .fs_benefits__card_body { max-width: 374px; }
.fs_benefits__card:nth-child(4) .fs_benefits__card_title { max-width: 346px; }
.fs_benefits__card:nth-child(5) .fs_benefits__card_body { max-width: 405px; }
.fs_benefits__card:nth-child(5) .fs_benefits__card_title { max-width: 374px; }
.fs_benefits__card:nth-child(6) .fs_benefits__card_body { max-width: 385px; width: 385px; min-height: 136px; height: 136px; }
.fs_benefits__card:nth-child(6) .fs_benefits__card_title { max-width: 385px; min-height: 48px; word-break: break-word; }
.fs_benefits__card:nth-child(6) .fs_benefits__card_text { max-width: 385px; min-height: 44px; }
.fs_benefits__card:nth-child(7) .fs_benefits__card_body { max-width: 374px; }
.fs_benefits__card:nth-child(7) .fs_benefits__card_title { max-width: 346px; }

.fs_benefits__btn {
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc((100% - 20px * 3) / 4);
    min-height: 58px;
    height: 58px;
    padding: 20px 35px;
    white-space: nowrap;
}

/* --- Программный комитет --- */

.fs_committee {
    padding: 80px 0;
}

.fs_committee__wrap {
    position: relative;
}

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

.fs_committee__label {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-gray);
}

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

.fs_committee__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-white);
}

.fs_committee__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-white);
    max-width: 594px;
    min-height: 66px;
}

.fs_committee__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 445px));
    justify-content: space-between;
    gap: var(--page-gutter);
}

.fs_committee__cards.speakers_page__grid {
    gap: var(--page-gutter);
}

.fs_committee__cards .speaker_card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 10px 10px 20px;
    background: var(--color-white);
    color: #161616;
    border-radius: var(--radius-lg);
}

.fs_committee__cards .speaker_card__photo {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: var(--color-gray);
    overflow: hidden;
}

.fs_committee__cards .speaker_card__photo::before {
    display: block;
    content: "";
    padding: 0 0 100%;
}

.fs_committee__cards .speaker_card__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fs_committee__cards .speaker_card__body {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-shrink: 0;
    height: 163px;
}

.fs_committee__cards .speaker_card__info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 105px;
    word-break: break-word;
}

.fs_committee__cards .speaker_card__name {
    min-height: 24px;
}

.fs_committee__cards .speaker_card__role {
    min-height: 66px;
}

.fs_committee__cards .speaker_card__link {
    min-height: 18px;
    align-self: flex-start;
}

/* --- Призыв CTA --- */

.fs_cta {
    padding: 80px 0;
}

.fs_cta__panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    min-height: 627px;
    border-radius: 0;
    overflow: hidden;
}

.fs_cta__left {
    position: relative;
    height: 627px;
    min-height: 627px;
    overflow: hidden;
    background: var(--color-black);
}

.fs_cta__photo {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 24%;
}

.fs_cta__right {
    position: relative;
    height: 627px;
    min-height: 627px;
    background: var(--color-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fs_cta__deco {
    position: absolute;
    display: block;
    pointer-events: none;
}

.fs_cta__deco_tl {
    top: 0;
    left: 0;
    width: 125px;
    height: 105px;
}

.fs_cta__deco_tr {
    top: 75px;
    right: 91px;
    width: 98px;
    height: 74px;
}

.fs_cta__deco_bl {
    bottom: 68px;
    left: 62px;
    width: 99px;
    height: 75px;
}

.fs_cta__deco_br {
    right: 0;
    bottom: 0;
    width: 154px;
    height: 129px;
}

/* 992 pixel decos — hidden by default */
.fs_cta__deco_992_tl,
.fs_cta__deco_992_br,
.fs_cta__deco_992_bl,
.fs_cta__deco_992_tr {
    display: none;
}

.fs_cta__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    width: 602px;
    max-width: 100%;
}

.fs_cta__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.fs_cta__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.05;
    color: #161616;
    width: 602px;
    max-width: 100%;
}

.fs_cta__text {
    margin: 0;
    transform: translateX(-5px);
    font-family: var(--font-body);
    font-size: 22px;
    line-height: 1.2;
    color: #161616;
    width: 509px;
    max-width: 100%;
}

.fs_cta__btn {
    flex-shrink: 0;
    transform: translateX(-6px);
    width: 232px;
    min-height: 58px;
    height: 58px;
    padding: 20px 0;
    background: var(--color-white);
    color: #161616;
    border-color: transparent;
}

.fs_cta__btn:hover {
    background: #161616;
    color: var(--color-white);
}

.fs_cta__btn:active {
    background: #333;
    color: var(--color-white);
}

/* Installments page */

.installments_page {
    padding: 70px 0 90px;
}

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

.installments_page__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 90px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-white);
}

.installments_page__content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1136px;
}

.installments_page__block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.installments_page__heading {
    margin: 0;
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-white);
}

.installments_page__text {
    margin: 0;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-white);
}

.installments_page__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.installments_page__steps {
    margin: 0;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.installments_page__image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

/* Universal slick-dots */
.slick-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0 0;
    margin: 0;
    list-style: none;
}

.slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.slick-dots button {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-size: 0;
    transition: background 0.2s;
}

.slick-dots .slick-active button {
    background: var(--color-green);
}

/* Legal document iframe */
.legal_doc__wrap {
    padding: 0;
}

.legal_doc__iframe {
    display: block;
    width: 100%;
    min-height: 80vh;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: var(--color-dark-gray);
}
