@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'nk89';
    src: url('../fonts/nk89.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 1em;
    padding-right: 1em;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 0px;
    z-index: 1000;
    box-sizing: border-box;
    min-height: 90px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.burger-menu.active .burger-line:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-45deg);
}

/* .header .container::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 1em;
    right: 1em;
    height: 1px;
    background-color: #d0d0d0;
} */

.header-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-item {
    position: relative;
    padding-left: 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: #0066cc;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover {
    color: #0066cc;
    transform: translateX(3px);
}

.nav-item:hover::before {
    width: 8px;
    height: 8px;
    left: -1.5px;
    box-shadow: 0 0 8px rgba(0, 102, 204, 0.4);
}

.header-contact {
    display: flex;
    align-items: center;
}

.contact-phone {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    display: inline-block;
}

.contact-phone:hover {
    color: #0066cc;
    transform: scale(1.05);
}

/* Banner Section */
.banner {
    position: relative;
    padding: 120px 1em;
    isolation: isolate;
    overflow: visible;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url("../media/shadow.svg");
    transform: rotate(181deg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.banner .container {
    position: relative;
    z-index: 1;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
}


/* Hide mobile banner on desktop */
.banner-mobile {
    display: none;
}
.partners-content{
    display: flex;
    align-items: start;
    gap: 100px;
}
.banner-top {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 50px;
    width: 100%;
}

.banner-top-left {
    flex: 0 1 auto;
    max-width: 50%;
}

.banner-title {
    font-family: 'nk89', sans-serif;
    font-size: 40px;
    white-space: nowrap;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
    text-align: left;
}

.banner-organizers {
    margin-left: 30px;
    padding-left: 0;
}

.banner-organizers p {
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

.banner-top-right {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-shrink: 0;
}

.banner-date,
.banner-time {
    background: linear-gradient(to right, #0242B9 0%, #0A2C6C 100%);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(10, 44, 108, 0.3);
}

.banner-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    width: 100%;
}

.fam-text {
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 460px;
    filter: drop-shadow(0 4px 12px rgba(10, 44, 108, 0.2));
}

.banner-bottom {
    display: flex;
    justify-content: end;
    gap: 200px;
    align-items: center;
    width: 100%;
}

.banner-bottom-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 1 auto;
    max-width: 60%;
}

.banner-people {
    width: 80px;
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(10, 44, 108, 0.15));
}

.banner-tagline {
    font-size: 17px;
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

.banner-bottom-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.banner-button {
    background: transparent;
    margin-right: 85px;
    border: none;
    border-color: #0242B9;
    border-radius: 20px;
    color: #0A2C6C;
    padding: 16px 45px;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(10, 44, 108, 0.2);
    overflow: visible;
}

.banner-button:hover {
    color: #0242B9;
    box-shadow: 0 4px 12px rgba(10, 44, 108, 0.25);
}


.button-border-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
}

/* Универсальный класс для кнопок с анимированным бордером */
.animated-border {
    position: relative;
    overflow: visible;
}


.banner-button > *:not(.button-border-svg) {
    position: relative;
    z-index: 2;
}

/* About Forum Section */
.about-forum {
    padding: 80px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
}

.about-forum::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 5%,
        rgba(255, 255, 255, 0.3) 10%,
        rgba(255, 255, 255, 0) 15%,
        rgba(255, 255, 255, 0) 85%,
        rgba(255, 255, 255, 0) 90%,
        rgba(255, 255, 255, 0.3) 95%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 0;
    pointer-events: none;
}

.about-forum::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    opacity: 0.95;
    mix-blend-mode: multiply;
}

.about-forum-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-forum-title {
    font-size: 48px;
    font-weight: 700;
    color: #0A2C6C;
    margin-bottom: 30px;
    line-height: 1.2;
    grid-column: 1;
    grid-row: 1;
}

.about-forum-text {
    grid-column: 1;
    grid-row: 2;
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.about-forum-graphic {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-forum-quote {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.4;
}

.about-forum-description {
    margin-bottom: 40px;
}

.about-forum-description p {
    font-size: 17px;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-forum-description p:last-child {
    margin-bottom: 0;
}

.about-forum-button {
    background: linear-gradient(to right, #0242B9 0%, #0A2C6C 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 20px;
    padding: 16px 45px;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(10, 44, 108, 0.3);
}

.about-forum-button:hover {
    opacity: 0.9;
    box-shadow: 0 4px 16px rgba(10, 44, 108, 0.35);
}


/* Who Forum Section */
.who-forum {
    padding: 80px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
}

.who-forum::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-image: url("../media/shadow.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    opacity: 0.95;
    mix-blend-mode: multiply;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 2%, rgba(0,0,0,0.5) 8%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.5) 92%, rgba(0,0,0,0.1) 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 2%, rgba(0,0,0,0.5) 8%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.5) 92%, rgba(0,0,0,0.1) 98%, transparent 100%);
}

.who-forum-title {
    font-size: 48px;
    font-weight: 700;
    color: #0A2C6C;
    margin-bottom: 60px;
    line-height: 1.2;
    text-align: left;
    position: relative;
    z-index: 1;
}

.who-forum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.who-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.who-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(10, 44, 108, 0.3);
    background: linear-gradient(to right, #0242B9 0%, #0A2C6C 100%);
    color: #fff;
}

.who-card:hover .who-card-title {
    color: #fff;
}

.who-card:hover .who-card-list li {
    color: #fff;
}

.who-card:hover .who-card-list li::before {
    color: #fff;
}

.who-card:hover .who-card-icon {
    transform: scale(1.1);
}

.who-card:hover .who-card-icon img {
    filter: brightness(0) invert(1);
}

.who-card-dark {
    background-color: #fff;
    color: #1a1a1a;
}

.who-card-dark .who-card-icon img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(85%) saturate(2500%) hue-rotate(205deg) brightness(95%) contrast(100%);
}

.who-card-dark:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(10, 44, 108, 0.3);
    background: linear-gradient(to right, #0242B9 0%, #0A2C6C 100%);
    color: #fff;
}

.who-card-dark:hover .who-card-icon {
    transform: scale(1.1);
}

.who-card-dark:hover .who-card-icon img {
    filter: brightness(0) invert(1);
}

.who-card-icon {
    margin-bottom: 25px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.who-card-icon img {
    width: auto;
    height: auto;
    max-width: 60px;
    max-height: 60px;
}

.who-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #0A2C6C;
    margin-bottom: 20px;
    line-height: 1.3;
}

.who-card-dark .who-card-title {
    color: #0A2C6C;
}

.who-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.who-card-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    position: relative;
    padding-left: 25px;
}

.who-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0A2C6C;
    font-size: 20px;
    font-weight: bold;
}

.who-card-dark .who-card-list li {
    color: #1a1a1a;
}

.who-card-dark .who-card-list li::before {
    color: #0A2C6C;
}

.who-card-dark:hover .who-card-title {
    color: #fff;
}

.who-card-dark:hover .who-card-list li {
    color: #fff;
}

.who-card-dark:hover .who-card-list li::before {
    color: #fff;
}

/* Come Forum Section */
.come-forum {
    padding: 80px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
}

.come-forum::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-image: url("../media/shadow.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    opacity: 0.95;
    mix-blend-mode: multiply;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 2%, rgba(0,0,0,0.5) 8%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.5) 92%, rgba(0,0,0,0.1) 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 2%, rgba(0,0,0,0.5) 8%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.5) 92%, rgba(0,0,0,0.1) 98%, transparent 100%);
}

.come-forum-title {
    font-size: 48px;
    font-weight: 700;
    color: #0A2C6C;
    margin-bottom: 60px;
    line-height: 1.2;
    text-align: left;
    position: relative;
    z-index: 1;
}

.come-forum-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.come-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.come-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.come-card-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.come-card-icon img {
    width: auto;
    height: auto;
    max-width: 60px;
    max-height: 60px;
}

.come-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0A2C6C;
    margin-bottom: 15px;
    line-height: 1.3;
}

.come-card-description {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    margin: 0;
}

/* Program Banner Section */
.program-banner {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    margin: 0;
    box-sizing: border-box;
}

.program-banner .container {
    background: linear-gradient(to right, #E6F0FF 0%, #F5F9FF 100%);
    border-radius: 20px;
    position: relative;
    box-sizing: border-box;
    height: 374px;
    display: flex;
    align-items: center;
}

.program-banner .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-image: url("../media/shadow.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    opacity: 0.95;
    mix-blend-mode: multiply;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 2%, rgba(0,0,0,0.5) 8%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.5) 92%, rgba(0,0,0,0.1) 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 2%, rgba(0,0,0,0.5) 8%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.5) 92%, rgba(0,0,0,0.1) 98%, transparent 100%);
    border-radius: 40px;
}

