    :root {
        /* Color Palette - Tokens */
        --clr-primary-900: #08306a;
        --clr-primary-800: #0a3f84;
        --clr-primary-700: #0d5ea7;
        --clr-primary-600: #0f5ca3;
        --clr-primary-100: #eef7ff;
        --clr-primary-50: #f5fbff;

        --clr-accent: #39d5f3;
        --clr-accent-light: #65e6ff;
        --clr-accent-deep: #6ee6ff;
        --clr-secondary: #ff9f1c;
        --clr-success: #4ade80;
        --clr-purple: #e879f9;
        --clr-gold: #f7bd4a;

        --clr-text-light: #ffffff;
        --clr-text-muted: #d7ecff;
        --clr-text-dark: #0d2a54;
        --clr-text-soft: #355884;
        --clr-text-link: #cbe6ff;

        --clr-surface-light: #ffffff;
        --clr-surface-dark: rgba(10, 40, 80, 0.6);
        --clr-surface-glass: rgba(255, 255, 255, 0.08);
        --clr-surface-glass-strong: rgba(255, 255, 255, 0.14);

        --clr-border-light: rgba(255, 255, 255, 0.14);
        --clr-border-soft: #cfe0f2;
        --clr-border-muted: #dce9f7;

        /* Semantic Variables */
        --bg-dark: var(--clr-primary-800);
        --bg-deep: var(--clr-primary-900);
        --bg-soft: var(--clr-primary-600);
        --bg-light: var(--clr-primary-100);

        --surface: var(--clr-surface-glass);
        --surface-strong: var(--clr-surface-glass-strong);

        --text: var(--clr-text-light);
        --text-dark: var(--clr-text-dark);
        --muted: var(--clr-text-muted);
        --muted-dark: #6e8db3;

        --accent: var(--clr-accent);
        --accent-2: var(--clr-accent-light);

        --line: var(--clr-border-light);

        /* Layout & Effects */
        --shadow: 0 20px 60px rgba(6, 37, 78, 0.16);
        --shadow-card: 0 14px 30px rgba(8, 48, 106, 0.06);
        --shadow-strong: 0 24px 60px rgba(5, 27, 61, 0.28);
        --shadow-neon: 0 0 12px rgba(57, 213, 243, 0.6);

        --container: 1280px;
        --header-h: 108px;
        --radius-xl: 28px;
        --radius-lg: 22px;
        --radius-md: 16px;
        --radius-sm: 12px;

        --clr-bg-glass: rgba(8, 48, 106, 0.98);
        --clr-overlay: rgba(8, 48, 106, 0.4);
        --clr-shadow-text: rgba(0, 0, 0, 0.5);
        --clr-shadow-text-soft: rgba(0, 0, 0, 0.4);

        /* Section Zebra Pattern Defaults */
        --section-bg: var(--bg-deep);
        --section-text: var(--text);
    }

    /* Base Styles Cleanup */
    iframe {
        border: none;
    }

    .u-mt-12 {
        margin-top: 12px !important;
    }

    /* Section Themes */
    .section--light {
        --section-bg: var(--bg-light);
        --section-text: var(--clr-text-light);
        background: var(--bg-light);
        color: var(--clr-text-light);
    }

    .section--dark {
        --section-bg: var(--section-bg);
        --section-text: var(--clr-text-light);
        background: var(--section-bg);
        color: var(--clr-text-light);
    }

    .section--gradient-dark {
        background: linear-gradient(180deg, var(--clr-primary-700) 0%, var(--clr-primary-900) 100%);
        color: var(--text);
    }


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        max-width: 100%;
        overflow-x: hidden;
        font-family: 'Montserrat', Arial, sans-serif;
        font-size: 18px;
        text-rendering: optimizeLegibility;
        /* Сглаживание для Firefox */
        -moz-osx-font-smoothing: grayscale;
    /* Сглаживание для Chrome/Edge/Safari */
        -webkit-font-smoothing: antialiased;
    /* Улучшение отрисовки текста */
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: var(--text);
        background: radial-gradient(circle at 80% 20%, rgba(57, 213, 243, 0.16), transparent 28%),
        linear-gradient(180deg, var(--clr-primary-700) 0%, var(--clr-primary-800) 40%, var(--clr-primary-900) 100%);
    }

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

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

    button,
    input,
    textarea,
    select {
        font: inherit;
    }

    .header__inner > *,
    .about__grid > *,
    .about__content > * {
        min-width: 0;
    }

    .container {
        width: min(92%, 1400px);
        margin: 0 auto;
    }

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

    .section-label {
        display: inline-block;
        margin-bottom: 16px;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--accent-2);
    }

    .section-title {
        font-size: 58px;
        line-height: 1.08;
        letter-spacing: -0.03em;
        font-weight: 900;
        color: inherit;
    }

    .section-subtitle {
        max-width: 7600px;
        margin-top: 18px;
        font-size: 18px;
        line-height: 1.65;
        color: var(--muted-dark);
        font-weight: 600;
    }

    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: var(--clr-bg-glass);
        border-bottom: 1px solid var(--line);
        width: 100%;
        backdrop-filter: blur(8px);
        height: var(--header-h);
        display: flex;
        align-items: center;
    }

    .header__inner {
        width: 96%;
        max-width: 1800px;
        min-height: 94px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 20px;
    }

    .header__left {
        display: flex;
        justify-content: flex-start !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        align-items: center;
        gap: 12px;
        min-width: 0;
        flex-wrap: nowrap;
    }

    .header__partners {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 0 0 auto;
        filter: brightness(1.15) drop-shadow(0 0 4px rgba(255, 255, 255, 0.15));
        padding: 6px 8px;
        border-radius: var(--radius-sm);
    }

    .header__logo {
        width: clamp(84px, 9vw, 132px);
        height: clamp(84px, 9vw, 132px);
        flex: 0 0 auto;
    }

    .header__brand {
        min-width: 0;
        flex: 0 0 auto;
        margin-left: -2px;
    }

    .header__brand strong {
        display: block;
        font-size: clamp(16px, 1.1vw, 28px);
        line-height: 1.02;
        font-weight: 700;
        letter-spacing: -0.03em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .header__brand span {
        display: block;
        margin-top: 2px;
        font-size: clamp(10px, 1.0vw, 14px);
        line-height: 1.05;
        color: var(--muted);
        font-weight: 700;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: clamp(10px, 1.2vw, 22px);
        min-width: 0;
        flex: 0 1 auto;
    }

    .nav a {
        font-size: clamp(14px, 1.0vw, 24px);
        font-weight: 700;
        color: var(--text);
        text-align: center;
        position: relative;
        text-decoration: none;
        min-width: 0;
        transition: color 0.3s ease;
        gap: 6px;
        line-height: 1.2;
    }

    /* Создаем саму линию (изначально ее ширина 0) */
    .nav a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width 0.3s ease;
    }

    /* При наведении линия расширяется до 100% */
    .nav a:hover::after {
        width: 100%;
    }

    .nav a:focus-visible {
        color: var(--accent-2);
        opacity: 1;
    }

    /* Стили для ссылки с логотипом Visit Astana */
    .nav-visit {
        display: inline-flex !important;
        align-items: center;
        gap: 8px; /* Расстояние между логотипом и текстом */
    }

    .nav-visit__logo {
        height: 96px; /* Высота логотипа (можно изменить по вкусу, 24px обычно отлично смотрится в меню) */
        width: auto;
        object-fit: contain;
        transition: transform 0.2s ease;
    }

    /* Легкая анимация логотипа при наведении на ссылку */
    .nav-visit:hover .nav-visit__logo {
        transform: scale(1.05);
    }

    /* (Legacy .lang-switch removed) */


    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--clr-overlay);
        pointer-events: none;
        z-index: 1;
    }


    .hero h1 {
        font-size: clamp(42px, 4.8vw, 86px);
        line-height: 1.1;
        letter-spacing: -0.04em;
        text-wrap: balance;
        margin: 0 auto;
        text-shadow: var(--clr-shadow-text);
    }

    .hero h1 span {
        color: var(--clr-secondary);
        display: inline;
    }

    .hero__text {
        max-width: 900px;
        margin: 24px auto 0;
        font-size: clamp(16px, 1.35vw, 25px);
        line-height: 1.6;
        color: var(--muted);
        text-shadow: var(--clr-shadow-text-soft);
    }

    .hero__meta {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 24px;
        margin-bottom: 24px;
        flex-wrap: wrap;
    }

    .hero__meta-item {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: auto;
        padding: 4px 0;
        border-radius: 999px;
        font-size: clamp(24px, 2vw, 36px);
        background: transparent;
        font-weight: 700;
        color: var(--text);
    }

    .hero__meta-item--date {
        border-color: var(--clr-border-light);
    }

    .hero__meta-item--location {
        border-color: var(--clr-border-light);
    }

    /* ABOUT */
    .about {
        background: var(--section-bg);
        color: var(--text-dark);
    }

    .about__grid {
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
        gap: 40px;
        align-items: start;
        margin-top: 30px;
    }

    .about__content {
        display: grid;
        gap: 22px;
        align-content: start;
    }

    .about__card {
        background: var(--clr-surface-light);
        border: 1px solid var(--clr-border-soft);
        border-radius: var(--radius-xl);
        padding: 24px;
        box-shadow: var(--shadow-card);
    }

    .about__card h3 {
        font-size: 24px;
        line-height: 1.15;
        margin-bottom: 12px;
        font-weight: 900;
        color: var(--text-dark);
    }

    .about__card p,
    .about__card li {
        font-size: 17px;
        line-height: 1.72;
        color: var(--clr-text-soft);
        font-weight: 600;
    }

    .about__card p + p {
        margin-top: 14px;
    }

    .about__card ul {
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .about__eyebrow {
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        padding: 0 12px;
        border-radius: 999px;
        background: var(--clr-primary-50);
        color: var(--clr-primary-600);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        margin-bottom: 14px;
    }

    .about__lead {
        font-size: 18px;
        line-height: 1.72;
        color: var(--clr-primary-700);
        font-weight: 700;
        margin-bottom: 18px;
    }

    .about__meta-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 18px;
    }

    .about__meta-item {
        border-radius: var(--radius-md);
        background: var(--clr-primary-50);
        border: 1px solid var(--clr-border-muted);
        padding: 16px 18px;
    }

    .about__meta-item strong {
        display: block;
        margin-bottom: 6px;
        color: #0d2a54;
        font-size: 14px;
        line-height: 1.3;
    }

    .about__meta-item span {
        display: block;
        color: var(--clr-text-soft);
        font-size: 15px;
        line-height: 1.55;
        font-weight: 700;
    }

    .about__highlights {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 18px;
    }

    .about__highlight {
        border-radius: var(--radius-md);
        background: linear-gradient(180deg, var(--clr-primary-50) 0%, var(--clr-primary-100) 100%);
        border: 1px solid var(--clr-border-muted);
        padding: 16px 18px;
    }

    .about__highlight strong {
        display: block;
        margin-bottom: 8px;
        color: #0d2a54;
        font-size: 17px;
        line-height: 1.35;
    }

    .about__highlight p {
        margin: 0;
        font-size: 15px;
        line-height: 1.6;
        color: var(--clr-text-soft);
        font-weight: 700;
    }

    .about__accordion {
        background: var(--clr-surface-light);
        border: 1px solid var(--clr-border-soft);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-card);
        overflow: hidden;
    }

    .about__accordion summary {
        list-style: none;
        cursor: pointer;
        padding: 22px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        color: #0d2a54;
        font-size: 22px;
        line-height: 1.2;
        font-weight: 900;
    }

    .about__accordion summary::-webkit-details-marker {
        display: none;
    }

    .about__accordion summary::after {
        content: '+';
        flex: 0 0 auto;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--clr-primary-50);
        color: var(--clr-primary-600);
        font-size: 24px;
        font-weight: 700;
        line-height: 1;
    }

    .about__accordion[open] summary::after {
        content: '–';
    }

    .about__accordion-body {
        border-top: 1px solid var(--clr-border-muted);
        padding: 0 24px 24px;
        max-height: 440px;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--clr-border-muted) transparent;
    }

    .about__accordion-body::-webkit-scrollbar {
        width: 8px;
    }

    .about__accordion-body::-webkit-scrollbar-thumb {
        background: var(--clr-border-muted);
        border-radius: 999px;
    }

    .about__section-block + .about__section-block {
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--clr-primary-100);
    }

    .about__section-block h4 {
        margin-bottom: 12px;
        color: #0d2a54;
        font-size: 20px;
        line-height: 1.25;
        font-weight: 900;
    }

    .about__section-block p,
    .about__section-block li {
        font-size: 16px;
        line-height: 1.68;
        color: var(--clr-text-soft);
        font-weight: 700;
    }

    .about__section-block ul {
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .about__topics-list {
        display: grid;
        gap: 14px;
        margin-top: 6px;
    }

    .about__topic {
        border-radius: var(--radius-md);
        background: var(--clr-primary-50);
        border: 1px solid var(--clr-border-muted);
        padding: 16px 18px;
    }

    .about__topic strong {
        display: block;
        margin-bottom: 8px;
        color: #0d2a54;
        font-size: 17px;
        line-height: 1.4;
    }

    .about__topic p {
        margin: 0;
        font-size: 15px;
        line-height: 1.6;
        color: var(--clr-text-soft);
        font-weight: 700;
    }

    .about__aside {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .about-gallery {
        width: 100%;
        max-width: 700px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .about-gallery__main {
        width: 100%;
        aspect-ratio: 16/12;
        background: var(--clr-surface-light);
        border: 1px solid var(--clr-border-muted);
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-card);
    }

    .about-gallery__main img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        cursor: pointer;
        background: linear-gradient(135deg, #d1ecff, #f1faff);
    }

    .about-gallery__thumbs {
        width: 100%;
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 4px;
        scrollbar-width: thin;
        scrollbar-color: #b8d4f0 transparent;
    }

    .about-gallery__thumbs::-webkit-scrollbar {
        height: 8px;
    }

    .about-gallery__thumbs::-webkit-scrollbar-thumb {
        background: var(--clr-border-muted);
        border-radius: 999px;
    }

    .about-gallery__thumb {
        appearance: none;
        border: 1px solid var(--clr-border-muted);
        background: var(--clr-surface-light);
        border-radius: var(--radius-md);
        overflow: hidden;
        cursor: pointer;
        padding: 0;
        box-shadow: 0 10px 22px rgba(8, 48, 106, 0.07);
        transition: 0.2s ease;
        flex: 0 0 108px;
        aspect-ratio: 16 / 10;
    }

    .about-gallery__thumb:hover {
        transform: translateY(-2px);
    }

    .about-gallery__thumb.is-active {
        border-color: #39d5f3;
        box-shadow: 0 0 0 3px rgba(57, 213, 243, 0.18);
    }

    .about-gallery__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        background: linear-gradient(135deg, #d1ecff, #f1faff);
    }

    /* HISTORY / MATERIALS */
    .history {
        background: linear-gradient(180deg, rgba(8, 48, 106, 0.96), rgba(10, 63, 132, 0.98)),
        url('assets/bg/bg.png') center/cover no-repeat;
    }

    .history__head {
        text-align: center;
        margin-bottom: 52px;
    }

    .materials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 360px));
        justify-content: center;
        gap: 36px;
    }

    .material-card {
        width: 100%;
        max-width: 360px;
        border-radius: var(--radius-xl);
        overflow: hidden;
        background: var(--clr-surface-dark);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-strong);
        display: flex;
        flex-direction: column;
    }

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

    .material-card__cover img {
        width: 100%;
        height: auto;
        border-radius: 18px;
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    }

    .material-card__body {
        padding: 24px;
    }

    .material-card__meta {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 10px;
        font-size: 14px;
        font-weight: 800;
        color: #6ee6ff;
        text-transform: uppercase;
    }

    .material-card__body h3 {
        font-size: 22px;
        font-weight: 900;
        margin-bottom: 10px;
        color: #f4f9ff;
    }

    .material-card__body p {
        font-size: 15px;
        line-height: 1.6;
        color: #d7ecff;
    }

    .material-card__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 18px;
    }

    .material-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 0 18px;
        border-radius: var(--radius-sm);
        border: 1px solid var(--line);
        background: var(--surface);
        color: #fff;
        font-weight: 800;
        transition: 0.2s ease;
    }

    .material-btn:hover,
    .material-btn:focus-visible {
        transform: translateY(-2px);
    }

    .material-btn--primary {
        background: #ffffff;
        border-color: #ffffff;
        color: #08306a;
    }

    /* PARTNERS */
    .partners {
        background: linear-gradient(180deg, var(--clr-primary-50) 0%, var(--clr-primary-100) 100%);
        color: var(--text-dark);
    }

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

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

    .partner-card {
        background: var(--clr-surface-light);
        border: 1px solid var(--clr-border-soft);
        min-height: 160px;
        border-radius: var(--radius-md);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 32px 24px;
        box-shadow: var(--shadow-card);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .partner-card:hover {
        transform: translateY(-4px);
    }

    .partner-card img {
        max-width: 100%;
        max-height: 100px;
        object-fit: contain;
        opacity: 0.95;
        transition: transform 0.3s ease;
    }

    .partner-card:hover img {
        transform: scale(1.05);
        opacity: 1;
    }

    .partner-card h3 {
        font-size: 18px;
        line-height: 1.2;
        font-weight: 600;
        color: black;
        margin: 0;
        max-width: 90%;
    }

    /* FOOTER */
    .footer {
        padding: 74px 0 0;
        background: var(--bg-deep);
    }

    .footer__inner {
        display: grid;
        grid-template-columns: 1.3fr 1fr 1fr;
        gap: 34px;
        padding-bottom: 36px;
    }

    .footer__brand {
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }

    .footer__logo {
        width: 128px;
        flex: 0 0 auto;
    }

    .footer__brand h3 {
        font-size: 26px;
        line-height: 1.05;
        margin-bottom: 10px;
        font-weight: 900;
    }

    .footer__brand p,
    .footer__col a,
    .footer__col div {
        color: var(--clr-text-link);
        line-height: 1.7;
        font-weight: 600;
    }

    .footer__col h4 {
        margin-bottom: 16px;
        font-size: 18px;
        font-weight: 900;
        color: var(--text);
    }

    .footer__nav {
        display: grid;
        gap: 8px;
    }

    .footer__bottom {
        border-top: 1px solid var(--line);
        padding: 18px 0 26px;
        text-align: center;
        color: var(--muted);
        font-size: 14px;
        font-weight: 700;
    }

    /* --- Социальные сети в футере --- */
    .footer__socials {
        display: flex;
        gap: 12px;
        margin-top: 24px;
    }

    .footer__socials a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--surface);
        border: 1px solid var(--line);
        color: var(--clr-text-link);
        transition: all 0.3s ease;
    }

    .footer__socials svg {
        width: 28px;
        height: 28px;
        fill: currentColor;
    }

    /* Эффект при наведении на иконку */
    .footer__socials a:hover,
    .footer__socials a:focus-visible {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--bg-deep);
        transform: translateY(-4px);
        box-shadow: 0 8px 16px rgba(57, 213, 243, 0.25);
        outline: none;
    }

    .speakers {
        background: var(--section-bg);
        color: var(--text-dark);
    }

    .speakers__head {
        text-align: center;
        margin-bottom: 24px;
        color: var(--clr-text-light);
    }

    .speakers__tabs {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 28px;
    }

    .speakers__tab {
        border: 1px solid var(--clr-border-muted);
        background: var(--clr-surface-light);
        color: var(--clr-text-soft);
        border-radius: 999px;
        padding: 10px 16px;
        font-size: 14px;
        font-weight: 800;
        cursor: pointer;
        transition: .2s ease;
    }

    .speakers__tab:hover {
        transform: translateY(-1px);
    }

    .speakers__tab.active {
        background: var(--clr-primary-600);
        color: var(--text);
        border-color: var(--clr-primary-600);
    }

    .speakers__viewport {
        position: relative;
    }

    .speakers__panel {
        display: none;
    }

    .speakers__panel.active {
        display: block;
    }

    .speakers__track {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        padding: 6px 52px 14px;
        scrollbar-width: thin;
        scrollbar-color: #b8d4f0 transparent;
    }

    .speakers__track::-webkit-scrollbar {
        height: 10px;
    }

    .speakers__track::-webkit-scrollbar-thumb {
        background: var(--clr-border-muted);
        border-radius: 999px;
    }

    .speaker-tile {
        position: relative;
        flex: 0 0 248px;
        height: 330px;
        overflow: hidden;
        background: var(--clr-primary-100);
        box-shadow: var(--shadow-card);
    }

    .speaker-tile--double {
        flex-basis: 280px;
    }

    .speaker-tile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        background: #dbe9f6;
    }

    .speaker-tile__overlay {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        min-height: 92px;
        padding: 14px 14px 12px;
        background: linear-gradient(180deg, rgba(5, 16, 33, 0.02) 0%, rgba(5, 16, 33, 0.88) 34%, rgba(5, 16, 33, 0.98) 100%);
        color: var(--text);
    }

    .speaker-tile__overlay h3 {
        margin: 0 0 6px;
        font-size: 18px;
        line-height: 1.06;
        font-weight: 900;
        text-transform: uppercase;
    }

    .speaker-tile__overlay p {
        margin: 0;
        font-size: 12px;
        line-height: 1.35;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 700;
    }

    .speakers__arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border: none;
        border-radius: 50%;
        background: rgba(13, 42, 84, 0.92);
        color: var(--text);
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
        z-index: 5;
        box-shadow: var(--shadow);
    }

    .speakers__arrow--prev {
        left: 0;
        margin-left: 8px;
    }

    .speakers__arrow--next {
        right: 0;
        margin-right: 8px;
    }


    .about__intro-text .section-subtitle {
        color: var(--text)
    }

    .about__intro-text p {
        color: var(--clr-text-muted);
        font-size: 26px;
        font-weight: 500;
    }

    .about__lead {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
    }


    /* Speakers responsive refinements */
    .speakers {
        overflow: hidden;
    }

    .speakers__head .section-title {
        text-wrap: balance;
    }

    .speakers__tabs {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .speakers__tabs::-webkit-scrollbar {
        display: none;
    }

    .speakers__tab {
        flex: 0 0 auto;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .speakers__track {
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .speaker-tile {
        scroll-snap-align: start;
        border-radius: 18px;
    }

    /* 2026 UI refresh and interaction layer */
    body {
        font-family: 'Montserrat', 'Arial', sans-serif;
        letter-spacing: 0.01em;
    }

    .header__brand strong {
        font-family: 'Montserrat', 'Arial', sans-serif;
    }

    .header {
        transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .header.is-scrolled {
        background: rgba(8, 48, 106, 0.985);
        box-shadow: 0 10px 28px rgba(6, 31, 66, 0.34);
        border-bottom-color: rgba(132, 213, 255, 0.28);
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: auto 0 0;
        height: 32%;
        pointer-events: none;
        z-index: 1;
    }

    .hero__meta-item:hover {
        transform: translateY(-2px);
    }

    .hero__countdown {
        width: min(100%, 800px);
        margin: 14px auto 0;
        padding: 14px 18px;
        border-radius: 18px;
        border: 1px solid rgba(161, 222, 255, 0.34);
        background: linear-gradient(140deg, rgba(14, 76, 138, 0.74) 0%, rgba(7, 44, 91, 0.82) 100%);
        box-shadow: 0 14px 40px rgba(7, 34, 72, 0.32);
    }

    .hero__countdown-title {
        font-size: 22px;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #b8e9ff;
    }

    .hero__countdown-grid {
        margin-top: 16px;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
    }

    .hero__countdown-chip {
        border-radius: 12px;
        padding: 8px 8px 9px;
        background: rgba(219, 242, 255, 0.12);
        border: 1px solid rgba(191, 230, 255, 0.28);
    }

    .hero__countdown-value {
        display: block;
        font-family: 'Space Grotesk', 'Segoe UI', Tahoma, sans-serif;
        font-size: clamp(24px, 2.8vw, 30px);
        line-height: 1;
        font-weight: 700;
        color: #ffffff;
    }

    .hero__countdown-label {
        display: block;
        margin-top: 6px;
        font-size: 15px;
        line-height: 1.2;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #b8e9ff;
    }

    .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: rgba(255, 255, 255, 0.14);
        z-index: 1200;
        pointer-events: none;
    }

    .scroll-progress__bar {
        display: block;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, #39d5f3 0%, #f7bd4a 100%);
        box-shadow: 0 0 12px rgba(57, 213, 243, 0.6);
        transform-origin: left center;
    }

    .back-to-top {
        position: fixed;
        right: 18px;
        bottom: 20px;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: 1px solid rgba(199, 236, 255, 0.55);
        background: linear-gradient(160deg, #0d5ea7 0%, #08306a 100%);
        color: #fff;
        box-shadow: 0 12px 24px rgba(5, 27, 61, 0.34);
        font-size: 18px;
        font-weight: 900;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
        z-index: 1002;
    }

    .back-to-top.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover,
    .back-to-top:focus-visible {
        transform: translateY(-2px);
    }

    .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 500ms ease, transform 500ms ease;
        transition-delay: calc(var(--reveal-delay, 0) * 90ms);
    }

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }


    .about-gallery__main::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        pointer-events: none;
        box-shadow: inset 0 0 0 1px rgba(57, 213, 243, 0.08);
    }

    .about-gallery__main:hover img {
        transform: scale(1.018);
    }

    .about-gallery__thumb:focus-visible {
        outline: 2px solid #39d5f3;
        outline-offset: 2px;
    }

    .speakers__tab,
    .material-btn,
    .lang-switch a,
    .nav a {
        transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
    }


    .speakers__tab:focus-visible,
    .material-btn:focus-visible,
    .lang-dropdown__btn:focus-visible,
    .nav a:focus-visible {
        outline: 2px solid #39d5f3;
        outline-offset: 2px;
    }

    .speakers__arrow[disabled] {
        opacity: 0.36;
        pointer-events: none;
    }

    .media-lightbox {
        position: fixed;
        inset: 0;
        background: rgba(5, 16, 33, 0.84);
        backdrop-filter: blur(6px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 220ms ease, visibility 220ms ease;
        z-index: 1300;
    }

    .media-lightbox.is-open {
        opacity: 1;
        visibility: visible;
    }

    .media-lightbox__image {
        max-width: min(96vw, 1200px);
        max-height: 84vh;
        border-radius: 18px;
        box-shadow: 0 24px 54px rgba(0, 0, 0, 0.44);
    }

    .media-lightbox__close {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255, 255, 255, 0.34);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        font-size: 20px;
        cursor: pointer;
    }

    .nav-toggle {
        display: none;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.24);
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        font-size: 21px;
        line-height: 1;
        cursor: pointer;
    }

    .nav-toggle:focus-visible {
        outline: 2px solid #39d5f3;
        outline-offset: 2px;
    }

    .nav-drawer-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(5, 22, 44, 0.58);
        opacity: 0;
        visibility: hidden;
        transition: opacity 220ms ease, visibility 220ms ease;
        z-index: 1090;
    }

    .nav-drawer {
        position: fixed;
        top: 0;
        right: 0;
        width: min(82vw, 340px);
        height: 100vh;
        padding: 84px 20px 22px;
        background: linear-gradient(180deg, #0d5ea7 0%, #08306a 100%);
        box-shadow: -14px 0 42px rgba(5, 20, 40, 0.44);
        transform: translateX(104%);
        transition: transform 240ms ease;
        z-index: 1100;
        overflow-y: auto;
    }

    .nav-drawer .nav {
        display: grid;
        gap: 6px;
        justify-content: stretch;
    }

    .nav-drawer .nav a {
        display: block;
        border-radius: 12px;
        padding: 11px 12px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-drawer .nav-dropdown {
        display: block;
    }

    .nav-drawer .nav-dropdown__btn {
        width: 100%;
        justify-content: space-between;
        padding: 11px 12px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 12px;
    }

    .nav-drawer .nav-dropdown__list {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        margin-top: 4px;
        padding: 4px 0 4px 20px;
        display: grid;
        gap: 4px;
    }

    .nav-drawer .nav-dropdown__list a {
        background: transparent;
        padding: 8px 12px;
        font-size: 15px;
    }

    .nav-drawer .lang-dropdown {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 8px;
        backdrop-filter: blur(10px);

        margin-top: 16px;
        justify-content: flex-start;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .nav-drawer-backdrop {
        opacity: 1;
        visibility: visible;
    }

    body.nav-open .nav-drawer {
        transform: translateX(0);
    }

    /* PROGRAM SECTION */
    .program {
        background: transparent; /* Оставляем основной градиент body */
    }

    .program__head {
        text-align: center;
        margin-bottom: 40px;
    }

    .program__tabs {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        justify-content: center;
        gap: 12px;
        margin-bottom: 30px;
    }

    .program__tab {
        background: var(--surface);
        border: 1px solid var(--line);
        padding: 16px;
        border-radius: var(--radius-md);
        color: var(--text);
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: all 0.3s ease;
    }

    .program__tab:hover {
        background: var(--surface-strong);
    }

    .program__tab.is-active {
        background: var(--clr-primary-50);
        border-color: var(--clr-border-muted);
        color: var(--bg-deep);
    }

    .program__tab.is-active span {
        color: var(--bg-deep);
        opacity: 0.8;
    }

    .program__content {
        display: none;
        animation: fadeIn 0.4s ease;
    }

    .program__content.is-active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .program__table-wrapper {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        overflow: hidden;
        backdrop-filter: blur(10px);
    }

    .program__table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
    }

    .program__table tr:last-child td {
        border-bottom: none;
    }

    .program__table strong {
        color: var(--text);
        display: block;
        margin-bottom: 4px;
    }

    /* Адаптивность для мобилок */
    /* Program Table Styling */
    .program__table-wrapper {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        overflow: hidden;
        backdrop-filter: blur(10px);
    }

    /* Дополнительное оформление ячеек */
    .program__staff {
        margin-top: 10px;
        font-size: 13px;
        color: var(--accent);
        font-style: italic;
        opacity: 0.9;
    }

    .program__speakers-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .program__speakers-list li {
        position: relative;
        padding-left: 15px;
        margin-bottom: 8px;
        font-size: 15px;
    }

    .program__speakers-list li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: var(--accent);
    }

    .program__speaker-item {
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .program__speaker-item:last-child {
        border-bottom: none;
    }

    .program__speaker-item strong {
        display: block;
        font-size: 15px;
        color: var(--text);
        margin-bottom: 4px;
    }

    .program__speaker-item span {
        display: block;
        font-size: 14px;
        color: var(--muted);
        line-height: 1.4;
    }

    .program__tab strong {
        font-size: 24px; /* Было 20px */
        font-weight: 800;
    }

    .program__tab span {
        font-size: 16px; /* Было 14px */
        color: var(--muted);
        margin-top: 4px;
    }

    .program__table th {
        background: rgba(255, 255, 255, 0.05);
        padding: 22px;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--accent);
        border-bottom: 1px solid var(--line);
    }

    .program__table td {
        padding: 22px;
        border-bottom: 1px solid var(--line);
        vertical-align: top;
        font-size: 18px;
        line-height: 1.6;
    }

    .program__table .time {
        white-space: nowrap;
        font-weight: 800;
        color: var(--accent-2);
        width: 190px;
        font-size: 18px;
    }

    .program__table td strong {
        color: var(--text);
        font-size: 18px;
    }

    .program__break {
        background: rgba(255, 255, 255, 0.05);
    }

    .program__break td {
        text-align: center;
        background: rgba(57, 213, 243, 0.08);
        color: var(--accent-2);
        padding: 16px 22px;
        border-bottom: 1px solid var(--line);
    }

    .program__break strong {
        font-size: 20px;
        font-weight: 800;
        letter-spacing: 0.03em;
        color: var(--accent); /* Контрастный цвет для слова "Обед" или "Перерыв" */
    }

    /* 1. Делаем цвет всех шрифтов внутри таблицы белым */
    .program__table th,
    .program__table td,
    .program__table td strong,
    .program__speakers-list li,
    .program__speaker-item strong,
    .program__speaker-item span,
    .program__staff {
        color: var(--text) !important;
    }

    .program__table .time {
        color: var(--text) !important;
    }

    /* 2. Центрируем заголовки 2-й («Мероприятие / Детали») и 3-й («Спикеры») колонок */
    .program__table th:nth-child(2),
    .program__table th:nth-child(3) {
        text-align: center;
    }

    .program__break td {
        text-align: center !important;
        vertical-align: middle;
    }

    .program__table-wrapper {
        background: var(--clr-surface-light) !important;
        border: 1px solid var(--clr-border-soft) !important;
        box-shadow: var(--shadow-card) !important;
    }

    .program__table th,
    .program__table td,
    .program__table td strong,
    .program__speakers-list li,
    .program__speaker-item strong,
    .program__staff,
    .program__table .time {
        color: var(--bg-deep) !important;
        font-size: 22px;
        font-weight: 700;
    }


    /* 3. Оформление шапки таблицы (чтобы она не сливалась с белым фоном) */
    .program__table th {
        background: var(--clr-primary-50) !important;
        border-bottom: 1px solid var(--clr-primary-800) !important;
        font-size: 24px;
        font-weight: 700;
    }

    .program__table td {
        border: 1px solid var(--clr-primary-800) !important;
        font-size: 24px;
        font-weight: 600;
    }

    /* 5. Настройка строк "Обед" и "Перерыв" для белого дизайна */
    .program__break {
        background: var(--clr-primary-100) !important;
    }

    .program__break td {
        font-size: 24px;
        font-weight: 600;
    }

    .program__break strong {
        color: var(--clr-primary-600) !important;
    }

    .program__table th {
        border-right: 1px solid var(--clr-primary-800) !important;
        text-align: center !important;
    }


    .program__break td {
        text-align: center !important;
        vertical-align: middle;
    }

    /* --- СЕКЦИЯ ПЕРЕХОДА К ПРОГРАММЕ --- */
    .program-cta {
        padding: 80px 0 80px;
    }

    .program-cta__box {
        display: flex;
        align-items: center;
        gap: 40px;
        text-align: left;
        background: var(--clr-surface-light) !important;
        border-radius: var(--radius-xl);
        padding: 60px;
        box-shadow: var(--shadow-card) !important;
        border: 1px solid var(--clr-border-soft) !important;
        overflow: hidden;
    }

    .program-cta__content {
        flex: 1;
        max-width: 760px;
        margin: 0 auto;
    }

    .program-cta__image {
        flex: 0 0 38%;
        display: flex;
        justify-content: center;
    }

    .program-cta__image img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(8, 48, 106, 0.1);
        border: 1px solid #e5eff9;
    }

    .program-cta__box {
        display: flex;
        align-items: center;
        gap: 40px;
        text-align: left;
        background: var(--clr-surface-light) !important;
        border-radius: var(--radius-xl);
        padding: 60px;
        box-shadow: var(--shadow-card) !important;
        border: 1px solid var(--clr-border-soft) !important;
        overflow: hidden;
    }

    .program-cta__content .section-title {
        color: var(--bg-deep) !important;
        font-size: clamp(32px, 4vw, 48px);
        margin-bottom: 20px;
    }

    .program-cta__content p {
        font-size: 22px;
        line-height: 1.6;
        color: var(--clr-text-soft) !important;
        margin-bottom: 36px;
        font-weight: 500;
    }

    .program-cta__content .material-btn--primary {
        padding: 0 32px;
        min-height: 54px;
        font-size: 18px;
        background: var(--clr-primary-800);
        color: var(--text);
    }

    .program-cta__content .material-btn--primary:hover {
        box-shadow: 0 12px 32px rgba(57, 213, 243, 0.4);
    }


    .nav a::before {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        flex-shrink: 0; /* Чтобы точка не сплющивалась */
        margin-right: 8px; /* Отступ от точки до текста */
        vertical-align: middle;
        margin-top: -3px; /* Выравнивание ровно по центру текста */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .nav a::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: var(--accent);
        box-shadow: 0 0 8px var(--accent-glow);
    }

    /* При наведении точка будет немного увеличиваться */
    .nav a:not(.nav-visit):hover::before {
        transform: scale(1.4);
    }

    /* 1. О Конгрессе — Неоновый голубой (ваш фирменный) */
    .nav a:nth-child(1)::before {
        background-color: var(--clr-accent);
        box-shadow: var(--shadow-neon);
    }

    .nav a:nth-child(2)::before {
        background-color: var(--clr-secondary);
        box-shadow: 0 0 8px rgba(255, 159, 28, 0.6);
    }

    .nav a:nth-child(3)::before {
        background-color: var(--clr-success);
        box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    }

    .nav a:nth-child(4)::before {
        background-color: var(--clr-purple);
        box-shadow: 0 0 8px rgba(232, 121, 249, 0.6);
    }

    .nav a:nth-child(5)::before {
        background-color: var(--clr-gold);
        box-shadow: var(--shadow-neon);
    }

    /* --- СТИЛИ ДЛЯ МЕСТА ПРОВЕДЕНИЯ --- */
    .program__location {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: var(--clr-primary-100);
        padding: 14px 20px;
        border-radius: var(--radius-sm);
        margin-top: 24px;
        color: var(--bg-deep);
        font-size: 24px;
        box-shadow: 0 4px 15px rgba(8, 48, 106, 0.05);
    }

    .program__location svg {
        color: var(--accent);
        flex-shrink: 0;
    }

    .program__location strong {
        color: var(--clr-primary-800);
        margin-right: 4px;
    }

    /* Адаптивность для мобильных */
    .program__location svg {
        color: var(--accent);
        flex-shrink: 0;
    }

    /* Обновляем сетку футера для 4 колонок (раньше было 3) */
    .footer__inner {
        display: grid;
        /* Распределяем место: Описание (чуть больше), Навигация, Контакты, Карта (самая широкая) */
        grid-template-columns: 1.2fr 0.8fr 1.2fr 1.5fr;
        gap: 34px;
        padding-bottom: 36px;
    }

    /* Стили для блока с картой */
    .footer__map {
        width: 100%;
        height: 280px;
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        border: 1px solid var(--line);
        transition: transform 0.3s ease;
    }

    .footer__map:hover {
        transform: translateY(-4px);
        border-color: rgba(57, 213, 243, 0.4);
    }

    .footer__map iframe {
        width: 100%;
        height: 100%;
        display: block;
        background: var(--bg-deep);
    }

    .footer__map:hover {
        transform: translateY(-4px);
        border-color: rgba(57, 213, 243, 0.4);
    }

    /* На телефонах все колонки идут друг под другом */
    .footer__map iframe {
        width: 100%;
        height: 100%;
        display: block;
        background: var(--bg-deep);
    }

    /* =========================================
    ОБНОВЛЕННЫЙ HERO-БЛОК (ВИДЕО ФОН И ТЕКСТ СЛЕВА)
    ========================================= */


    /* Ограничиваем ширину текста, чтобы он занимал только левую половину экрана (около 55%) */
    .hero h1,
    .hero__text,
    .about__section-head {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 16px;
        color: var(--clr-primary-50);
    }

    .about__animated-logo {
        width: 192px;
        height: 192px;
        object-fit: cover;
        border-radius: 180px;
        flex-shrink: 0;
        mix-blend-mode: normal;
    }

    .about__intro {
        display: flex;
        flex-direction: row;
        gap: 30px;
        margin-bottom: 40px;
    }

    /* --- МАТЕРИАЛЫ КОНГРЕССОВ ВНУТРИ «О КОНГРЕССЕ» --- */
    .about__materials {
        margin-top: 20px;
    }

    .about__materials-inner {
        background: linear-gradient(180deg, var(--bg-dark), var(--bg-soft)),
        url('assets/bg/bg.png') center/cover no-repeat;
        border-radius: var(--radius-xl);
        padding: 48px 40px;
        box-shadow: var(--shadow-strong);
    }

    .about__materials-inner {
        background: linear-gradient(180deg, var(--bg-dark), var(--bg-soft)),
        url('assets/bg/bg.png') center/cover no-repeat;
        border-radius: var(--radius-xl);
        padding: 48px 40px;
        box-shadow: var(--shadow-strong);
    }

    /* --- ВЫПАДАЮЩЕЕ МЕНЮ ЯЗЫКОВ --- */
    .lang-dropdown {
        position: relative;
        display: inline-block;
        z-index: 1001;
    }

    .lang-dropdown__btn {
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 80px;
        height: 48px;
        padding: 0 16px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        color: var(--text);
        font-weight: 800;
        transition: all 0.3s ease;
    }

    .lang-dropdown:hover .lang-dropdown__btn {
        background: rgba(255, 255, 255, 0.2);
        border-color: #fff;
    }

    .lang-dropdown__list {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        background: var(--bg-deep);
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        list-style: none;
        padding: 8px 0;
        min-width: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .lang-dropdown:hover .lang-dropdown__list {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .lang-dropdown__list button {
        width: 100%;
        padding: 10px 20px;
        text-align: center;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        transition: background 0.2s;
    }

    .lang-dropdown__list button:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--accent);
    }

    .lang-dropdown__icon {
        transition: transform 0.3s ease;
    }

    .lang-dropdown:hover .lang-dropdown__icon {
        transform: rotate(180deg);
    }


    .lang-dropdown__list li {
        width: 100%;
    }

    .lang-dropdown__list button {
        display: block;
        width: 100%;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px 20px;
        text-align: center;
    }

    /* Ensure anchor links in the language list are centered too */
    .lang-dropdown__list a,
    .lang-dropdown__list .lang-dropdown__link {
        display: block;
        width: 100%;
        padding: 10px 20px;
        text-align: center;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
    }

    /* =========================================
    СТРАНИЦА ОРГАНИЗАТОРА И ПРЕВЬЮ
    ========================================= */

    .organizer-preview {
        background: var(--bg-light);
        padding: 60px 0;
    }

    .organizer-preview__inner {
        background: var(--bg-soft);
        border: 1px solid var(--line);
        border-radius: var(--radius-xl);
        padding: 50px 40px;
        text-align: center;
        box-shadow: var(--shadow-strong);
        backdrop-filter: blur(10px);
    }

    .organizer-preview__content h2 {
        color: var(--text);
        margin-bottom: 24px;
    }

    .organizer-preview__text {
        max-width: 800px;
        margin: 0 auto 34px;
        font-size: 18px;
        line-height: 1.65;
        color: var(--muted);
    }

    .organizer-page-hero {
        min-height: 40vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: linear-gradient(180deg, rgba(8, 48, 106, 0.5), rgba(8, 48, 106, 0.85)), url('assets/bg/bg_animation.gif') center/cover no-repeat;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .organizer-page-hero h1 {
        font-size: clamp(40px, 4.5vw, 68px);
        font-weight: 900;
        color: var(--text);
        letter-spacing: -0.02em;
        margin: 0;
    }

    .organizer-content {
        background: linear-gradient(180deg, var(--clr-primary-50) 0%, var(--clr-primary-100) 100%);
        color: var(--text-dark);
        padding: 90px 0;
    }

    .organizer-content__grid {
        display: flex;
        grid-template-columns: 0.5fr 1.5fr;
        gap: 60px;
        align-items: center;
    }

    .organizer-content__logo-wrapper {
        background: var(--clr-surface-light);
        border-radius: var(--radius-xl);
        width: 196px;
        height: 196px;
        box-shadow: var(--shadow-card);
        border: 1px solid var(--clr-border-soft);
        justify-content: center;
        align-items: center;
    }

    .organizer-content__logo {
        width: 196px;
        height: 196px;
        object-fit: contain;
    }

    .organizer-content__text {
        font-size: 19px;
        line-height: 1.8;
        color: var(--clr-primary-700);
        font-weight: 600;
    }

    .organizer-video {
        padding: 40px 0;
        text-align: center;
    }

    .organizer-video__title {
        color: var(--text-dark);
        margin-bottom: 40px;
    }

    .organizer-video__container {
        position: relative;
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
        aspect-ratio: 16 / 9;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: 0 0 40px rgba(57, 213, 243, 0.25);
        border: 2px solid var(--accent);
    }

    .organizer-video__container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    /* ==========================================================================
    PROGRAM PAGE (NEW)
    ========================================================================== */


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

    .program__map-btn {
        white-space: nowrap;
    }

    .program__table-wrapper {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-md);
        overflow: hidden;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    /* =========================================
    PROGRAM MAP SECTION
    ========================================= */

    .program__map-title {
        font-size: 58px;
        line-height: 1.08;
        letter-spacing: -0.03em;
        padding: 20px;
        font-weight: 900;
        color: var(--clr-primary-800);
    }

    .program-map {
        padding: 60px 0 90px;
        background: #f8fafc;
    }

    .program-map__container {
        width: 100%;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-card);
        border: 2px solid var(--clr-border-soft);
        aspect-ratio: 16 / 6;
    }

    .program-map__container iframe {
        width: 100%;
        height: 100%;
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* =========================================
    PROGRAM RESPONSIVE (MOBILE CARDS)
    ========================================= */
    /* --- RESPONSIVE ARCHITECTURE (Desktop-first) --- */

    /* 1. TABLETS (1024px) */
    @media (max-width: 1024px) {
        :root {
            --header-h: 84px;
        }

        .container {
            width: 94%;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 48px;
        }

        .header__inner {
            gap: 15px;
        }


        .partners__grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .footer__inner {
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

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

        .organizer-content__logo-wrapper {
            max-width: 400px;
            margin: 0 auto;
        }
    }

    /* 2. SMARTPHONES (768px) */
    @media (max-width: 768px) {
        :root {
            --header-h: 70px;
        }

        .section {
            padding: 60px 0;
        }

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

        .section-subtitle {
            font-size: 16px;
        }

        /* Navigation */
        .header .nav,
        .header .lang-dropdown {
            display: none;
        }

        .nav-toggle {
            display: flex;
        }


        .hero h1 {
            font-size: 38px;
        }

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

        .partners__grid,
        .footer__inner,
        .organizer-content__grid,
        .about__meta-grid,
        .about__highlights {
            grid-template-columns: 1fr;
        }

        .program-cta__box {
            flex-direction: column;
            text-align: center;
            padding: 32px 20px;
            border-radius: var(--radius-lg);
        }

        .program-cta__image {
            flex: none;
            width: 100%;
            max-width: 320px;
            order: -1;
            margin-bottom: 20px;
        }

        .program-cta__content p {
            font-size: 15px;
            margin-bottom: 24px;
        }

        /* Program Table (Mobile Cards) */
        .program__tabs {
            grid-template-columns: repeat(2, 1fr);
        }

        .program__table-wrapper {
            background: transparent;
            border: none;
            box-shadow: none;
            backdrop-filter: none;
        }

        .program__table,
        .program__table thead,
        .program__table tbody,
        .program__table th,
        .program__table td,
        .program__table tr {
            display: block;
        }

        .program__table thead {
            display: none;
        }

        .program__table tr {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            padding: 20px;
        }

        .program__table td {
            border: none;
            padding: 0;
            width: 100% !important;
        }

        .program__table td.time {
            margin-bottom: 10px;
            padding-bottom: 8px;
            border-bottom: 1px dashed var(--line);
            color: var(--accent);
        }

        /* Footer Map */
        .footer__map {
            height: 240px;
        }

        /* Global Media */
        img, video, iframe {
            max-width: 100%;
            height: auto;
        }

        .about__materials-inner {
            padding: 24px 16px;
            border-radius: var(--radius-lg);
        }

        .program-map__container {
            aspect-ratio: 1 / 1;
        }
    }

    /* --- ОБЩИЕ СТИЛИ ДЛЯ NAV (ССЫЛКИ И КНОПКА ГИДА) --- */
    .nav a,
    .nav-dropdown__btn {
        position: relative; /* База для позиционирования линии */
        font-weight: 700;
        color: var(--text);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        padding: 5px 0; /* Немного места для линии снизу */
        transition: color 0.3s ease;
        cursor: pointer;
        background: transparent;
        border: none;
    }

    .nav-dropdown__btn span {
        font-size: clamp(14px, 1.0vw, 24px);
        font-weight: 700;
        color: var(--text);
        text-align: center;
        position: relative;
        text-decoration: none;
        min-width: 0;
        transition: color 0.3s ease;
        gap: 6px;
        line-height: 1.2;
    }

    /* Эффект точки перед текстом */
    .nav a::before,
    .nav-dropdown__btn::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: var(--accent);
        box-shadow: 0 0 8px var(--accent);
        margin-right: 10px;
        flex-shrink: 0;
    }

    /* --- ПЛАВНАЯ ЛИНИЯ ПРИ НАВЕДЕНИИ --- */
    .nav a::after,
    .nav-dropdown__btn::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0; /* Линия прижата к низу */
        width: 0;
        height: 2px;
        background-color: var(--accent);
        box-shadow: 0 0 8px var(--accent);
        transition: width 0.3s ease; /* Плавность появления */
    }

    .nav a:hover,
    .nav-dropdown__btn:hover {
        color: var(--accent);
        opacity: 1;
    }

    /* --- КОРРЕКТИРОВКА ДРОПДАУНА --- */
    .nav-dropdown {
        position: relative;
        display: flex;
        align-items: center;
    }

    /* Иконка стрелочки рядом с "Гид для участника" */
    .nav-dropdown__btn svg {
        transition: transform 0.3s ease;
    }

    .nav-dropdown:hover .nav-dropdown__btn svg {
        transform: rotate(180deg); /* Стрелочка переворачивается при открытии */
    }

    /* Список внутри дропдауна */
    .nav-dropdown__list {
        position: absolute;
        top: 100%;
        left: 50%;
        list-style: none;
        transform: translateX(-50%) translateY(15px);
        background: rgba(8, 48, 106, 0.95);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        min-width: 180px;
        padding: 8px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }

    .nav-dropdown:hover .nav-dropdown__list {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(5px);
    }

    /* --- КНОПКА МУЗЫКИ --- */
    .music-btn {
        position: fixed;
        bottom: 30px;
        left: 30px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(57, 213, 243, 0.1);
        border: 1px solid var(--accent);
        backdrop-filter: blur(10px);
        cursor: pointer;
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 0 15px var(--accent);
    }

    .music-btn:hover {
        transform: scale(1.1);
        background: rgba(57, 213, 243, 0.2);
    }

    /* Анимация "Эквалайзер" при игре */
    .music-btn__icon {
        display: flex;
        align-items: flex-end;
        gap: 3px;
        height: 15px;
    }

    .music-btn__icon .bar {
        width: 3px;
        height: 100%;
        background-color: var(--accent);
        border-radius: 10px;
        transition: height 0.3s ease;
    }

    /* Анимация баров, когда музыка играет */
    .music-btn.playing .bar {
        animation: music-bars 0.8s infinite alternate;
    }

    .music-btn.playing .bar:nth-child(2) {
        animation-delay: 0.2s;
    }

    .music-btn.playing .bar:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes music-bars {
        0% {
            height: 3px;
        }
        100% {
            height: 100%;
        }
    }

    /* Если музыка на паузе, бары просто замирают */
    .music-btn:not(.playing) .bar {
        height: 3px;
    }

    /* --- КНОПКА МУЗЫКИ (НИЖНЯЯ) --- */
    .music-btn {
        position: fixed;
        right: 30px; /* Переместили направо */
        bottom: 30px; /* Самая нижняя точка */
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(8, 48, 106, 0.8);
        border: 1px solid var(--accent);
        backdrop-filter: blur(10px);
        cursor: pointer;
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 0 15px var(--accent-glow);
    }

    /* --- КНОПКА НАВЕРХ (ВЕРХНЯЯ) --- */
    .back-to-top {
        position: fixed;
        right: 30px; /* Тот же отступ справа */
        /* 30px (отступ музыки) + 50px (высота кнопки музыки) + 10px (зазор) = 90px */
        bottom: 90px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--bg-dark);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;

        /* Состояние по умолчанию (скрыта) */
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    /* Когда кнопка становится видимой (через JS класс is-visible) */
    .back-to-top.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Ховер эффекты */
    .music-btn:hover,
    .back-to-top:hover {
        transform: scale(1.1);
        border-color: var(--accent);
        box-shadow: 0 0 20px var(--accent);
    }

    .back-to-top:hover {
        background: var(--accent);
        color: var(--bg-deep);
    }

    /* --- СЕКЦИЯ ОРГАНИЗАТОРА НА ГЛАВНОЙ --- */
    .organizer-home {
        background: var(--bg-light); /* Светлый фон для зебры */
        color: var(--text-dark);
    }

    .organizer-home__grid {
        display: grid;
        padding-top: 24px;
        grid-template-columns: 248px 1fr;
        gap: 60px;
        align-items: start;
    }
    /* Исправленный контейнер логотипа */
    .organizer-home__logo-card {
        background: var(--clr-surface-light);
        border-radius: var(--radius-xl);
        padding: 40px;
        border: 1px solid var(--clr-border-soft);
        box-shadow: var(--shadow-card);
        display: flex;
        justify-content: center;
        align-items: center;
        aspect-ratio: 1 / 1;
        margin-top: 12px;
        position: sticky;
        top: 120px;
    }

    .organizer-home__logo {
        margin-top: 16px;
        width: 100%;
        height: auto;
        object-fit: contain; /* Логотип не деформируется */
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.05));
    }

    .organizer-home__content .section-title {
        color: var(--bg-deep);
        margin-top: 0;
        margin-bottom: 24px;
        line-height: 1; /* Делает верхнюю границу текста ровной */
    }

    .organizer-home__text {
        font-size: 26px;
        line-height: 1.7;
        font-weight: 500;
        color: var(--clr-text-soft);
        margin-bottom: 32px;
    }

    /* Адаптивность для мобильных */
    @media (max-width: 1024px) {
        .organizer-home__grid {
            gap: 40px;
            grid-template-columns: 280px 1fr;
        }
    }

    @media (max-width: 768px) {
        .organizer-home__grid {
            grid-template-columns: 1fr; /* Стак в колонку на мобилках */
            text-align: center;
        }

        .organizer-home__logo-card {
            max-width: 260px;
            margin: 0 auto;
        }

        .organizer-home__actions {
            display: flex;
            justify-content: center;
        }
    }


    .about__materials-inner h2 {
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--text);
        margin-bottom: 16px;
    }

    /* Основной контейнер бренда */
    .main-brand {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        font-family: 'Montserrat', sans-serif; /* Или ваш основной шрифт */
    }

    /* Левая колонка (Digital Archive) */
    .brand-left {
        display: flex;
        flex-direction: column;
        align-items: start; /* Выравнивание к разделителю */
        text-transform: uppercase;
        line-height: 0.9;
        font-weight: 800; /* Тонкий шрифт для контраста */
        font-size: 5em;
        letter-spacing: 1px;
        color: #ffffff;
    }

    /* Разделитель */
    .brand-divider {
        width: 2px;
        height: 70px; /* Высота подбирается под шрифт */
        background: linear-gradient(to bottom, transparent, #ff9d00, transparent);
    }

    /* Правая колонка (EXPO) */
    .brand-right {
        font-size: 8rem; /* Очень крупно */
        font-weight: 900;
        line-height: 1;
        text-transform: uppercase;
        color: #44d800; /* Акцентный оранжевый */
        letter-spacing: -2px;
    }

    /* Подзаголовок (Конгресс) */
    .hero__subtitle {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--text);
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 30px;
    }

    .hero {
        min-height: calc(100vh - var(--header-h));
        display: flex;
        align-items: center !important; /* Центрируем по вертикали */
        justify-content: flex-start; /* Прижимаем контент к левому краю */
        position: relative;
        overflow: hidden;
        background: #08306a; /* Резервный цвет, если видео долго грузится */
        text-align: left; /* Выравнивание текста влево */
        padding: 0 4% !important; /* Отступы по бокам */
    }

    /* Убираем старые псевдоэлементы затемнения */
    .hero::before,
    .hero::after {
        display: none !important;
    }

    .hero__video-bg {
        position: absolute;
        top: 0;
        right: -2%;
        left: auto;
        width: 80%;
        height: 100%;
        object-fit: contain;
        object-position: right center;
        z-index: 0;

        /* САМАЯ ГЛАВНАЯ МАГИЯ: */
        mix-blend-mode: inherit; /* Черное небо исчезнет, останется только светящийся шар! */
        opacity: 0.9; /* Слегка смягчаем свечение, чтобы оно идеально вписалось */

        /* Мягко растворяем только левый край (чтобы видео плавно уходило под текст) */
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
        mask-image: linear-gradient(to right, transparent 0%, black 30%);
    }


    .brand-left span {
        display: block; /* Обязательно для работы ::first-letter */
    }

    .brand-left span::first-letter {
        color: #44d800;
    }

    .hero__color-tint {
        position: absolute;
        inset: 0;
        /* Градиент от голубого к темно-синему */
        background: linear-gradient(180deg, #1f75d1 0%, #08306a 100%);
        /* Это главное свойство! Заменяет черный цвет на фон выше */
        mix-blend-mode: screen;
        opacity: 0.01; /* Сила окрашивания (от 0 до 1) */
        z-index: 1;
    }

    /* Убедитесь, что у overlay z-index больше, чем у tint */
    .hero__overlay {
        z-index: 2; /* Было 1, сделайте 2 */
    }

    .hero__content {
        z-index: 3; /* Было 2, сделайте 3 */
    }

    .hero h1,
    .hero__text,
    .hero__meta,
    .hero__countdown {
        max-width: 100%;
        margin-left: 0; /* Убираем авто-отступы */
    }

    /* Обновляем сам блок Hero */
    .hero {
        min-height: calc(100vh - var(--header-h));
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        overflow: hidden;
        background: #08306a;
        text-align: left;
        /* Увеличиваем отступ слева, чтобы текст не прилипал к краю экрана */
        padding: 0 6% !important;
    }

    /* Обновляем фоновое видео */
    .hero__video-bg {
        position: absolute;
        top: 0;
        right: 0; /* Прижимаем вплотную к правому краю */
        width: 70%; /* Занимает большую часть экрана */
        height: 100%; /* Растягиваем на всю высоту секции */
        object-fit: cover; /* КРИТИЧНО: видео заполнит всю высоту без черных полос */
        object-position: center right; /* Центрируем важную часть видео (шар) справа */
        z-index: 0;
        opacity: 0.8;

        /* Маска для более плавного исчезновения видео под текстом */
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%);
        mask-image: linear-gradient(to right, transparent 0%, black 40%);
    }

    /* Настраиваем ширину текстовых блоков */
    .hero h1,
    .hero__text,
    .hero__meta,
    .hero__countdown,
    .main-brand {
        max-width: 700px; /* Фиксируем ширину, чтобы текст не налезал на центр видео */
        margin-left: 0 !important;
        text-align: left;
    }


    /* =========================================
    RESPONSIVE ARCHITECTURE (Адаптивность)
    ========================================= */

    /* 1. TABLETS (Планшеты и небольшие ноутбуки ~ 1024px) */
    @media (max-width: 1024px) {
        :root {
            --header-h: 84px;
            --section-title-size: 48px;
        }

        .container {
            width: 94%;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 42px;
        }

        .header__inner {
            gap: 15px;
        }

        .nav a {
            font-size: 20px; /* Уменьшаем шрифт меню */
        }

        .hero h1 {
            font-size: 48px;
        }


        .organizer-home__grid,
        .organizer-content__grid {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 30px;
        }

        .organizer-home__logo-card {
            margin: 0 auto;
            max-width: 300px;
        }

        .partners__grid {
            grid-template-columns: repeat(3, 1fr);
        }

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

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

    /* 2. SMARTPHONES (Телефоны ~ 768px) */
    @media (max-width: 768px) {
        :root {
            --header-h: 70px;
        }

        .section {
            padding: 60px 0;
        }

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

        .section-subtitle {
            font-size: 16px;
        }

        /* Header и Мобильное меню */
        .header .nav,
        .header .lang-dropdown {
            display: none; /* Скрываем десктопное меню */
        }

        .nav-toggle {
            display: flex; /* Показываем бургер */
        }

        /* Hero (Главный экран) */
        .hero {
            justify-content: center;
            padding: 0 16px !important;
            text-align: center;
        }

        .hero__content {
            max-width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero__video-bg {
            width: 100%;
            opacity: 0.3;
            -webkit-mask-image: none;
            mask-image: none;
            object-position: center;
        }

        .main-brand {
            flex-direction: column;
            gap: 5px;
        }

        .brand-left {
            font-size: 2.5rem;
            align-items: center;
            line-height: 1.1;
        }

        .brand-divider {
            width: 100px;
            height: 2px;
            background: linear-gradient(to right, transparent, #ff9d00, transparent);
            margin: 10px 0;
        }

        .brand-right {
            font-size: 3.5rem;
        }

        .hero__subtitle {
            font-size: 1.2rem;
            letter-spacing: 2px;
        }

        .hero__text {
            font-size: 15px;
        }

        .hero__countdown-grid {
            grid-template-columns: repeat(2, 1fr); /* Таймер 2x2 вместо 4x1 */
        }

        /* Сетки контента */
        .about__meta-grid,
        .about__highlights,
        .partners__grid {
            grid-template-columns: 1fr;
        }

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

        /* Блок CTA Программы */
        .program-cta__box {
            flex-direction: column;
            text-align: center;
            padding: 30px 20px;
        }

        .program-cta__image {
            width: 100%;
            order: -1;
            margin-bottom: 20px;
        }

        /* Таблица программы -> Карточки */
        .program__table-wrapper {
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
        }

        .program__table,
        .program__table tbody,
        .program__table tr,
        .program__table td {
            display: block;
            width: 100%;
        }

        .program__table thead {
            display: none; /* Скрываем шапку таблицы */
        }

        .program__table tr {
            background: var(--surface-light);
            border: 1px solid var(--clr-border-soft);
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            padding: 16px;
            box-shadow: var(--shadow-card);
        }

        .program__table td {
            border: none !important;
            padding: 8px 0 !important;
            font-size: 16px !important;
            text-align: left !important;
        }

        .program__table .time {
            font-size: 18px !important;
            color: var(--clr-primary-600) !important;
            border-bottom: 1px dashed var(--clr-border-muted) !important;
            margin-bottom: 10px;
            padding-bottom: 10px !important;
        }

        .program__break {
            background: var(--clr-primary-50) !important;
            text-align: center !important;
        }

        .program__break td {
            text-align: center !important;
        }

        .program__location {
            font-size: 16px;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        /* Footer */
        .footer__inner {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .footer__map {
            height: 250px;
        }

        /* Отступы кнопок */
        .music-btn {
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
        }

        .back-to-top {
            bottom: 75px;
            right: 20px;
            width: 45px;
            height: 45px;
            font-size: 20px;
        }
    }

    /* 3. SMALL PHONES (Узкие экраны ~ 480px) */
    @media (max-width: 480px) {
        .brand-left {
            font-size: 2rem;
        }

        .brand-right {
            font-size: 2.8rem;
        }

        .hero__subtitle {
            font-size: 1rem;
        }

        .hero__countdown-value {
            font-size: 24px;
        }

        .program__tabs {
            grid-template-columns: 1fr; /* Табы расписания друг под другом */
        }

        .about-gallery__thumb {
            flex: 0 0 80px; /* Уменьшаем миниатюры галереи */
        }
    }

    /* =========================================
    RESPONSIVE ARCHITECTURE (Адаптивность)
    ========================================= */

    /* 1. TABLETS (Планшеты ~ 1024px) */
    @media (max-width: 1024px) {
        :root {
            --header-h: 84px;
        }

        .container {
            width: 94%;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 40px;
        }

        .header__inner {
            gap: 15px;
        }

        .nav a {
            font-size: 16px;
        }

        .brand-left {
            font-size: 3rem;
        }

        .brand-right {
            font-size: 4.5rem;
        }

        .organizer-home__grid,
        .organizer-content__grid {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 30px;
        }

        .organizer-home__logo-card {
            margin: 0 auto;
            max-width: 240px;
        }

        .partners__grid {
            grid-template-columns: repeat(3, 1fr);
        }

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

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

    /* 2. SMARTPHONES (Телефоны ~ 768px) */
    @media (max-width: 768px) {
        :root {
            --header-h: 70px;
        }

        .section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 28px;
        }

        .section-subtitle {
            font-size: 15px;
        }

        /* --- Шапка (Header) --- */
        .header .nav,
        .header .lang-dropdown {
            display: none;
        }

        .nav-toggle {
            display: flex;
        }

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

        .header__left {
            max-width: 80%; /* Оставляем место для кнопки меню */
        }

        .header__logo {
            width: clamp(40px, 12vw, 56px);
            height: clamp(40px, 12vw, 56px);
        }

        .header__brand strong {
            font-size: 14px;
            white-space: normal; /* Разрешаем перенос текста! */
            line-height: 1.2;
        }

        .header__brand span {
            white-space: normal; /* Разрешаем перенос текста! */
            font-size: 11px;
        }

        /* --- Мобильное боковое меню (Drawer) --- */
        .nav-drawer .nav-dropdown {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            width: 100%;
        }

        .nav-drawer .nav-dropdown__btn {
            width: 100%;
            justify-content: space-between;
        }

        /* Принудительно показываем выпадающий список в мобильном меню */
        .nav-drawer .nav-dropdown__list {
            position: static !important;
            opacity: 1 !important;
            visibility: visible !important;
            transform: none !important;
            display: flex;
            flex-direction: column;
            background: transparent;
            box-shadow: none;
            padding: 5px 0 5px 15px;
            border: none;
            width: 100%;
        }

        .nav-drawer .nav-dropdown__list a {
            font-size: 14px;
            padding: 10px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* --- Главный экран (Hero) и таймер --- */
        .hero {
            height: auto;
            min-height: 100vh;
            justify-content: center;
            padding: 100px 16px 40px !important; /* Даем отступы сверху и снизу */
            text-align: center;
            overflow: visible; /* Отключаем обрезку, чтобы таймер влез! */
        }

        .hero__content {
            max-width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero__video-bg {
            width: 100%;
            opacity: 0.3;
            -webkit-mask-image: none;
            mask-image: none;
            object-position: center;
        }

        .main-brand {
            flex-direction: column;
            gap: 5px;
        }

        .brand-left {
            font-size: 2.2rem;
            align-items: center;
            line-height: 1.1;
        }

        .brand-divider {
            width: 100px;
            height: 2px;
            background: linear-gradient(to right, transparent, #ff9d00, transparent);
            margin: 10px 0;
        }

        .brand-right {
            font-size: 3rem;
        }

        .hero__subtitle {
            font-size: 1.1rem;
            letter-spacing: 1px;
        }

        .hero__text {
            font-size: 15px;
            margin-bottom: 20px;
        }

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

        /* --- Секция "О Конгрессе" --- */
        .about__intro {
            flex-direction: column; /* Элементы друг под другом! */
            text-align: center;
            gap: 16px;
        }

        .about__animated-logo {
            width: 130px;
            height: 130px;
        }

        .about__intro-text {
            padding: 0;
        }

        .about__intro-text .section-subtitle {
            padding: 0;
        }

        /* --- Секция "Об организаторе" --- */
        .organizer-home__logo-card {
            max-width: 160px; /* Сильно уменьшаем лого архива */
            padding: 20px;
            margin: 0 auto;
        }

        /* --- Сетки контента --- */
        .about__meta-grid,
        .about__highlights,
        .partners__grid {
            grid-template-columns: 1fr;
        }

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

        /* --- Блок CTA Программы --- */
        .program-cta__box {
            flex-direction: column;
            text-align: center;
            padding: 30px 20px;
        }

        .program-cta__image {
            width: 100%;
            order: -1;
            margin-bottom: 20px;
        }

        /* --- Программа (Карточки на мобилках) --- */
        .program__table-wrapper {
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
        }

        .program__table,
        .program__table tbody,
        .program__table tr,
        .program__table td {
            display: block;
            width: 100%;
        }

        .program__table thead {
            display: none;
        }

        .program__table tr {
            background: #ffffff !important; /* Ярко-белый фон для карточки */
            border: 1px solid var(--clr-border-muted) !important;
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            padding: 16px;
            box-shadow: var(--shadow-card);
        }

        /* Жестко перекрашиваем текст в карточках, чтобы он не сливался */
        .program__table td,
        .program__table td strong {
            border: none !important;
            padding: 6px 0 !important;
            font-size: 16px !important;
            text-align: left !important;
            color: #08306a !important; /* Темно-синий текст */
        }

        .program__table .time {
            font-size: 18px !important;
            font-weight: 800 !important;
            color: #0d5ea7 !important; /* Голубой акцент для времени */
            border-bottom: 1px dashed #cfe0f2 !important;
            margin-bottom: 10px;
            padding-bottom: 10px !important;
        }

        .program__break {
            background: #eef7ff !important;
        }

        .program__break td,
        .program__break strong {
            text-align: center !important;
            color: #0d5ea7 !important;
        }

        .program__location {
            font-size: 16px;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        /* --- Подвал (Footer) --- */
        .footer__inner {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .footer__brand {
            flex-direction: column; /* Логотип и текст друг под другом */
            align-items: center;
            text-align: center;
        }

        .footer__logo {
            width: 100px;
            margin-bottom: 12px;
        }

        .footer__map {
            height: 250px;
        }

        /* --- Отступы плавающих кнопок --- */
        .music-btn {
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
        }

        .back-to-top {
            bottom: 75px;
            right: 20px;
            width: 45px;
            height: 45px;
            font-size: 20px;
        }
    }

    /* 3. SMALL PHONES (Узкие экраны ~ 480px) */
    @media (max-width: 480px) {
        .section-title {
            font-size: 24px;
        }

        .brand-left {
            font-size: 1.8rem;
        }

        .brand-right {
            font-size: 2.5rem;
        }

        .hero__subtitle {
            font-size: 1rem;
        }

        .hero__countdown-value {
            font-size: 22px;
        }

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

        .about-gallery__thumb {
            flex: 0 0 80px;
        }
    }

    .organizer-home__grid {
        display: grid;
        grid-template-columns: 248px 1fr;
        gap: 60px;
        align-items: start; /* Выравниваем элементы по верхнему краю */
    }

    .organizer-home__logo-card {
        border-radius: var(--radius-xl);

    /* Старую обертку .organizer-video можно вообще удалить из CSS */

        padding: 40px;
        border: 1px solid var(--clr-border-soft);
        box-shadow: var(--shadow-card);
        display: flex;
        justify-content: center;
        align-items: center;
        aspect-ratio: 1 / 1;
        position: sticky; /* Логотип будет ехать за экраном, пока читают текст и смотрят видео */
        top: 120px;
    }

    .organizer-video__container {
        position: relative;
        width: 100%;
        margin-top: 40px; /* Отступ от текста */
        aspect-ratio: 16 / 9;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: 0 0 40px rgba(57, 213, 243, 0.25);
        border: 2px solid var(--accent);
    }

    .organizer-video__container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    /* --- Адаптация дропдауна для футера --- */
    .footer-dropdown {
        justify-content: flex-start; /* Выравниваем по левому краю */
    }

    /* Стилизуем кнопку, чтобы она выглядела как остальные ссылки футера */
    .footer-dropdown .nav-dropdown__btn {
        padding: 0;
        color: var(--clr-text-link);
        font-weight: 600;
        font-size: 16px;
        line-height: 1.7;
    }

    /* Убираем подчеркивание и точку, если они наследуются из .nav a */
    .footer-dropdown .nav-dropdown__btn::before,
    .footer-dropdown .nav-dropdown__btn::after {
        display: none;
    }

    /* Меняем направление открытия: открываем меню ВВЕРХ */
    .footer-dropdown .nav-dropdown__list {
        top: auto;
        bottom: 100%;
        left: 0;
        transform: translateY(10px); /* Смещение вниз для анимации */
    }

    .footer-dropdown:hover .nav-dropdown__list {
        transform: translateY(-5px); /* Поднимаем вверх при наведении */
    }

    /* Стрелочка переворачивается в нужную сторону (раз меню открывается вверх) */
    .footer-dropdown .nav-dropdown__btn svg {
        transform: rotate(180deg);
    }
    .footer-dropdown:hover .nav-dropdown__btn svg {
        transform: rotate(0deg);
    }


    /* 1. Главный текстовый логотип (Digital Archive EXPO) */
    .main-brand {
        display: flex;
        justify-content: flex-start; /* Было center */
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        font-family: 'Montserrat', sans-serif;
        max-width: 700px;
        margin-left: 0 !important;
        text-align: left;
    }

    /* 2. Блок с датой и городом */
    .hero__meta {
        display: flex;
        justify-content: flex-start; /* Было center */
        flex-direction: column; /* Если хотите чтобы они были в ряд, измените на row */
        align-items: flex-start; /* Было center */
        gap: 12px;
        margin-top: 24px;
        margin-bottom: 24px;
        flex-wrap: wrap;
        max-width: 700px;
        margin-left: 0 !important;
        text-align: left;
    }

    /* 3. Мобильная адаптация (до 768px) */
    @media (max-width: 768px) {
        .hero {
            justify-content: flex-start; /* Было center */
            text-align: left; /* Было center */
            padding: 100px 16px 40px !important;
        }

        .hero__content {
            max-width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start; /* Было center */
        }

        .main-brand {
            flex-direction: column;
            gap: 5px;
            align-items: flex-start; /* Было center */
        }

        .brand-left {
            align-items: flex-start; /* Было center */
        }
    }

    /* Контейнер для логотипа в Hero */
    .hero__main-logo-container {
        width: 100%;
        max-width: 1100px; /* Ограничиваем, чтобы не налезало на видео-шар */
        margin-bottom: 20px;
        display: flex;
        justify-content: flex-start;
        margin-left: -50px;
    }

    .hero__main-logo {
        width: 100%;
        height: auto;
        object-fit: contain;
        /* Если у логотипа есть белый фон, можно добавить mix-blend-mode: screen или lighten */
    }

    /* Принудительное выравнивание всего контента Hero влево */
    .hero__content {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        text-align: left !important;
        z-index: 3;
    }

    /* Убираем отступы у мета-данных (дата/город) */
    .hero__meta {
        margin-left: 0 !important;
        padding-left: 0 !important;
        align-items: flex-start !important;
    }

    /* Адаптив для мобилок */
    @media (max-width: 768px) {
        .hero__main-logo-container {
            max-width: 100%; /* На мобилках логотип может быть шире */
            padding-right: 20px;
        }
        
        .hero {
            padding: 0 6% !important; /* Сохраняем отступ от края экрана */
        }
    }


/* ==========================================================================
   DEFINITIVE RESPONSIVE ARCHITECTURE
   Tablet  → @media (max-width: 1024px)
   Mobile  → @media (max-width: 768px)
   Compact → @media (max-width: 480px)
   ========================================================================== */

/* ─── TABLET ADAPTATION (max-width: 1024px) ─────────────────────────────── */
@media (max-width: 1024px) {

    /* ── Root tokens ── */
    :root {
        --header-h: 80px;
    }

    /* ── Global layout ── */
    .container { width: 94%; }
    .section   { padding: 80px 0; }

    /* ── Typography ── */
    .section-title    { font-size: clamp(30px, 4vw, 46px); }
    .section-subtitle { font-size: 17px; }

    .about__intro-text p { font-size: 20px; }

    /* ── Header ── */
    .header__inner {
        gap: 12px;
    }

    .header__logo {
        width: clamp(60px, 7vw, 84px);
        height: clamp(60px, 7vw, 84px);
    }

    .header__brand strong { font-size: clamp(13px, 1vw, 20px); }
    .header__brand span   { font-size: clamp(9px,  0.9vw, 13px); }

    /* Shrink nav dot markers so items fit */
    .nav a { font-size: clamp(12px, 1.0vw, 16px); gap: 4px; }
    .nav a::before { width: 5px; height: 5px; margin-right: 6px; }

    /* ── Hero ── */
    .hero { padding: 0 5% !important; }

    .hero h1,
    .hero__text,
    .hero__meta,
    .hero__countdown,
    .main-brand { max-width: 560px; }

    .brand-left  { font-size: 3.2rem; }
    .brand-right { font-size: 5rem; }
    .hero__subtitle { font-size: 1.8rem; }

    /* ── About section ── */
    .about__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about__aside { justify-content: center; }
    .about-gallery { max-width: 100%; }

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

    .about__animated-logo { width: 140px; height: 140px; }

    /* ── Organizer home ── */
    .organizer-home__grid {
        grid-template-columns: 200px 1fr;
        gap: 36px;
    }

    .organizer-home__text  { font-size: 20px; }

    /* ── Materials / History ── */
    .materials-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
        gap: 24px;
    }

    /* ── Program ── */
    .program__tabs {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        gap: 10px;
    }

    .program__tab strong { font-size: 20px; }
    .program__tab span   { font-size: 14px; }

    .program__table th,
    .program__table td   { font-size: 18px !important; padding: 16px !important; }
    .program__table .time { width: 150px; font-size: 16px; }

    .program__location   { font-size: 18px; }

    /* ── Program CTA ── */
    .program-cta__box {
        gap: 28px;
        padding: 44px;
    }

    .program-cta__content p { font-size: 18px; }

    /* ── Partners ── */
    .partners__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    /* ── Footer ── */
    .footer__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .footer__col--map {
        grid-column: 1 / -1;   /* Map spans full width on tablet */
    }

    .footer__map { height: 260px; }

    /* ── Speakers ── */
    .speakers__track { padding: 6px 36px 14px; }
    .speaker-tile    { flex: 0 0 220px; }
}


/* ─── MOBILE ADAPTATION (max-width: 768px) ───────────────────────────────── */
@media (max-width: 768px) {

    /* ── Root tokens ── */
    :root {
        --header-h: 64px;
    }

    /* ── Global layout ── */
    .container { width: 92%; }
    .section   { padding: 56px 0; }

    /* Touch target floor */
    a, button { min-height: 44px; }

    /* Prevent horizontal overflow */
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }

    /* ── Typography ── */
    .section-title    { font-size: clamp(22px, 7vw, 30px); line-height: 1.15; }
    .section-subtitle { font-size: 15px; line-height: 1.7; }
    .about__intro-text p { font-size: 16px; }

    /* ── Header ── */
    .header__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
    }

    /* Hide desktop nav & lang picker; show hamburger */
    .header .nav,
    .header .lang-dropdown { display: none; }

    .nav-toggle { display: flex; }

    .header__left { max-width: calc(100% - 56px); }

    .header__logo {
        width: clamp(36px, 10vw, 50px);
        height: clamp(36px, 10vw, 50px);
    }

    .header__brand strong {
        font-size: clamp(11px, 3.5vw, 14px);
        white-space: normal;
        line-height: 1.2;
    }

    .header__brand span {
        font-size: clamp(9px, 2.8vw, 11px);
        white-space: normal;
    }

    /* ── Mobile drawer refinements ── */
    .nav-drawer .nav-dropdown {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-drawer .nav-dropdown__list {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: flex;
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 4px 0 4px 14px;
        width: 100%;
    }

    .nav-drawer .nav-dropdown__list a {
        font-size: 14px;
        padding: 10px;
        min-height: 44px;
        color: rgba(255, 255, 255, 0.9);
    }

    /* ── Hero ── */
    .hero {
        min-height: 100svh;
        justify-content: center;
        text-align: center;
        padding: 96px 5% 48px !important;
        overflow: visible;
    }

    .hero__video-bg {
        width: 100%;
        right: 0;
        opacity: 0.25;
        -webkit-mask-image: none;
        mask-image: none;
        object-position: center;
        object-fit: cover;
    }

    .hero__content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1,
    .hero__text,
    .hero__meta,
    .hero__countdown,
    .main-brand {
        max-width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center;
    }

    .hero__main-logo-container {
        max-width: 100%;
        margin-left: 0;
        padding-right: 0;
        justify-content: center;
    }

    .main-brand {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .brand-left {
        font-size: 2rem;
        align-items: center;
        line-height: 1.1;
    }

    .brand-divider {
        width: 90px;
        height: 2px;
        background: linear-gradient(to right, transparent, #ff9d00, transparent);
        margin: 8px 0;
    }

    .brand-right  { font-size: 2.8rem; }

    .hero__subtitle {
        font-size: 1.05rem;
        letter-spacing: 1.5px;
        text-align: center;
    }

    .hero__text { font-size: 15px; margin-bottom: 20px; }

    .hero__meta {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 8px;
        margin-left: auto !important;
        padding-left: 0 !important;
    }

    .hero__countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hero__countdown { width: 100%; }

    /* ── About section ── */
    .about__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about__intro {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .about__animated-logo {
        width: 110px;
        height: 110px;
        margin: 0 auto;
    }

    .about__intro-text { padding: 0; }

    .about__meta-grid,
    .about__highlights {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .about-gallery { max-width: 100%; }

    .about-gallery__thumb { flex: 0 0 80px; }

    /* Materials inside About */
    .about__materials-inner {
        padding: 28px 16px;
        border-radius: var(--radius-lg);
    }

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

    /* ── Organizer home ── */
    .organizer-home__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .organizer-home__logo-card,
    .organizer-home__logo {
        max-width: 160px;
        margin: 0 auto;
        padding: 16px;
    }

    .organizer-home__text { font-size: 16px; margin-bottom: 24px; }

    .organizer-home__actions { justify-content: center; }

    /* ── Program section ── */
    .program__tabs {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        gap: 8px;
    }

    .program__tab { padding: 12px 8px; }
    .program__tab strong { font-size: 17px; }
    .program__tab span   { font-size: 13px; }

    /* Table → Card transform */
    .program__table-wrapper {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    .program__table,
    .program__table tbody,
    .program__table tr,
    .program__table td { display: block; width: 100%; }

    .program__table thead { display: none; }

    .program__table tr {
        background: #ffffff !important;
        border: 1px solid var(--clr-border-muted) !important;
        border-radius: var(--radius-md);
        margin-bottom: 14px;
        padding: 16px;
        box-shadow: var(--shadow-card);
    }

    .program__table td,
    .program__table td strong {
        border: none !important;
        padding: 6px 0 !important;
        font-size: 15px !important;
        text-align: left !important;
        color: #08306a !important;
    }

    .program__table .time {
        display: block;
        font-size: 17px !important;
        font-weight: 800 !important;
        color: #0d5ea7 !important;
        border-bottom: 1px dashed #cfe0f2 !important;
        margin-bottom: 10px;
        padding-bottom: 10px !important;
        width: auto !important;
        white-space: normal;
    }

    .program__break { background: #eef7ff !important; }
    .program__break td,
    .program__break strong {
        text-align: center !important;
        color: #0d5ea7 !important;
    }

    .program__location {
        font-size: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        width: 100%;
    }

    /* Program CTA */
    .program-cta__box {
        flex-direction: column;
        text-align: center;
        padding: 28px 18px;
        gap: 20px;
    }

    .program-cta__image {
        flex: none;
        width: 100%;
        max-width: 280px;
        order: -1;
        margin: 0 auto 16px;
    }

    .program-cta__content .section-title { font-size: clamp(22px, 6vw, 30px); }
    .program-cta__content p { font-size: 15px; margin-bottom: 20px; }

    /* Program map */
    .program-map__container { aspect-ratio: 4 / 3; }
    .program__map-title { font-size: clamp(22px, 6vw, 36px); }

    /* ── Partners ── */
    .partners__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .partner-card { padding: 20px 12px; min-height: 120px; }

    /* ── Speakers ── */
    .speakers__track { padding: 6px 10px 14px; }
    .speaker-tile    { flex: 0 0 200px; height: 280px; }

    /* ── Footer ── */
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__col--map { grid-column: auto; }

    .footer__brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__logo {
        width: 88px;
        margin-bottom: 10px;
    }

    .footer__map { height: 240px; }

    .footer__nav { gap: 6px; }

    .footer__socials { justify-content: center; }

    /* ── Floating buttons ── */
    .music-btn, .back-to-top { width: 44px; height: 44px; }
    .music-btn  { right: 16px; bottom: 16px; }
    .back-to-top { right: 16px; bottom: 68px; font-size: 18px; }
}


/* ─── SMALL PHONE PASS (max-width: 480px) ────────────────────────────────── */
@media (max-width: 480px) {

    .section { padding: 44px 0; }

    .section-title { font-size: clamp(19px, 6.5vw, 24px); }

    /* Nav tab overflow → single column */
    .program__tabs { grid-template-columns: 1fr; }

    /* Hero brand text */
    .brand-left   { font-size: 1.7rem; }
    .brand-right  { font-size: 2.4rem; }
    .hero__subtitle { font-size: 0.9rem; letter-spacing: 1px; }
    .hero__countdown-value { font-size: 20px; }

    /* Gallery thumbs */
    .about-gallery__thumb { flex: 0 0 70px; }

    /* Partners — single column on very small phones */
    .partners__grid { grid-template-columns: 1fr; }

    /* Speaker card */
    .speaker-tile { flex: 0 0 180px; height: 260px; }

    /* Footer map shorter */
    .footer__map { height: 200px; }
}

/* Обновленный контейнер плитки */
.speaker-tile {
    position: relative;
    flex: 0 0 280px; /* Немного увеличим ширину для баланса */
    height: 400px;   /* Увеличим высоту, чтобы пропорции лица были лучше */
    overflow: hidden;
    background: #051021;
    border-radius: 18px;
    transition: transform 0.3s ease;
}

.speaker-tile:hover {
    transform: translateY(-5px);
}

/* Настройка изображения: добавляем легкий зум при наведении */
.speaker-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* Важно: фокусируемся на лицах */
    transition: transform 0.5s ease;
}

.speaker-tile:hover img {
    transform: scale(1.05);
}

/* Умный оверлей: градиент начинается ниже и становится плотнее только под текстом */
.speaker-tile__overlay {
    position: absolute;
    inset: 0; /* Растягиваем на всю карточку */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Текст всегда внизу */
    padding: 20px;
    /* Глубокий градиент: прозрачный сверху, плавно темнеет к тексту */
    background: linear-gradient(
        to top,
        rgba(5, 16, 33, 0.95) 0%,
        rgba(5, 16, 33, 0.7) 25%,
        rgba(5, 16, 33, 0) 60%
    );
    transition: all 0.3s ease;
}

/* При наведении поднимем градиент чуть выше для лучшей читаемости длинного описания */
.speaker-tile:hover .speaker-tile__overlay {
    background: linear-gradient(
        to top,
        rgba(5, 16, 33, 0.98) 0%,
        rgba(5, 16, 33, 0.8) 40%,
        rgba(5, 16, 33, 0.2) 100%
    );
}

/* Стили заголовка (ФИО) */
.speaker-tile__overlay h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Стили описания (Должность) */
.speaker-tile__overlay p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    /* Ограничиваем текст 3 строками в обычном состоянии, чтобы не перекрывать фото */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* При наведении показываем весь текст должности */
.speaker-tile:hover .speaker-tile__overlay p {
    -webkit-line-clamp: unset;
    color: #fff;
}