.program-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.program-banner-text {
    flex: 0 1 auto;
    max-width: 50%;
    padding: 20px;
}

.program-banner-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
}

.program-banner-title-line1 {
    color: #1a1a1a;
}

.program-banner-title-line2 {
    display: block;
}

.program-banner-title-part1 {
    color: #1a1a1a;
}

.program-banner-title-part2 {
    color: #0242B9;
}

.program-banner-title-line3 {
    color: #0242B9;
}

.program-banner-button {
    background: transparent;
    border: none;
    border-radius: 20px;
    color: #1a1a1a;
    padding: 16px 45px;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(10, 44, 108, 0.2);
    border-color: #0A2C6C;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-banner-button:hover {
    color: #0242B9;
    box-shadow: 0 4px 12px rgba(10, 44, 108, 0.25);
}


.program-banner-button > *:not(.button-border-svg) {
    position: relative;
    z-index: 2;
}

.program-banner-graphic {
    flex: 0 0 50%;
    max-width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.program-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

/* Program Section */
.program {
    padding: 80px 0;
    position: relative;
    overflow: visible;
}

.program::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-image: url("../media/shadow.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
    opacity: 0.95;
    mix-blend-mode: multiply;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 2%, rgba(0,0,0,0.5) 8%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.5) 92%, rgba(0,0,0,0.1) 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 2%, rgba(0,0,0,0.5) 8%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.5) 92%, rgba(0,0,0,0.1) 98%, transparent 100%);
}

.program .container {
    position: static;
    z-index: 1;
}

.program-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    align-content: flex-start;
}

/* Placeholder для sticky элемента */
.program-left-placeholder {
    flex-shrink: 0;
    visibility: hidden;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

.program-left {
    flex: 0 0 400px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    height: max-content;
    opacity: 1;
    transition: opacity 0.4s ease-out;
}

.program-time-header {
    font-size: 16px;
    color: #999;
    margin-bottom: 20px;
    font-weight: 400;
}

.program-title {
    font-size: 64px;
    font-weight: 700;
    color: #0A2C6C;
    margin: 0 0 40px 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.program-button {
    background: linear-gradient(to right, #0A2C6C 0%, #337BFF 100%);
    border: none;
    border-radius: 20px;
    color: #fff;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: visible;
    margin-bottom: 60px;
    align-self: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(10, 44, 108, 0.3);
}

.program-button:hover {
    opacity: 0.9;
    box-shadow: 0 6px 20px rgba(10, 44, 108, 0.4);
}


.program-button > *:not(.button-border-svg) {
    position: relative;
    z-index: 2;
}

.program-graphic {
    flex: 1 1 auto;
    display: flex;
    align-items: flex-end;
    margin-top: auto;
}

.program-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.program-right {
    flex: 1 1 auto;
}

.program-item {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    padding: 25px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.program-item:last-child {
    margin-bottom: 0;
}

.program-item-panel {
    background: linear-gradient(to right, #0A2C6C 0%, #337BFF 100%);
    color: #fff;
}

.program-item-panel .program-time-slot,
.program-item-panel .program-session-title,
.program-item-panel .program-panel-title,
.program-item-panel .program-subsession-title,
.program-item-panel .program-speaker-name {
    color: #fff;
}

.program-item-panel .program-speaker-title {
    color: rgba(255, 255, 255, 0.8);
}

.program-time-slot {
    flex: 0 0 140px;
    font-size: 18px;
    font-weight: 600;
    color: #0A2C6C;
    line-height: 1.4;
}

.program-time-slot:empty {
    flex: 0 0 0;
    min-width: 0;
    width: 0;
    padding: 0;
    margin: 0;
}

.program-session {
    flex: 1 1 auto;
}

.program-session-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.program-panel-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.program-subsession {
    margin-bottom: 30px;
}

.program-subsession:last-child {
    margin-bottom: 0;
}

.program-subsession-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.program-speaker {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.program-speaker:last-child {
    margin-bottom: 0;
}

.program-speakers {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.program-speaker-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.program-item-panel .program-speaker-photo {
    border-color: rgba(255, 255, 255, 0.5);
}

.program-speakers .program-speaker {
    margin-bottom: 0;
    flex: 0 1 auto;
}

.program-speaker-info {
    flex: 1 1 auto;
}

.program-speaker-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.program-speaker-title {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Speakers Section */
.speakers {
    padding: 80px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
}

.speakers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-image: url("../media/shadow.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    opacity: 0.95;
    mix-blend-mode: multiply;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 2%, rgba(0,0,0,0.5) 8%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.5) 92%, rgba(0,0,0,0.1) 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 2%, rgba(0,0,0,0.5) 8%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.5) 92%, rgba(0,0,0,0.1) 98%, transparent 100%);
}

.speakers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.speakers-title {
    font-size: 48px;
    font-weight: 700;
    color: #0A2C6C;
    line-height: 1.2;
    margin: 0;
}

.speakers-nav {
    display: flex;
    gap: 15px;
}

.speakers-nav-btn {
    width: 120px;
    height: 50px;
    border-radius: 20px;
    border: 2px solid #0A2C6C;
    background-color: transparent;
    color: #0A2C6C;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.speakers-nav-btn:hover {
    background-color: #0A2C6C;
    color: #fff;
    transform: scale(1.1);
}


.speakers-nav-btn svg {
    width: 24px;
    height: 24px;
}

.speakers-slider {
    position: relative;
    overflow: hidden;
    z-index: 1;
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.speakers-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y pinch-zoom;
}

.speaker-card {
    flex: 0 0 calc(25% - 22.5px);
    min-width: 0;
    min-height: 400px;
    background: #0A2C6C;
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(10, 44, 108, 0.1);
    isolation: isolate;
}

.speaker-card:hover {
    box-shadow: 0 8px 25px rgba(10, 44, 108, 0.2);
    background: linear-gradient(180deg, #0A2C6C 0%, #337BFF 100%);
}

.speaker-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 20px;
    z-index: 0;
}

.speaker-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent 0%, rgba(2, 66, 185, 0.3) 20%, rgba(2, 66, 185, 0.6) 50%, rgba(2, 66, 185, 0.9) 80%, rgba(2, 66, 185, 0.95) 100%);
    z-index: 2;
    border-radius: 0 0 20px 20px;
    pointer-events: none;
}

.speaker-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(2, 66, 185, 0.4) 0%, rgba(2, 66, 185, 0.5) 40%, rgba(2, 66, 185, 0.7) 70%, rgba(2, 66, 185, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    border-radius: 20px;
    pointer-events: none;
}

.speaker-card:hover .speaker-image::after {
    opacity: 1;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
    opacity: 1;
}

.speaker-card:hover .speaker-image img {
    opacity: 0;
}

.speaker-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 3;
    transition: opacity 0.3s ease;
}

.speaker-card:hover .speaker-info {
    opacity: 0;
}

.speaker-name {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.speaker-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.speaker-description {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    overflow: hidden;
    background: transparent;
}

.speaker-card:hover .speaker-description {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(180deg, rgba(10, 44, 108, 0.95) 0%, rgba(51, 123, 255, 0.95) 100%);
}

.speaker-description p {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 10px;
}

.speaker-description p:last-child {
    margin-bottom: 0;
}

.about-forum-graphic {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-forum-image {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-height: 600px;
    object-fit: contain;
}

/* Responsive Styles - Sticky управляется через JavaScript */

@media (max-width: 1200px) {
    .program-content {
        
        flex-direction: column;
        gap: 40px;
    }
    .program-image {
        display: none;
    }
    .program-left {
        flex: 1 1 auto;
        width: 100%;
        position: static !important;
        height: auto;
    }
    
    .program-graphic {
        order: 1;
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 30px;
    }
    
    .program-title {
        order: 2;
    }
    
    .program-button {
        order: 3;
    }
    
    .program-right {
        order: 4;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .program-banner {
        padding: 30px 0;
    }
    
    .program-banner-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .program-banner-content {
        gap: 30px;
    }
    
    .program-banner-image {
        width: 100%;
        height: auto;
    }
    
    .program {
        padding: 60px 0;
    }
    
    .program-content {
        gap: 40px;
    }
    
    .program-graphic {
        max-width: 250px;
    }
    
    .program-title {
        font-size: 36px;
    }
    
    .program-item {
        gap: 30px;
    }
    
    .program-time-slot {
        flex: 0 0 120px;
    }
    
    .header-nav {
        gap: 25px;
    }
    
    .nav-item {
        font-size: 14px;
        padding-left: 18px;
    }
    
    .contact-phone {
        font-size: 14px;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .banner-organizers p {
        font-size: 14px;
    }
    
    .banner-date,
    .banner-time {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .fam-text {
        max-height: 280px;
    }
    
    .banner-tagline {
        font-size: 16px;
    }
    
    .banner-button {
        padding: 14px 35px;
        font-size: 16px;
    }
    
    .about-forum {
        padding: 60px 0;
    }
    
    .about-forum-content {
        gap: 40px;
    }
    
    .about-forum-title {
        font-size: 36px;
    }
    
    .about-forum-quote {
        font-size: 20px;
    }
    
    .about-forum-description p {
        font-size: 16px;
    }
    
    .who-forum {
        padding: 60px 0;
    }
    
    .who-forum-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .who-forum-grid {
        gap: 25px;
    }
    
    .who-card {
        padding: 30px;
    }
    
    .who-card-title {
        font-size: 20px;
    }
    
    .who-card-list li {
        font-size: 15px;
    }
    
    .come-forum {
        padding: 60px 0;
    }
    
    .come-forum-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .come-forum-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .come-card {
        padding: 25px;
    }
    
    .come-card-title {
        font-size: 18px;
    }
    
    .come-card-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    html {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    body {
        overflow-x: hidden;
        overflow-y: auto;
        max-width: 100vw;
        width: 100%;
    }
    
    .container {
        max-width: 100%;
        width: 100%;
    }
    
    .header {
        padding: 20px 0;
        min-height: 70px;
    }
    
    .header .container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .header .container::after {
        bottom: -20px;
    }
    
    .burger-menu {
        display: flex;
        order: 1;
    }
    
    .header-nav {
        display: none;
        flex-direction: column;
        width: calc(100% - 2em);
        gap: 0;
        padding: 20px;
        order: 3;
        background-color: #fff;
        position: absolute;
        top: calc(100% + 15px);
        left: 1em;
        right: 1em;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        border-radius: 12px;
    }
    
    .header-nav.active {
        display: flex;
    }
    
    .nav-item {
        font-size: 16px;
        padding: 12px 0 12px 20px;
        width: 100%;
        color: #333;
        font-weight: 500;
        position: relative;
    }
    
    .nav-item::before {
        width: 6px;
        height: 6px;
        left: 0;
    }
    
    .header-contact {
        order: 2;
        margin-left: auto;
    }
    
    .contact-phone {
        font-size: 14px;
    }
    
    /* Hide desktop banner on mobile */
    .banner-desktop {
        display: none;
    }
    
    /* Show mobile banner */
    .banner-mobile {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 40px 0;
        min-height: auto;
        margin: 0;
        border-radius: 0;
        position: relative;
        background-image: none;
        overflow: visible;
    }
    
    .banner-mobile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-image: url("../media/shadow.svg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 0;
        pointer-events: none;
    }
    
    .banner-mobile .container {
        padding-left: 1em;
        padding-right: 1em;
        position: relative;
        z-index: 1;
    }
    
    /* Mobile Banner Styles */
    .banner-mobile-top {
        margin-bottom: 30px;
    }
    
    .banner-mobile-title {
        font-size: 24px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 15px;
        line-height: 1.3;
        text-align: left;
        white-space: nowrap;
    }
    
    .banner-mobile-organizers {
        margin-left: 20px;
    }
    
    .banner-mobile-organizers p {
        white-space: nowrap;
        font-size: 20px;
        color: #1a1a1a;
        margin-bottom: 5px;
        font-weight: 400;
        line-height: 1.5;
        text-align: left;
    }
    
    .banner-mobile-datetime {
        display: flex;
        justify-content: space-evenly;
        gap: 12px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }
    
    .banner-mobile-date,
    .banner-mobile-time {
        background: linear-gradient(to right, #0242B9 0%, #0A2C6C 100%);
        color: #FFFFFF;
        padding: 12px 24px;
        border-radius: 20px;
        font-size: 15px;
        font-weight: 500;
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(10, 44, 108, 0.3);
    }
    
    .banner-mobile-main {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 200px;
    }
    
    .banner-mobile-fam {
        max-width: 100%;
        height: auto;
        width: auto;
        max-height: 250px;
        filter: drop-shadow(0 4px 12px rgba(10, 44, 108, 0.2));
    }
    
    .banner-mobile-bottom {
        margin-top: 30px;
    }
    
    .banner-mobile-tagline {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .banner-mobile-people {
        width: 60px;
        height: auto;
        flex-shrink: 0;
        filter: drop-shadow(0 2px 6px rgba(10, 44, 108, 0.15));
    }
    
    .banner-mobile-tagline p {
        font-size: 17px;
        color: #1a1a1a;
        font-weight: 400;
        line-height: 1.6;
        text-align: left;
        margin: 0;
        flex: 1;
    }
    
    .banner-mobile-button-wrapper {
        display: flex;
        justify-content: flex-end;
        width: 100%;
    }
    
    .banner-mobile-button {
        background: transparent;
        border: none;
        border-radius: 20px;
        color: #0A2C6C;
        padding: 16px 45px;
        width: 100%;
        font-size: 17px;
        font-weight: 500;
        font-family: 'Mulish', sans-serif;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        box-shadow: 0 2px 8px rgba(10, 44, 108, 0.2);
        overflow: visible;
    }
    
    .banner-mobile-button:hover {
        color: #0242B9;
        box-shadow: 0 4px 12px rgba(10, 44, 108, 0.25);
    }
    
    
    .about-forum {
        padding: 40px 0;
    }
    
 
    
    .about-forum-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .about-forum-title {
        font-size: 28px;
        margin-bottom: 20px;
        order: 1;
    }
    
    .about-forum-graphic {
        order: 2;
    }
    
    .about-forum-text {
        max-width: 100%;
        order: 3;
    }
    
    .about-forum-quote {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .about-forum-description {
        margin-bottom: 30px;
    }
    
    .about-forum-description p {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .about-forum-button {
        width: 100%;
        padding: 14px 35px;
        font-size: 16px;
    }
    
    
    .about-forum-image {
        max-height: 300px;
    }
    
    .who-forum {
        padding: 40px 0;
    }
    
    .who-forum-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .who-forum::before {
        background-image: url("../media/shadow-mob.svg");
    }
    
    .come-forum::before {
        background-image: url("../media/shadow-mob.svg");
    }
    
    .speakers::before {
        background-image: url("../media/shadow-mob.svg");
    }
    
    .who-forum-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .speakers {
        padding: 40px 0;
        overflow: hidden;
    }
    
    .speakers-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .speakers-title {
        font-size: 28px;
    }
    
    .speakers-nav {
        align-self: flex-end;
    }
    
    .speakers-slider {
        padding: 0;
        margin: 0;
        overflow: hidden;
    }
    
    .speakers-track {
        padding: 0;
        gap: 0;
    }
    
    .speaker-card {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .speaker-image {
        height: 100%;
        position: absolute;
    }
    
    .speaker-info {
        padding: 20px;
    }
    
    .speaker-description {
        padding: 20px;
    }
    
    .speaker-name {
        font-size: 18px;
    }
    
    .speaker-title {
        font-size: 14px;
    }
    
    .speaker-description p {
        font-size: 13px;
    }
    
    .come-forum {
        padding: 40px 0;
    }
    
    .come-forum-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .come-forum-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .come-card {
        padding: 25px;
    }
    
    .come-card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .come-card-description {
        font-size: 14px;
    }
    
    .who-card {
        padding: 25px;
    }
    
    .who-card-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .who-card-list {
        gap: 12px;
    }
    
    .who-card-list li {
        font-size: 14px;
    }
    
    /* Organizers Section Mobile */
    .organizers-section {
        margin-bottom: 60px;
    }
    
    .organizers-partners .container {
        padding-left: 1em !important;
        padding-right: 1em !important;
    }
   
    .organizers-background {
        top: 0;
        min-height: auto;
        padding: 40px 1em;
        width: 100%;
        box-sizing: border-box;
    }
    
    .organizers-bg-graphic {
        display: none;
    }
    
    .program-image {
        display: none;
    }
    
    .a2k-logo-img,
    .legalconf-logo-img {
        width: 91px !important;
        height: 89px !important;
    }
    
    .organizer-card-legalconf .legalconf-logo-img {
        width: 91px !important;
        height: 89px !important;
    }
    
    /* Ticket Banner Mobile */
    .ticket-banner {
        padding: 40px 0;
    }
    
    .ticket-banner-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .ticket-banner-left {
        flex: 1 1 auto;
        width: 100%;
        padding: 40px 30px;
        align-items: center;
        text-align: center;
        order: 2;
    }
    
    .ticket-banner-left::after {
        display: none;
    }
    
    .ticket-banner-title {
        font-size: 20px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .ticket-price {
        font-size: 48px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .ticket-pay-button {
        align-self: center;
        width: 100%;
        max-width: 300px;
        margin-bottom: 15px;
    }
    
    .ticket-price-note {
        text-align: center;
    }
    
    .ticket-banner-right {
        flex: 1 1 auto;
        width: 100%;
        padding: 30px;
        align-items: center;
        order: 1;
    }
    
    .ticket-features {
        flex-direction: column;
        gap: 20px !important;
        width: 100%;
    }
    
    .ticket-features-column {
        width: 100%;
    }
    
    .ticket-feature-item {
        justify-content: flex-start;
    }
    
    .ticket-banner-right::before {
        background-size: cover;
        opacity: 0.15;
    }
    
    .ticket-banner-content {
        position: relative;
    }
    
    .ticket-banner-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("../media/banner/people.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.15;
        z-index: 0;
        filter: brightness(0) invert(1);
        pointer-events: none;
    }
    
    .ticket-banner-left,
    .ticket-banner-right {
        align-items: start;
        position: relative;
        z-index: 1;
    }
    
    /* Location Section Mobile */
    .location-section {
        padding: 40px 0;
        overflow-x: hidden;
        width: 100%;
    }
    
    .location-content {
        flex-direction: column;
        gap: 40px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .location-left {
        width: 100%;
        max-width: 100%;
    }
    
    .location-image-form-wrapper {
        flex-direction: column;
        gap: 40px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .location-image {
        width: 100%;
        flex: 1 1 auto;
        margin: 0;
    }
    
    .location-title{
        font-size: 36px;
    }
    
    .location-right {
        width: 100%;
        flex: 1 1 auto;
        margin: 0;
        padding: 0;
    }
    
    .registration-form {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        overflow: visible;
        box-shadow: none !important;
        border: 1px solid #E0E0E0;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .form-row .form-input {
        flex: 1 1 auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-field {
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-input {
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    /* Partners Carousel Mobile */
    .partners-section {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    .partners-content {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    .partners-carousel-wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    .partners-carousel {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    .partners-logos {
        gap: 30px;
        max-width: none;
        width: max-content;
        display: flex;
        flex-wrap: nowrap;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        will-change: transform;
    }
    
    .partners-logos:hover {
        animation-play-state: paused !important;
    }
    
    .partner-logo {
        min-width: 70px;
        max-width: 70px;
    }
    
    .partner-logo-img {
        width: 70px;
        height: 65px;
        max-width: 100%;
    }
}
.top-banner-content {
    background: linear-gradient(to right, #0A2C6C 0%, #337BFF 100%);
    border-radius: 20px;
    padding: 0px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    box-shadow: 0 4px 20px rgba(10, 44, 108, 0.3);
    position: relative;
    overflow: hidden;
}
@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .organizers-title,
.partners-title {
    font-size: 34px !important;
}
    
    /* Partners Carousel Small Mobile */
    .partners-section {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    .partners-content {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    .partners-carousel-wrapper {
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    .partners-carousel {
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    .partners-logos {
        gap: 25px;
        animation: scroll-partners-small-mobile 20s linear infinite !important;
        animation-play-state: running !important;
        max-width: none;
        width: max-content;
        display: flex;
        flex-wrap: nowrap;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        will-change: transform;
    }
    
    .partners-logos:hover {
        animation-play-state: paused !important;
    }
    
    .partner-logo {
        min-width: 60px;
        max-width: 60px;
    }
    
    .partner-logo-img {
        width: 60px;
        height: 56px;
        max-width: 100%;
    }
    
    /* Location Section Small Mobile */
    .location-section {
        overflow-x: hidden;
        width: 100%;
    }
    
    .location-content {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .location-image-form-wrapper {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .location-right {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .registration-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 25px 15px;
        box-shadow: none !important;
        border: 1px solid #E0E0E0;
        margin: 0;
    }
    
    .form-input {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 12px 15px;
    }
    
    .form-input:focus {
        box-shadow: 0 0 0 2px rgba(51, 123, 255, 0.1);
    }
    
    .form-submit-button {
        width: 100%;
        box-sizing: border-box;
        padding: 16px 25px;
        box-shadow: 0 2px 6px rgba(10, 44, 108, 0.15);
    }
    
    .form-checkbox {
        font-size: 11px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .registration-title {
        font-size: 24px;
    }
    
    .header-nav {
        gap: 12px;
    }
    
    .nav-item {
        font-size: 13px;
        padding-left: 14px;
    }
    
    .banner-mobile-title {
        font-size: 20px;
    }
    
    .banner-mobile-organizers p {
        font-weight: 400;
        font-size: 20px;
    }
    .banner-mobile-organizers{
        margin-bottom: 20px;
    }
    .banner-mobile-date,
    .banner-mobile-time {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .banner-mobile-fam {
        max-height: 180px;
    }
    
    .banner-mobile-tagline p {
        font-size: 15px;
    }
    
    .banner-mobile-button {
        padding: 14px 35px;
        font-size: 16px;
    }
    
    .about-forum-title {
        font-size: 24px;
    }
    
    .about-forum-quote {
        font-size: 16px;
    }
    
    .about-forum-description p {
        font-size: 14px;
    }
    
    .about-forum-button {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .about-forum-image {
        max-height: 250px;
    }
    
    .who-forum-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .who-card {
        padding: 20px;
    }
    
    .who-card-icon {
        margin-bottom: 20px;
    }
    
    .who-card-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .who-card-list li {
        font-size: 13px;
        padding-left: 20px;
    }
    
    .come-forum-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .come-card {
        padding: 20px;
    }
    
    .come-card-icon {
        margin-bottom: 15px;
    }
    
    .come-card-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .come-card-description {
        font-size: 13px;
    }
    
    .speakers-title {
        font-size: 24px;
    }
    
    .speakers-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .speakers-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .speakers-slider {
        padding: 0;
        margin: 0;
        overflow: hidden;
    }
    
    .speakers-track {
        padding: 0;
        gap: 0;
    }
    
    .speaker-card {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .speaker-image {
        height: 100%;
        position: absolute;
    }
    
    .speaker-info {
        padding: 20px;
    }
    
    .speaker-description {
        padding: 20px;
    }
    
    .speaker-name {
        font-size: 20px;
    }
    
    .speaker-title {
        font-size: 14px;
    }
    
    .speaker-description {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .speaker-description p {
        font-size: 13px;
    }
    
    .program-banner {
        padding: 20px 0;
        margin: 0;
        border-radius: 0;
    }
    
    .program-banner .container {
        height: auto;
        min-height: 500px;
        padding: 30px 1em;
        overflow: hidden;
        border-radius: 0 0 40px 40px;
    }
    
    .program-banner::before {
        border-radius: 0;
        background-image: url("../media/shadow-mob.svg");
    }
    
  
    .program-banner-text {
        max-width: 100%;
        order: 1;
    }
    
    .program-banner-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .program-banner-button {
        width: 100%;
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .program-banner-graphic {
        max-width: 100%;
        order: 2;
        height: 300px;
        margin-top: auto;
        align-self: flex-end;
        overflow: hidden;
        border-radius: 0 0 40px 40px;

        margin-bottom: 0;
        width: calc(100% + 2em);
    }
    
    .program-banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
        border-radius: 0 0 40px 40px;
        display: block;
    }
    
    .program {
        padding: 40px 0;
    }
    
    .program::before {
        background-image: url("../media/shadow-mob.svg");
    }
    
    .program-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .program-left {
        position: static;
        height: auto;
    }
    
    .program-graphic {
        max-width: 100%;
        position: static;
        order: 1;
    }
    
    .program-schedule {
        order: 2;
    }
    
    .program-title {
        font-size: 28px;
    }
    
    .program-time {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .program-item {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .program-time-slot {
        flex: 0 0 auto;
        font-size: 16px;
    }
    
    .program-session-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .program-panel-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .program-subsession-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .program-speaker-photo {
        width: 50px;
        height: 50px;
    }
    
    .program-speakers {
        gap: 30px;
        flex-wrap: nowrap;
        align-items: flex-start;
    }
    
    .program-speakers .program-speaker {
        flex: 0 1 auto;
        min-width: 0;
    }
    
    .program-speaker-name {
        font-size: 15px;
    }
    
    .program-speaker-title {
        font-size: 13px;
    }
    
    .top-banner {
        padding: 40px 0;
    }
    
    .top-banner::before {
        background-image: url("../media/shadow-mob.svg");
    }
    
    .top-banner-content {
        flex-direction: column;
        padding: 40px 30px ;
        gap: 30px;
    }
    
    .top-banner-left {
        flex: 1 1 auto;
        width: 100%;
    }
    
    .top-banner-title-line1 {
        font-size: 32px;
    }
    
    .top-banner-title-line2,
    .top-banner-title-line3 {
        display: none;
    }
    
    .top-banner-title-line2-mobile,
    .top-banner-title-line3-mobile,
    .top-banner-title-line4-mobile,
    .top-banner-title-line5-mobile {
        font-size: 24px;
        font-weight: 400;
        color: #fff;
        display: block;
    }
    
    .top-banner-button {
        background: transparent;
        border: none;
        color: #fff;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
    }
    
    .top-banner-button:hover {
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    }
    
    .top-banner-right {
        flex: 1 1 auto;
        width: 100%;
    }
    
    .top-banner-graphic {
        width: 80%;
        max-width: 400px;
    }
    
    /* Organizers Section Small Mobile */
    .organizer-card {
        padding: 30px 20px;
    }
    
    .organizer-card:first-child .organizer-name,
    .organizer-card-legalconf .organizer-community-text {
        bottom: 15px;
        right: 15px;
    }
    
    /* Program Speakers - очень маленькие экраны - в колонку */
    .program-speakers {
        flex-direction: column;
        gap: 20px;
    }
    
    .program-speakers .program-speaker {
        flex: 0 1 auto;
        min-width: auto;
        width: 100%;
    }
}

/* Top Banner Section */
.top-banner {
    padding: 80px 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-image: url("../media/shadow.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    opacity: 0.95;
    mix-blend-mode: multiply;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 2%, rgba(0,0,0,0.5) 8%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.5) 92%, rgba(0,0,0,0.1) 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 2%, rgba(0,0,0,0.5) 8%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.5) 92%, rgba(0,0,0,0.1) 98%, transparent 100%);
}

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



.top-banner-left {
    flex: 0 1 66.666%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.top-banner-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    line-height: 1.2;
}

.top-banner-title-line1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.top-banner-title-line2,
.top-banner-title-line3 {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    display: block;
}

.top-banner-title-line2-mobile,
.top-banner-title-line3-mobile,
.top-banner-title-line4-mobile,
.top-banner-title-line5-mobile {
    display: none;
}

.top-banner-button {
    background: transparent;
    border: none;
    border-radius: 20px;
    color: #fff;
    padding: 16px 45px;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.top-banner-button:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}


.top-banner-right {
    flex: 0 1 33.333%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.top-banner-graphic-white {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.top-banner-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    opacity: 0.3;
    filter: brightness(0) invert(1);
    z-index: 0;
    pointer-events: none;
}

/* Organizers & Partners Section */
.organizers-partners {
    padding: 80px 0 0 0;
    position: relative;
    overflow: visible;
    background-color: #fff;
}

.organizers-section {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 0;
}

.organizers-title,
.partners-title {
    font-size: 48px;
    font-weight: 700;
    color: #0A2C6C;
    margin-bottom: 50px;
    line-height: 1.2;
    position: relative;
    z-index: 100;
}

.organizers-background {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    top: -135px;
    justify-content: center;
    overflow: visible;
    margin-bottom: 0;
}

.organizers-bg-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    height: auto;
    min-height: 550px;
    object-fit: contain;
    object-position: center center;
    z-index: 1;
    pointer-events: none;
}

.organizers-cards {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    z-index: 10;
    margin-top: 50px;
    margin-bottom: 0;
}

.organizer-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.4);
    height: 262px;
    width: 645px;
}

.organizer-card::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 24px;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 14L14 6M14 6H6M14 6V14' stroke='%230A2C6C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    z-index: 3;
    opacity: 0.8;
}

.organizer-card:first-child {
    width: 645px;
    height: 262px;
    z-index: 11;
    position: absolute;
    top: calc(70% + 30px);
    left: 23%;
    transform: translate(-50%, -50%);
}

.organizer-card:nth-child(2) {
    width: 645px;
    height: 262px;
    z-index: 12;
    position: absolute;
    top: 40%;
    left: 71%;
    transform: translate(-50%, -50%);
}

.organizer-card:first-child:hover {
    transform: translate(-50%, calc(-50% - 4px));
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.organizer-card:nth-child(2):hover {
    transform: translate(-50%, calc(-50% - 4px));
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.organizer-card-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.organizer-card:first-child .organizer-card-content {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.organizer-card-legalconf .organizer-card-content {
    flex-direction: row;
    align-items: center;
    gap: 25px;
    text-align: left;
    justify-content: flex-start;
    width: 100%;
}

.organizer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    margin-bottom: 5px;
}

.organizer-card:first-child .organizer-logo {
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin-bottom: 0;
}

.organizer-card-legalconf .organizer-logo {
    flex-direction: column;
    width: auto;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0;
}

.a2k-logo-img,
.legalconf-logo-img {
    width: 212px;
    height: 207px;
    object-fit: contain;
}

.a2k-logo-img {
    display: block;
}

.organizer-name {
    font-size: 20px;
    color: #0A2C6C;
    margin: 0;
    line-height: 1.4;
    font-weight: 700;
    text-align: center;
}

.organizer-card:first-child .organizer-name {
    position: absolute;
    bottom: 20px;
    right: 20px;
    text-align: right;
}

.organizer-community-text {
    font-size: 15px;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
}

.organizer-card-legalconf .legalconf-logo-img {
    width: 212px;
    height: 207px;
}

.organizer-legalconf-name {
    font-size: 18px;
    font-weight: 700;
    color: #0A2C6C;
    margin: 0;
    line-height: 1.2;
    text-align: left;
    text-transform: uppercase;
}

.organizer-legalconf-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 auto;
    justify-content: center;
    padding-top: 5px;
}

.organizer-card-legalconf .organizer-community-text {
    position: absolute;
    bottom: 20px;
    right: 20px;
    text-align: right;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    max-width: 200px;
}

.organizer-name-text {
    font-size: 14px;
    line-height: 1.6;
}

.organizer-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #0A2C6C;
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
    opacity: 0;
    pointer-events: none;
}

.organizer-link:hover {
    color: #0242B9;
    transform: translate(2px, -2px);
}

.organizer-link svg {
    width: 20px;
    height: 20px;
}

/* Organizers Cards Responsive - 1100px */
@media (max-width: 1100px) {
    .organizers-cards {
        min-height: auto;
        display: flex !important;
        flex-direction: column !important;
        gap: 30px;
        align-items: stretch !important;
        position: relative;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        max-height: none !important;
    }
    
    .organizer-card {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 200px;
        flex-shrink: 0;
        flex-basis: auto;
        box-sizing: border-box;
    }
    
    .organizer-card:first-child,
    .organizer-card:nth-child(2) {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 !important;
        z-index: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box;
    }
}

/* Ticket Banner Section */
.ticket-banner {
    padding: 80px 0;
    position: relative;
    background-color: #fff;
}

.ticket-banner-content {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 44, 108, 0.3);
    min-height: 400px;
    background: linear-gradient(to right, #0A2C6C 0%, #337BFF 100%);
}

.ticket-banner-left {
    flex: 0 0 40%;
    background: transparent;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.ticket-banner-left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.ticket-banner-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.ticket-price {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 40px 0;
    line-height: 1;
}

.ticket-pay-button {
    background: #fff;
    border: none;
    border-radius: 20px;
    color: #0A2C6C;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ticket-pay-button:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}


.ticket-price-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

.ticket-banner-right {
    flex: 1 1 auto;
    background: transparent;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.ticket-banner-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../media/banner/people.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
    filter: brightness(0) invert(1);
}

.ticket-features {
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 1;
}

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

.ticket-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.ticket-feature-item svg {
    flex-shrink: 0;
}

.ticket-banner-people {
    display: none;
}

.partners-section {
    position: relative;
    background-color: #fff;
}

.partners-carousel-wrapper {
    overflow: hidden;
    width: 70%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* На мобильных устройствах контейнер должен быть на всю ширину */
@media (max-width: 768px) {
    .partners-carousel-wrapper {
        width: 100%;
        max-width: 100%;
    }
}

.partners-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-logos {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    animation: scroll-partners 30s linear infinite;
}

/* Keyframes для анимации карусели партнеров */
@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

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




.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    flex-shrink: 0;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 82px;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo-img {
    width: 82px;
    height: 76px;
    max-width: 100%;
    object-fit: contain;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.location-left {
    width: 100%;
    padding-top: 0;
}

.location-image-form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.location-title {
    font-size: 48px;
    font-weight: 700;
    color: #0A2C6C;
    margin-bottom: 30px;
    margin-top: 0;
    line-height: 1.2;
}

.location-info {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.location-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.location-text {
    flex: 1 1 auto;
}

.location-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #0A2C6C;
    margin: 0 0 5px 0;
}

.location-image {
    flex: 1 1 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 44, 108, 0.15);
}

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

.location-right {
    flex: 1 1 50%;
    padding-top: 0;
}

.registration-form {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(10, 44, 108, 0.15);
}

.registration-title {
    font-size: 30px;
    font-weight: 700;
    color: #0A2C6C;
    margin-bottom: 30px;
    line-height: 1.2;
    margin-top: 0;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}

.form-field {
    margin-bottom: 20px;
    width: 100%;
}

.form-field:last-of-type {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #0A2C6C;
    margin-bottom: 8px;
    line-height: 1.4;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Mulish', sans-serif;
    color: #0A2C6C;
    background-color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    margin-bottom: 0;
}

.form-input:focus {
    outline: none;
    border-color: #337BFF;
    box-shadow: 0 0 0 3px rgba(51, 123, 255, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.form-row .form-field {
    flex: 1 1 50%;
}

.form-submit-button {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(to right, #0A2C6C 0%, #337BFF 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(10, 44, 108, 0.2);
}

.form-submit-button:hover {
    box-shadow: 0 4px 12px rgba(10, 44, 108, 0.3);
    transform: translateY(-2px);
}


.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    line-height: 1.5;
    color: #666;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0A2C6C;
}

.form-checkbox span {
    flex: 1 1 auto;
}

/* Footer Styles */
.footer {
    padding: 60px 0 40px;
    margin-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.footer-logo {
    width: auto;
    height: auto;
    max-width: 200px;
    display: block;
}

.footer-subtitle {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #0A2C6C;
    margin: 0;
    line-height: 1.4;
}

.footer-nav {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.footer-nav-link {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    transition: color 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.footer-nav-link:hover {
    color: #0A2C6C;
}

.footer-contact-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    flex-shrink: 0;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: start;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
}

.footer-contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: block;
}

.footer-contact-text {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-contact-text:hover {
    color: #0A2C6C;
}

.footer-button {
    padding: 14px 30px;
    background: linear-gradient(to right, #0A2C6C 0%, #337BFF 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(10, 44, 108, 0.2);
    white-space: nowrap;
}

.footer-button:hover {
    box-shadow: 0 4px 12px rgba(10, 44, 108, 0.3);
    transform: translateY(-2px);
}


.footer-separator {
    width: 100%;
    height: 1px;
    background-color: #D0D0D0;
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px;
    flex: 1;
}

.footer-legal-link {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.footer-legal-link:hover {
    color: #666;
}

.footer-developer {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.footer-developer-text {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #999;
    white-space: nowrap;
}

.footer-developer-logo {
    display: flex;
    align-items: center;
}

.footer-developer-img {
    height: 28px;
    width: auto;
}

/* Footer Desktop/Mobile Visibility */
.footer-desktop {
    display: block;
}

.footer-mobile {
    display: none;
}

/* Footer Mobile Styles */
@media (max-width: 993px) {
    .footer-desktop {
        display: none;
    }
    .banner::before{
        transform: rotate(0deg);
    }
    .footer-mobile {
        display: block;
    }
}

/* Mobile Footer Styles */
.footer-mobile {
    padding: 40px 0 30px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.footer-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(100deg);
    width: 100%;
    height: 100%;
    background-image: url('../media/shadow-mob.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleY(-1);
    z-index: 0;
    pointer-events: none;
}

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

.footer-mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-mobile-logo-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.footer-mobile-logo {
    width: auto;
    height: auto;
    max-width: 150px;
    display: block;
}

.footer-mobile-subtitle {
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #0A2C6C;
    margin: 0;
    line-height: 1.4;
}

.footer-mobile-button {
    padding: 12px 24px;
    background: linear-gradient(to bottom, #0A2C6C 0%, #337BFF 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(10, 44, 108, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-mobile-button:hover {
    box-shadow: 0 4px 12px rgba(10, 44, 108, 0.3);
    transform: translateY(-2px);
}


.footer-mobile-middle {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-mobile-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.footer-mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-mobile-contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.footer-mobile-contact-text {
    font-family: 'Mulish', sans-serif;
    font-size: 30px;
    font-weight: 500;
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-mobile-contact-text:hover {
    color: #337BFF;
}

.footer-mobile-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex: 1;
    align-items: flex-end;
}

.footer-mobile-nav-link {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: right;
}

.footer-mobile-nav-link:hover {
    color: #337BFF;
}

.footer-mobile-separator {
    width: 100%;
    height: 1px;
    background-color: #D0D0D0;
    margin: 30px 0;
}

.footer-mobile-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-mobile-legal-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-mobile-legal-link {
    font-family: 'Mulish', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.footer-mobile-legal-link:hover {
    color: #666;
}

.footer-mobile-developer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.footer-mobile-developer-text {
    font-family: 'Mulish', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #999;
}

.footer-mobile-developer-logo {
    display: flex;
    align-items: center;
}

.footer-mobile-developer-img {
    height: 38px;
    width: auto;
    width: 140px;
}

@media (max-width: 700px) {
    .footer-mobile-top {
        align-items: center;
        gap: 20px;
    }
    
    .program-banner-content {
        flex-direction: column;
        gap: 30px;
        height: 100%;
        justify-content: space-between;
    }
    .program-banner {
        padding: 20px 0;
        margin: 0;
        border-radius: 0;
    }
    
    .program-banner .container {
        height: auto;
        min-height: 500px;
        padding: 30px 1em;
        overflow: hidden;
        border-radius: 0 0 40px 40px;
    }
    
    .program-banner::before {
        border-radius: 0;
        background-image: url("../media/shadow-mob.svg");
    }
    
  
    .program-banner-text {
        max-width: 100%;
        order: 1;
    }
    
    .program-banner-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .program-banner-button {
        width: 100%;
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .program-banner-graphic {
        max-width: 100%;
        order: 2;
        height: 300px;
        margin-top: auto;
        align-self: flex-end;
        overflow: hidden;
        border-radius: 0 0 40px 40px;

        margin-bottom: 0;
        width: calc(100% + 2em);
    }
    
    .program-banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
        border-radius: 0 0 40px 40px;
        display: block;
    }
    .top-banner {
        padding: 40px 0;
    }
    
    .top-banner::before {
        background-image: url("../media/shadow-mob.svg");
    }
    
    .top-banner-content {
        flex-direction: column;
        padding: 40px 30px ;
        gap: 30px;
    }
    
    .top-banner-left {
        flex: 1 1 auto;
        width: 100%;
    }
    
    .top-banner-title-line1 {
        font-size: 32px;
    }
    
    .top-banner-title-line2,
    .top-banner-title-line3 {
        display: none;
    }
    
    .top-banner-title-line2-mobile,
    .top-banner-title-line3-mobile,
    .top-banner-title-line4-mobile,
    .top-banner-title-line5-mobile {
        font-size: 24px;
        font-weight: 400;
        color: #fff;
        display: block;
    }
    
    .top-banner-button {
        background: transparent;
        border: none;
        color: #fff;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
    }
    
    .top-banner-button:hover {
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    }
    
    .top-banner-right {
        flex: 1 1 auto;
        width: 100%;
    }
    
    .top-banner-graphic {
        width: 80%;
        max-width: 400px;
    }
    
    
    .footer-mobile-middle {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-mobile-nav {
        align-items: flex-start;
    }
    
    .footer-mobile-nav-link {
        text-align: left;
    }
    
    .footer-mobile-developer {
   
        gap: 8px;
    }
    .program-speakers{
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .footer-mobile {
        padding: 30px 0 20px;
    }
    
    .footer-mobile-top {
        align-items: center;
        gap: 20px;
    }
  
    
    .footer-mobile-middle {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-mobile-nav {
        align-items: flex-start;
    }
    
    .footer-mobile-nav-link {
        font-size: 26px;
        text-align: left;
    }
    
    .footer-mobile-developer {
        align-items: center;
        justify-content: start;
        gap: 20px;
    }
}



.banner-button,
.banner-mobile-button {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-button:hover,
.banner-mobile-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 44, 108, 0.3);
}

/* Карточки "Для кого" */
.who-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.who-card-icon {
    transition: transform 0.3s ease;
}

.who-card:hover .who-card-icon {
    transform: scale(1.1);
}

/* Карточки "Приходите на форум" */
.come-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.come-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(10, 44, 108, 0.15);
}

.come-card-icon {
    transition: transform 0.3s ease;
}

.come-card:hover .come-card-icon {
    transform: scale(1.15);
}

/* Анимация для слайдера спикеров */
.speakers-track {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.speaker-card {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.speaker-card:nth-child(2) {
    animation-delay: 0.2s;
}

.speaker-card:nth-child(3) {
    animation-delay: 0.3s;
}

.speaker-card:nth-child(4) {
    animation-delay: 0.4s;
}


.speaker-image {
    transition: transform 0.3s ease;
    overflow: hidden;
}



/* Анимация для программы - отключена */
/* Hover-эффекты для program-item */
.program-item:hover {
    background-color: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.program-item.program-item-panel:hover {
    background: linear-gradient(to right, #0A2C6C 0%, #337BFF 100%);
    box-shadow: 0 4px 12px rgba(10, 44, 108, 0.3);
}

/* Анимация для кнопок */
.about-forum-button,
.program-button,
.ticket-pay-button,
.form-submit-button,
.footer-button,
.footer-mobile-button {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.about-forum-button:hover,
.program-button:hover,
.ticket-pay-button:hover,
.form-submit-button:hover,
.footer-button:hover,
.footer-mobile-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 44, 108, 0.3);
}

/* Анимация для форм */
.form-input {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.form-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 44, 108, 0.1);
    border-color: #0A2C6C;
}

/* Анимация для навигации */
.speakers-nav-btn {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.speakers-nav-btn:hover:not(:disabled) {
    transform: scale(1.1);
}


/* Анимация для организаторов */
.organizer-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.organizer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.organizer-link {
    transition: transform 0.3s ease;
}

.organizer-card:hover .organizer-link {
    transform: translateX(5px);
}

/* Партнеры */
.partner-logo {
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    transform: none;
}

/* Анимация для графических элементов */
.fam-text,
.banner-mobile-fam,
.about-forum-image,
.program-banner-image,
.top-banner-graphic,
.top-banner-graphic-white {
    animation: fadeIn 1s ease-out;
    transition: transform 0.3s ease;
}

/* Исключаем .program-image из анимаций, чтобы не мешать sticky-эффекту */
.program-image {
    animation: fadeIn 1s ease-out;
    transition: none;
    transform: none !important;
}

/* Легкая анимация плавания для изображений */
/* .banner-people,
.banner-mobile-people,
.ticket-banner-people {
} */


.program-banner-title-line1,
.program-banner-title-line2,
.program-banner-title-line3,
.top-banner-title-line1,
.top-banner-title-line2,
.top-banner-title-line3 {
    display: inline-block;
}

.program-banner-title-line3 {
    animation-delay: 0.4s;
}

.top-banner-title-line2 {
    animation-delay: 0.2s;
}

.top-banner-title-line3 {
    animation-delay: 0.4s;
}

/* Анимация для иконок галочек в билетах */
.ticket-feature-item svg {
    transition: transform 0.3s ease;
}

.ticket-feature-item:hover svg {
    transform: scale(1.2);
}

/* Стили для анимаций появления элементов билета удалены */

/* Анимация для хедера при скролле */
.header {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Анимация появления секций при скролле */
.about-forum,
.who-forum,
.come-forum,
.speakers,
.program,
.organizers-partners,
.partners-section,
.ticket-banner,
.location-section {
    opacity: 1;
    /* Анимация появления отключена */
    /* Отступ для плавной прокрутки с учетом фиксированного хедера */
    scroll-margin-top: 110px;
}

/* Баннеры всегда видимы */
.banner-desktop,
.banner-mobile {
    opacity: 1 !important;
}

/* Анимации появления отключены - элементы видны сразу */

/* Плавная анимация для всех кнопок */
button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Анимация для ссылок в футере */
.footer-nav-link,
.footer-legal-link,
.footer-mobile-nav-link,
.footer-mobile-legal-link {
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-nav-link:hover,
.footer-legal-link:hover,
.footer-mobile-nav-link:hover,
.footer-mobile-legal-link:hover {
    color: #0A2C6C;
    transform: translateX(5px);
}

/* Анимация для картинки места проведения */
.location-hall-img {
    transition: transform 0.5s ease;
}

.location-image:hover .location-hall-img {
    transform: scale(1.05);
}

/* Анимация для логотипов */
.footer-logo,
.footer-mobile-logo,
.a2k-logo-img,
.legalconf-logo-img {
    transition: transform 0.3s ease;
}

.footer-logo:hover,
.footer-mobile-logo:hover,
.a2k-logo-img:hover,
.legalconf-logo-img:hover {
    transform: scale(1.05);
}

/* ========================================
   ДОПОЛНИТЕЛЬНЫЕ АНИМАЦИИ
   ======================================== */

/* Анимация печати текста (typewriter effect) */
.typewriter {
    overflow: hidden;
    border-right: 2px solid currentColor;
    white-space: nowrap;
    animation: typewriter 3s steps(40, end), blink 0.75s step-end infinite;
}

/* Анимация градиента на тексте */
.gradient-text {
    background: linear-gradient(90deg, #0A2C6C, #337BFF, #0A2C6C);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
}

/* Анимация пульсации для важных элементов (мягкая) */
.pulse-animation {
    animation: pulse 3s ease-in-out infinite;
    animation-timing-function: ease-in-out;
}

/* Анимация появления элементов списка при наведении */
.who-card-list li {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

.who-card:hover .who-card-list li:nth-child(1) {
    animation: slideInFromLeft 0.5s ease;
}

.who-card:hover .who-card-list li:nth-child(2) {
    animation: slideInFromLeft 0.5s ease 0.1s backwards;
}

.who-card:hover .who-card-list li:nth-child(3) {
    animation: slideInFromLeft 0.5s ease 0.2s backwards;
}

/* Анимация иконок с вращением */
.who-card-icon img,
.come-card-icon img {
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.who-card:hover .who-card-icon img,
.come-card:hover .come-card-icon img {
    animation: none;
}

/* Анимация прогресс-бара при скролле */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #0A2C6C, #337BFF);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(10, 44, 108, 0.5);
}

/* Анимация счетчика для цены */
.counter-animate {
    animation: bounce 1s ease;
}

/* Анимация появления элементов программы - отключена */

/* Анимация волны на кнопках */

.button-wave {
    position: relative;
    overflow: visible;
}


/* Анимация свечения для важных элементов */
.glow-animation {
    animation: glow 2s ease-in-out infinite;
}

/* Анимация для даты и времени */
.banner-date,
.banner-time,
.banner-mobile-date,
.banner-mobile-time {
    position: relative;
    overflow: hidden;
}

.banner-date::before,
.banner-time::before,
.banner-mobile-date::before,
.banner-mobile-time::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.banner-date:hover::before,
.banner-time:hover::before,
.banner-mobile-date:hover::before,
.banner-mobile-time:hover::before {
    left: 100%;
}

/* Анимация появления изображений с масштабированием */
.speaker-image img,
.organizer-logo img {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.partner-logo-img {
    transition: none;
}

.speaker-card:hover .speaker-image img,
.organizer-card:hover .organizer-logo img {
    transform: scale(1.1);
}

.partner-logo:hover .partner-logo-img {
    transform: none;
}

/* Анимация для текста с задержкой по словам */
.text-word-by-word span {
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.text-word-by-word span:nth-child(1) { animation-delay: 0.1s; }
.text-word-by-word span:nth-child(2) { animation-delay: 0.2s; }
.text-word-by-word span:nth-child(3) { animation-delay: 0.3s; }
.text-word-by-word span:nth-child(4) { animation-delay: 0.4s; }
.text-word-by-word span:nth-child(5) { animation-delay: 0.5s; }
.text-word-by-word span:nth-child(6) { animation-delay: 0.6s; }

/* Анимация для индикатора прокрутки вниз */
.scroll-indicator {
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Анимация параллакс эффекта */
.parallax {
    transition: transform 0.3s ease-out;
}

/* Анимация для форм при фокусе */
.form-field {
    position: relative;
}

.form-field::after {
    display: none;
}

/* Анимация появления элементов билета - отключена */

/* Анимация для цены билета */
.ticket-price {
    position: relative;
    display: inline-block;
}

.ticket-price::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10, 44, 108, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

/* Анимация для цены билета - отключена */

/* Анимация для спикеров при наведении */
.speaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 44, 108, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.speaker-card:hover::before {
    opacity: 1;
}

/* Анимация для навигационных элементов */
.nav-item,
.footer-nav-link,
.footer-mobile-nav-link {
    position: relative;
}

.footer-nav-link::after,
.footer-mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0A2C6C, #337BFF);
    transition: width 0.3s ease;
}

.nav-item::after {
    display: none;
}

.footer-nav-link:hover::after,
.footer-mobile-nav-link:hover::after {
    width: 100%;
}

/* Активное состояние навигации */
.nav-item.active,
.footer-nav-link.active,
.footer-mobile-nav-link.active {
    color: #0A2C6C;
    font-weight: 600;
}

.nav-item.active::before {
    width: 8px;
    height: 8px;
    left: -1.5px;
    box-shadow: 0 0 8px rgba(10, 44, 108, 0.6);
}

.footer-nav-link.active::after,
.footer-mobile-nav-link.active::after {
    width: 100%;
}

/* Оптимизация анимаций для мобильных устройств */
@media (max-width: 768px) {
    /* Отключаем анимации только для конкретных элементов, НЕ для .partners-logos */
    /* Исключаем всю секцию partners-section из правил отключения анимации */
    body > *:not(.partners-section):not(.partners-section *),
    section:not(.partners-section):not(.partners-section *) *,
    .about-forum *,
    .who-forum *,
    .come-forum *,
    .speakers *,
    .program *,
    .organizers-partners *,
    .ticket-banner *,
    .location-section * {
        animation: none !important;
        transition-duration: 0.15s !important;
        transition-delay: 0s !important;
        will-change: auto !important;
    }
    
    /* Убеждаемся, что все секции видны сразу при загрузке */
    section {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Отключаем параллакс на мобильных */
    .about-forum-image,
    .program-image {
        transform: none !important;
    }
    
    /* Отключаем float анимацию на мобильных */
    .banner-people,
    .banner-mobile-people,
    .ticket-banner-people {
        animation: none !important;
        transform: none !important;
    }
    
    /* Отключаем сложные hover-эффекты на мобильных */
    .who-card:hover,
    .come-card:hover,
    .speaker-card:hover,
    .organizer-card:hover {
        transform: none;
    }
    
    .who-card:hover .who-card-icon,
    .come-card:hover .come-card-icon {
        transform: none;
    }
    
    .who-card:hover .who-card-list li,
    .come-card:hover .come-card-description {
        animation: none;
    }
    
    /* Отключаем все анимации появления */
    .who-card,
    .come-card,
    .speaker-card,
    .organizer-card,
    .program-item {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Сохраняем hover-эффекты для program-item даже при reduced motion */
    .program-item:hover {
        background-color: #f5f5f5 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        transform: none !important;
    }
    
    .program-item.program-item-panel:hover {
        background: linear-gradient(to right, #0A2C6C 0%, #337BFF 100%) !important;
        box-shadow: 0 4px 12px rgba(10, 44, 108, 0.3) !important;
        transform: none !important;
    }
    
    /* Логотипы внутри карусели партнеров - только opacity, анимация на родителе */
    .partners-logos .partner-logo {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        /* Анимация применяется к .partners-logos, не к отдельным логотипам */
    }
    
    /* Отключаем анимации появления секций */
    .about-forum,
    .who-forum,
    .come-forum,
    .speakers,
    .program,
    .organizers-partners,
    .ticket-banner,
    .location-section {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    
    /* Отключаем анимацию только для самой секции партнеров, но НЕ для дочерних элементов */
    .partners-section:not(:has(.partners-logos)) {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    
    /* КАРУСЕЛЬ ПАРТНЕРОВ - ОБЯЗАТЕЛЬНО ПОСЛЕ ВСЕХ ПРАВИЛ ОТКЛЮЧЕНИЯ */
    /* Используем максимальную специфичность и !important для гарантии */
    .partners-section .partners-content .partners-carousel-wrapper .partners-carousel .partners-logos,
    .partners-section .partners-carousel-wrapper .partners-carousel .partners-logos,
    .partners-carousel-wrapper .partners-carousel .partners-logos,
    .partners-logos {
        visibility: visible !important;
        width: max-content !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        animation: scroll-partners-mobile 25s linear infinite !important;
        animation-play-state: running !important;
        will-change: transform !important;
        backface-visibility: hidden !important;
    }
    
    /* С классом carousel-active - дополнительная гарантия */
    .partners-logos.carousel-active {
        animation: scroll-partners-mobile 25s linear infinite !important;
        animation-play-state: running !important;
    
    }
    
    .partners-logos:hover,
    .partners-logos.carousel-paused {
        animation-play-state: paused !important;
    }
    
    /* Отключаем все анимации для иконок */
    .who-card-icon img,
    .come-card-icon img {
        animation: none !important;
        transform: none !important;
    }
    
    /* Отключаем анимации для элементов билета */
    .ticket-feature-item,
    .ticket-feature-item svg {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
    
    /* Анимации появления отключены */
    
    /* Отключаем пульсацию */
    .pulse-animation {
        animation: none !important;
    }
    
    /* Отключаем все псевдоэлементы с анимациями */
    .ticket-price::after,
    .speaker-card::before,
    .form-field::after {
        display: none !important;
    }
    
    /* Отключаем все трансформации */
    .speaker-image img,
    .organizer-logo img,
    .partner-logo-img,
    .location-hall-img,
    .who-card,
    .come-card,
    .speaker-card,
    .organizer-card {
        transform: none !important;
        will-change: auto !important;
    }
    
    /* Отключаем подчеркивания навигации */
    .nav-item::after,
    .footer-nav-link::after,
    .footer-mobile-nav-link::after {
        display: none !important;
    }
    
    /* Отключаем scroll progress bar на мобильных */
    .scroll-progress {
        display: none !important;
    }
    
    /* Отключаем волновые эффекты кнопок */
    .button-wave::before,
    .button-wave::after {
        display: none !important;
    }
    
    /* Уменьшаем отступ для scroll-margin */
    .about-forum,
    .who-forum,
    .come-forum,
    .speakers,
    .program,
    .organizers-partners,
    .partners-section,
    .ticket-banner,
    .location-section {
        scroll-margin-top: 80px;
    }
    
}
@media (max-width: 650px) {
    .top-banner-graphic-white{
        display: none ;
    }
}
@media (max-width: 480px) {

    
    .who-card,
    .come-card,
    .speaker-card,
    .organizer-card,
    .partner-logo:not(.partners-logos .partner-logo),
    .program-item,
    .about-forum,
    .who-forum,
    .come-forum,
    .speakers,
    .program,
    .organizers-partners,
    .ticket-banner,
    .location-section {
        opacity: 1 !important;
        visibility: visible !important;
        animation: none !important;
        transform: none !important;
    }
    
    .partners-section:not(:has(.partners-logos)) {
        opacity: 1 !important;
        visibility: visible !important;
        animation: none !important;
        transform: none !important;
    }
    
    .partners-section .partners-content .partners-carousel-wrapper .partners-carousel .partners-logos,
    .partners-section .partners-carousel-wrapper .partners-carousel .partners-logos,
    .partners-carousel-wrapper .partners-carousel .partners-logos,
    .partners-logos {
       
        opacity: 1 !important;
        visibility: visible !important;
        width: max-content !important;
        display: flex !important;
        flex-wrap: nowrap !important;
    }
    
    .partners-logos.carousel-active {
        animation: scroll-partners-small-mobile 20s linear infinite !important;
        animation-play-state: running !important;
    }
    
    .partners-logos:hover,
    .partners-logos.carousel-paused {
        animation-play-state: paused !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *:not(.partners-logos):not(.partners-logos *),
    *:not(.partners-logos):not(.partners-logos *)::before,
    *:not(.partners-logos):not(.partners-logos *)::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}



.policy-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.policy-back-link {
    display: inline-block;
    color: #084B7A;
    font-size: 16px;
    margin-bottom: 40px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.policy-back-link:hover {
    opacity: 0.7;
}

.policy-company-info {
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.policy-company-info p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.policy-company-info a {
    color: #084B7A;
    text-decoration: none;
}

.policy-company-info a:hover {
    text-decoration: underline;
}

.policy-header {
    margin-bottom: 50px;
    text-align: center;
}

.policy-title {
    font-size: 48px;
    font-weight: 800;
    color: #084B7A;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.policy-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #084B7A;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-version {
    font-size: 16px;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #084B7A;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.policy-paragraph strong {
    font-weight: 700;
    color: #084B7A;
}

.policy-list {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    list-style-type: disc;
}

.policy-list li strong {
    font-weight: 700;
    color: #084B7A;
}

@media (max-width: 768px) {
    .policy-page {
        padding: 100px 0 60px;
    }

    .policy-title {
        font-size: 32px;
    }

    .policy-subtitle {
        font-size: 18px;
    }

    .policy-section-title {
        font-size: 22px;
    }

    .policy-paragraph {
        font-size: 15px;
    }

    .policy-list {
        padding-left: 20px;
    }

    .policy-list li {
        font-size: 15px;
    }
}

