/* # Глобальні стилі - скидання відступів та налаштування box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* # HTML - приховування горизонтального скролу */
html {
    overflow-x: hidden;
}

:root {
    --section-max-width: 1200px;
    --space-page-x: clamp(20px, 6vw, 48px);
    --space-section-top: clamp(140px, 18vh, 220px);
    --space-section-bottom: clamp(90px, 12vh, 160px);
    --space-section-gap: clamp(80px, 10vh, 140px);
    --space-block-gap-lg: clamp(40px, 6vw, 80px);
    --space-block-gap-md: clamp(24px, 4vw, 48px);
    --space-block-gap-sm: clamp(12px, 3vw, 24px);
    --card-radius: 40px;
}

/* # Блокування скролу при expanded product */
body.scroll-locked {
    overflow: hidden;
}

/* # Body - основний фоновий колір та базові налаштування */
body {
    background-color: #000000;
    min-height: 200vh;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow-x: hidden;
}

/* # Visually hidden для доступності */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* # Навігаційна плашка - горизонтальна плашка без обводки */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px var(--space-page-x);
    z-index: 1000;
    transition: background-color 0.4s ease;
}

/* # Навігація з чорним фоном після скролу першого блоку */
.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
}

/* # Гарантуємо, що шрифт не змінюється при скролі */
.navbar.scrolled .nav-link {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Golos Text', sans-serif;
}

.navbar.scrolled .logo-text {
    font-size: clamp(9px, 1.8vw, 14px);
    font-weight: 600;
    font-family: 'Golos Text', sans-serif;
}

/* # Логотип в навігації - зліва */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: clamp(4px, 1.2vw, 10px);
    flex-shrink: 1;
    min-width: 0;
    max-width: calc(100% - 80px);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    color: inherit;
}

.navbar-logo:hover {
    opacity: 0.8;
}

.logo-a {
    height: clamp(14px, 2.5vw, 24px);
    width: auto;
    display: block;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.navbar-logo:hover .logo-a {
    transform: scale(1.05);
}

.logo-text {
    font-size: clamp(9px, 1.8vw, 14px);
    font-weight: 600;
    font-family: 'Golos Text', sans-serif;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(140px, calc(100vw - 100px));
    letter-spacing: -0.02em;
    transition: font-size 0.2s ease;
}

/* # Контейнер центральних посилань навігації */
.navbar-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
}

/* # Контейнер правих посилань навігації */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

/* # Посилання в навігації */
.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Golos Text', sans-serif;
    transition: opacity 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    opacity: 1;
}

.nav-link.active {
    opacity: 1;
}

/* # Кнопка в навігації */
.nav-button {
    background: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Golos Text', sans-serif;
    padding: 8px 12px;
    border-radius: 16px;
    transition: opacity 0.3s ease, background 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.nav-button:hover {
    opacity: 0.9;
}

.nav-button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    opacity: 1;
}

/* # Контейнер головної секції - центрування контенту */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* # Логотип - відступ знизу */
.logo {
    margin-bottom: 42px;
}

/* # SVG логотип - розміри та відображення */
#logo-img {
    width: 744px;
    height: 154.67px;
    display: block;
    object-fit: contain;
}

/* # Текст під логотипом - основні стилі */
.text {
    font-size: 28pt;
    color: #ffffff;
    text-align: center;
    line-height: 1.2;
}

/* # Слова в тексті - шрифт Inter */
.word {
    font-family: 'Inter', sans-serif;
}

/* # Розділові знаки - шрифт Instrument Sans */
.punctuation {
    font-family: 'Instrument Sans', sans-serif;
}

/* # Слово "Speed" - легкий курсив */
.speed {
    font-weight: 300;
    font-style: italic;
}

/* # Слово "Transparency" - дуже легка вага */
.transparency {
    font-weight: 100;
}

/* # Слово "Achievable" - напівжирний */
.achievable {
    font-weight: 600;
}

/* # Reduced Motion - вимкнути анімації */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .parallax-blob-left,
    .parallax-blob-right {
        filter: blur(0px) !important;
        transform: none !important;
    }
    
    .scrolling-line {
        transform: none !important;
    }
    
    .product-button {
        filter: blur(0px) !important;
    }
    
    .blocking-scrolling-text {
        animation: none !important;
    }
    
    .blocking-bar::before {
        opacity: 0.4 !important;
    }
}

/* # Паралакс блоби - базові стилі для декоративних елементів */
.parallax-blob {
    position: fixed;
    width: 711.37px;
    height: 608.76px;
    z-index: -1;
    pointer-events: none;
    will-change: transform;
    object-fit: cover;
}

/* # Лівий паралакс блоб - розмитий декоративний елемент зліва */
.parallax-blob-left {
    top: auto;
    bottom: auto;
    right: auto;
    left: -400px;
    width: 1095.51px;
    height: 937.49px;
    filter: blur(40px);
    z-index: 0;
    position: absolute;
    transform: translateY(-250px); /* стартова позиція */
}

/* # Правий паралакс блоб - розмитий декоративний елемент справа */
.parallax-blob-right {
    top: auto;          /* прибираємо bottom */
    bottom: auto;
    left: auto;         /* якщо треба */
    right: -300px;      /* залишаємо */
    width: 1067.06px;
    height: 913.14px;
    filter: blur(40px);
    z-index: 0;
    position: absolute;
    transform: translateY(400px); /* стартова позиція */
}

/* # Паралакс блоб після products - статичний декоративний елемент (без анімації) */
.parallax-blob-products {
    top: auto;
    bottom: auto;
    left: auto;
    right: -400px;
    width: 1095.51px;
    height: 937.49px;
    filter: blur(40px);
    z-index: 0;
    position: fixed;
    transform: translateY(-250px); /* статична позиція */
}

/* # Паралакс блоб blop4 після products - стиль як у blop2 */
.parallax-blob-products-4 {
    top: auto;
    bottom: auto;
    left: auto;
    right: -300px;
    width: 1067.06px;
    height: 913.14px;
    filter: blur(40px);
    z-index: 0;
    position: absolute;
    transform: translateY(400px); /* стартова позиція */
}

/* # Третя колонка - позиціонування */
.blocking-column-3 {
    position: relative;
    overflow: visible;
}

/* # Контентні секції - стандартні секції з текстом */
.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-section-top) var(--space-page-x) var(--space-section-bottom);
    color: #ffffff;
    position: relative;
    z-index: 1;
}

/* # Заголовки в контентних секціях */
.content-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

/* # Параграфи в контентних секціях */
.content-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #cccccc;
}

/* # Секція про кліматичну кризу - головний блок з інфографікою */
.climate-crisis-section {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: var(--space-section-top) var(--space-page-x) var(--space-section-bottom);
    color: #ffffff;
    position: relative;
    z-index: 1;
    font-family: 'Golos Text', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-section-gap);
}

/* # Заголовок секції - "THE CLIMATE CRISIS IS REAL" */
.climate-title {
    font-size: 48pt;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    opacity: 0.5;
}

/* # Підзаголовок секції - "The Transition Is Too Slow..." */
.climate-subtitle {
    font-size: 14pt;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
}

/* # Контейнер зі статистикою - три блоки з цифрами */
.climate-stats {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--space-block-gap-lg);
    flex-wrap: wrap;
    padding-left: 0;
}

/* # Окремий статистичний блок - кожен з трьох елементів */
.stat-item {
    flex: 0 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* # Числа/текст у статистиці - великі градієнтні цифри */
.stat-number {
    font-size: 126.5px;
    font-weight: 800;
    font-family: 'Golos Text', sans-serif;
    line-height: 1;
    margin-bottom: 0;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 100% 100%;
    font-variant-ligatures: common-ligatures;
}

/* # Температура - градієнт для "+1.2°C" (рожево-помаранчевий) */
.stat-temp {
    background-image: linear-gradient(to right, #ff9ec5, #ff6b35, #ff8c42);
}

/* # Символ градуса - маленький верхній індекс для °C */
.degree-symbol {
    font-size: 0.5em;
    vertical-align: super;
    line-height: 0;
}

/* # Відсоток - градієнт для "75%" (помаранчево-зелений) */
.stat-percent {
    background-image: linear-gradient(to right, #ff6b35, #ffd93d, #6bcf7f);
}

/* # Погода - градієнт для "EXTREME WEATHER" (зелено-жовтий), на двох рядках */
.stat-weather {
    font-size: 59.8px;
    background-image: linear-gradient(to right, #6bcf7f, #ffd93d);
    letter-spacing: -0.01em;
    font-weight: 800;
    font-family: 'Golos Text', sans-serif;
    display: flex;
    flex-direction: column;
    margin-top: 7px;
}

/* # Рядок тексту погоди - окремий рядок для "EXTREME" або "WEATHER" */
.weather-line {
    display: block;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #6bcf7f, #ffd93d);
}

/* # Другий рядок "WEATHER" - від'ємний відступ для зменшення проміжку */
.weather-line:last-child {
    margin-top: -8px;
}

/* # Опис під статистикою - пояснювальний текст під кожним блоком */
.stat-description {
    font-size: 13.8px;
    color: #cccccc;
    font-weight: 400;
    line-height: 1;
    margin-top: 5px;
}

/* # Окремий відступ для опису в блоці погоди */
.stat-item-weather .stat-description {
    margin-top: 12px;
}

/* # Секція "Why It Matters" - блок з інфографікою (структура як blocking-section) */
.why-it-matters-section {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: var(--space-section-top) var(--space-page-x) var(--space-section-bottom);
    color: #ffffff;
    position: relative;
    z-index: 1;
    background-color: #000000;
    font-family: 'Golos Text', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-section-gap);
}


/* # Заголовок секції - "Why It Matters" */
.why-it-matters-title {
    font-size: 48pt;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    opacity: 0.5;
}

/* # Частини заголовка - білий колір */
.why-it-matters-title-part1 {
    color: #ffffff;
    position: relative;
    display: inline-block;
}


/* # Контейнер з трьома колонками */
.why-it-matters-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-block-gap-lg);
    position: relative;
    padding: var(--space-block-gap-lg) 0 0 0;
    align-items: flex-end;
}

/* # Текст місії під блоками "Why It Matters" */
.why-it-matters-mission-text {
    text-align: center;
    color: #888888;
    font-size: 12pt;
    font-weight: 400;
    font-family: 'Golos Text', sans-serif;
    font-style: italic;
    margin-top: 0;
    padding-top: 0;
    margin-top: -10px;
}

/* # Окрема колонка */
.why-it-matters-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: var(--space-block-gap-md);
}


/* # Статистичний блок в колонці */
.why-it-matters-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

/* # Числа/текст у статистиці - великі білі цифри */
.why-it-matters-number {
    font-size: 126.5px;
    font-weight: 800;
    font-family: 'Golos Text', sans-serif;
    line-height: 1;
    margin-bottom: 0;
    color: #ffffff;
    font-variant-ligatures: common-ligatures;
}

/* # Millions - менший розмір шрифту */
.why-it-matters-millions {
    font-size: 88px;
}

/* # Текст під статистикою - пояснювальний текст під кожним блоком */
.why-it-matters-text {
    font-size: 13.8px;
    color: #cccccc;
    font-weight: 400;
    line-height: 1;
    margin-top: 5px;
}

/* # Секція "OUR MISSION" - простий текстовий блок */
.mission-section {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: var(--space-section-top) var(--space-page-x) var(--space-section-bottom);
    color: #ffffff;
    position: relative;
    z-index: 1;
    font-family: 'Golos Text', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-section-gap);
}

/* # Контейнер для контенту місії */
.mission-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-block-gap-lg) clamp(24px, 4vw, 48px);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
}

/* # Заголовок "OUR MISSION" - великі капсом, semi-bold */
.mission-title {
    font-size: 42pt;
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-block-gap-sm);
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
}

/* # Підзаголовок "Accelerate the green transition" */
.mission-subtitle {
    font-size: 20pt;
    font-weight: 400;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-family: 'Golos Text', sans-serif;
    margin: 0;
}

/* # Секція з прокручуваним текстом */
.scrolling-text-section {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: var(--space-section-top) var(--space-page-x) var(--space-section-bottom);
    color: #ffffff;
    position: relative;
    z-index: 1;
    font-family: 'Golos Text', sans-serif;
    min-height: 200vh;
    scroll-snap-align: start;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-section-gap);
}

/* # Контейнер для текстовых блоків */
.scrolling-text-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-block-gap-lg);
    position: relative;
}

/* # Окремий текстовий блок */
.scrolling-text-block {
    display: flex;
    flex-direction: column;
    gap: var(--space-block-gap-sm);
}

/* # Окремий рядок тексту */
.scrolling-line {
    font-size: 24pt;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    max-width: 100%;
    word-wrap: break-word;
    will-change: opacity, transform;
}

/* # Видимий рядок */
.scrolling-line.visible {
    opacity: 1;
    transform: translateY(0);
}

/* # Жирне виділення важливих слів */
.scrolling-line strong {
    font-weight: 600;
}


/* # Секція "OUR PRODUCTS" - блок з кнопками продуктів */
.products-section {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: var(--space-section-top) var(--space-page-x) var(--space-section-bottom);
    color: #ffffff;
    position: relative;
    z-index: 1;
    font-family: 'Golos Text', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-section-gap);
}

/* # Заголовок "AITA'S INFRASTRUCTURE" - такий же стиль як "WHY IT MATTERS" */
.products-title {
    font-size: 48pt;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    opacity: 0.5;
}

/* # Підказка про відкриття блоків */
.products-hint {
    font-size: 14pt;
    font-weight: 400;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
    color: #ffffff;
    opacity: 0.6;
    font-family: 'Golos Text', sans-serif;
    letter-spacing: 0.02em;
}

/* # Контейнер для кнопок продуктів */
.products-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-block-gap-md);
    align-items: center;
    padding: var(--space-block-gap-lg) 0 var(--space-block-gap-md) 0;
}

/* # Текст місії під блоками інфраструктури */
.products-mission-text {
    text-align: center;
    color: #888888;
    font-size: 12pt;
    font-weight: 400;
    font-family: 'Golos Text', sans-serif;
    font-style: italic;
    margin-top: 0;
    padding-top: var(--space-block-gap-sm);
}

/* # Рядок з кнопками */
.products-row {
    display: flex;
    gap: var(--space-block-gap-md);
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

/* # Рядок з розширеною кнопкою - центрування */
.products-row:has(.product-button.expanded),
.products-row.has-expanded {
    justify-content: center;
}

/* # Приховування інших кнопок в рядку, коли одна розширена */
.products-row:has(.product-button.expanded) .product-button:not(.expanded),
.products-row.has-expanded .product-button:not(.expanded) {
    display: none;
}

/* # Центрований рядок для другої кнопки */
.products-row-center {
    justify-content: center;
}

/* # Кнопка продукту - базові стилі */
.product-button {
    padding: calc(var(--space-block-gap-sm) + 6px) calc(var(--space-block-gap-md) + 12px);
    border-radius: 50px;
    border: none;
    font-size: 18pt;
    font-weight: 400;
    font-family: 'Golos Text', sans-serif;
    text-transform: lowercase;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    width: 200px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    height: auto;
    opacity: 1;
    visibility: visible;
    filter: blur(0px);
    transform: scale(1);
    will-change: transform, opacity, filter;
}

.product-button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

.product-button.expanded {
    cursor: default;
}

/* # Псевдоелемент для градієнтного border */
.product-button::before {
    content: '';
    position: absolute;
    top: -0.5px;
    left: -0.5px;
    right: -0.5px;
    bottom: -0.5px;
    border-radius: 50px;
    background: linear-gradient(to right, var(--border-start-color), #ffffff);
    z-index: -2;
    pointer-events: none;
}

/* # Внутрішній фон кнопки поверх border */
.product-button::after {
    content: '';
    position: absolute;
    top: 0.5px;
    left: 0.5px;
    right: 0.5px;
    bottom: 0.5px;
    border-radius: 50px;
    z-index: -1;
    pointer-events: none;
}

/* # Кнопка platform - зелений градієнт (чорний -> #39b54a) */
.product-platform {
    --border-start-color: #39b54a;
    color: #4fc85d;
}

.product-platform::after {
    background: linear-gradient(to right, #000000, #39b54a);
}

.product-platform:hover:not(.expanded) {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(57, 181, 74, 0.3);
}

/* # Кнопка invest - червоний градієнт (чорний -> #d62828) */
.product-invest {
    --border-start-color: #d62828;
    color: #e63939;
}

.product-invest::after {
    background: linear-gradient(to right, #000000, #d62828);
}

.product-invest:hover:not(.expanded) {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(214, 40, 40, 0.3);
}

/* # Кнопка assets - синій градієнт (чорний -> #0086cc) */
.product-assets {
    --border-start-color: #0086cc;
    color: #1a9de6;
}

.product-assets::after {
    background: linear-gradient(to right, #000000, #0086cc);
}

.product-assets:hover:not(.expanded) {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 134, 204, 0.3);
}

/* # Кнопка exchange - фіолетовий градієнт (чорний -> #8524d8) */
.product-exchange {
    --border-start-color: #8524d8;
    color: #9a3ee8;
}

.product-exchange::after {
    background: linear-gradient(to right, #000000, #8524d8);
}

.product-exchange:hover:not(.expanded) {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(133, 36, 216, 0.3);
}

/* # Розширена кнопка */
.product-button.expanded {
    width: 800px;
    min-width: 800px;
    height: auto;
    min-height: 300px;
    padding: calc(var(--space-block-gap-lg) + 8px) calc(var(--space-block-gap-lg) + 16px);
    border-radius: 50px;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: visible;
    position: relative;
    z-index: 10;
    filter: blur(0px);
    transform: scale(1);
    animation: expandButton 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    margin-left: auto;
    margin-right: auto;
}

@keyframes expandButton {
    0% {
        filter: blur(2px);
        transform: scale(0.98);
    }
    50% {
        filter: blur(1px);
    }
    100% {
        filter: blur(0px);
        transform: scale(1);
    }
}

/* # Анімація згортання кнопки */
.product-button:not(.expanded) {
    animation: collapseButton 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes collapseButton {
    0% {
        filter: blur(0px);
        transform: scale(1);
    }
    100% {
        filter: blur(0px);
        transform: scale(1);
    }
}

.product-button.expanded::before {
    border-radius: 50px;
}

.product-button.expanded::after {
    border-radius: 50px;
}

/* # Лейбл кнопки (показується тільки в згорнутому стані) */
.product-button-label {
    display: inline-block;
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-button.expanded .product-button-label {
    display: none;
    opacity: 0;
    transform: scale(0.9);
    filter: blur(4px);
}

/* # Іконка стрілки на кнопках продуктів - абсолютно позиціонована в правому нижньому куті */
.product-button-arrow {
    position: absolute;
    right: 20px;
    bottom: 15px;
    transform: rotate(45deg);
    font-size: 14pt;
    color: inherit;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
    animation: arrowPulse 2s ease-in-out infinite;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
}

.product-button:hover:not(.expanded) .product-button-arrow {
    opacity: 1;
    transform: rotate(45deg) scale(1.1);
}

.product-button.expanded .product-button-arrow {
    display: none;
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* # Розширений контент (прихований за замовчуванням) */
.product-expanded-content {
    display: none;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.product-button.expanded .product-expanded-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

/* # Заголовок розширеного контенту */
.product-expanded-title {
    font-size: 24pt;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: var(--space-block-gap-sm);
    margin-top: 0;
    font-family: 'Golos Text', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* # Текст розширеного контенту */
.product-expanded-text {
    font-size: 14pt;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: var(--space-block-gap-md);
    font-family: 'Golos Text', sans-serif;
}

/* # Ключове слово внизу справа */
.product-expanded-keyword {
    position: absolute;
    bottom: -12px;
    right: 0;
    font-size: 14pt;
    font-weight: 400;
    color: #ffffff;
    text-transform: lowercase;
    font-family: 'Golos Text', sans-serif;
}

/* # Градієнти для розширеного стану (темніші зліва) */
.product-platform.expanded::after {
    background: linear-gradient(to right, #0d2e0d, #39b54a);
}

.product-invest.expanded::after {
    background: linear-gradient(to right, #2e0d0d, #d62828);
}

.product-assets.expanded::after {
    background: linear-gradient(to right, #0d1e2e, #0086cc);
}

.product-exchange.expanded::after {
    background: linear-gradient(to right, #1e0d2e, #8524d8);
}

/* # Обводка для розширеного стану */
.product-platform.expanded::before {
    background: linear-gradient(to right, #39b54a, #ffffff);
}

.product-invest.expanded::before {
    background: linear-gradient(to right, #d62828, #ffffff);
}

.product-assets.expanded::before {
    background: linear-gradient(to right, #0086cc, #ffffff);
}

.product-exchange.expanded::before {
    background: linear-gradient(to right, #8524d8, #ffffff);
}

/* # Секція "HOW AITA WORKS" - блок з 6 кроками */
.how-it-works-section {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: var(--space-section-top) var(--space-page-x) var(--space-section-bottom);
    color: #ffffff;
    position: relative;
    z-index: 1;
    font-family: 'Golos Text', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-section-gap);
}

/* # Заголовок секції - "HOW AITA WORKS" */
.how-it-works-title {
    font-size: 48pt;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    opacity: 0.5;
    font-family: 'Golos Text', sans-serif;
}

/* # Контейнер з кроками */
.how-it-works-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-block-gap-lg);
    position: relative;
    padding-top: calc(var(--space-block-gap-lg) + 16px);
}

/* # Окремий крок */
.how-it-works-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-block-gap-md);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.how-it-works-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* # Іконка кроку - кольоровий круг з номером */
.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30pt;
    font-weight: 500;
    font-family: 'Golos Text', sans-serif;
    color: rgba(255, 255, 255, 1);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    line-height: 1;
    padding-top: 2px;
}

/* # Градієнтна обводка через псевдоелемент */
.step-icon::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-radius: 50%;
    background: linear-gradient(45deg, #000000, #ffffff);
    z-index: -1;
}

/* # Внутрішній фон поверх градієнта */
.step-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
}

/* # Крок 1 - зелений */
.step-icon-1::after {
    background: linear-gradient(to right, #000000, #39b54a);
}

.step-icon-1 {
    color: rgba(255, 255, 255, 1);
}

/* # Крок 2 - червоний */
.step-icon-2::after {
    background: linear-gradient(to right, #000000, #d62828);
}

.step-icon-2 {
    color: rgba(255, 255, 255, 1);
}

/* # Крок 3 - фіолетовий */
.step-icon-3::after {
    background: linear-gradient(to right, #000000, #8524d8);
}

.step-icon-3 {
    color: rgba(255, 255, 255, 1);
}

/* # Крок 4 - синій */
.step-icon-4::after {
    background: linear-gradient(to right, #000000, #0086cc);
}

.step-icon-4 {
    color: rgba(255, 255, 255, 1);
}

/* # Крок 5 - жовтий */
.step-icon-5::after {
    background: linear-gradient(to right, #000000, #edc006);
}

.step-icon-5 {
    color: rgba(255, 255, 255, 1);
}

/* # Крок 6 - рожевий */
.step-icon-6::after {
    background: linear-gradient(to right, #000000, #CA0097);
}

.step-icon-6 {
    color: rgba(255, 255, 255, 1);
}

/* # Заголовок кроку */
.step-title {
    font-size: 20pt;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    margin-top: 0;
    font-family: 'Golos Text', sans-serif;
    line-height: 1.3;
}

/* # Опис кроку */
.step-description {
    font-size: 14pt;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.5;
    line-height: 1.6;
    margin: 0;
    font-family: 'Golos Text', sans-serif;
}

/* # Контейнер тексту кроку */
.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* # Секція "TRACTION. SCALE. TRUST." - блок з метриками */
.traction-section {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: var(--space-section-top) var(--space-page-x) var(--space-section-bottom);
    color: #ffffff;
    position: relative;
    z-index: 1;
    background-color: #000000;
    font-family: 'Golos Text', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-section-gap);
}

/* # Заголовок секції - "TRACTION. SCALE. TRUST." */
.traction-title {
    font-size: 48pt;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    opacity: 0.5;
}

/* # Контейнер зі статистикою - три блоки з цифрами */
.traction-stats {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--space-block-gap-lg);
    flex-wrap: wrap;
    padding-left: 0;
    padding-top: var(--space-block-gap-md);
    position: relative;
}

/* # Окремий статистичний блок - кожен з трьох елементів */
.traction-stat-item {
    flex: 0 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* # Числа/текст у статистиці - великі градієнтні цифри */
.traction-stat-number {
    font-size: 126.5px;
    font-weight: 800;
    font-family: 'Golos Text', sans-serif;
    line-height: 1;
    margin-bottom: 0;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 100%;
    font-variant-ligatures: common-ligatures;
    /* Один градієнт розтягнутий на всі цифри */
    background-image: linear-gradient(to right, #ff6b6b, #ff8c42, #ffa94d, #ff8c42, #ff6b9d, #ff4d9e, #9d4edd, #c77dff, #ff4d9e);
}

/* # Одиниця виміру (GW, %, +) - частина градієнта */
.traction-stat-unit {
    display: inline-block;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 100%;
    background-image: linear-gradient(to right, #ff6b6b, #ff8c42, #ffa94d, #ff8c42, #ff6b9d, #ff4d9e, #9d4edd, #c77dff, #ff4d9e);
}

/* # 12GW - позиція градієнта для першої цифри (початок) */
.traction-stat-gw {
    background-position: 0% 0%;
}

.traction-stat-gw .traction-stat-unit {
    background-position: 15% 0%;
}

/* # 90% - позиція градієнта для другої цифри (середина) */
.traction-stat-percent {
    background-position: 33% 0%;
}

.traction-stat-percent .traction-stat-unit {
    background-position: 50% 0%;
}

/* # 4+ - позиція градієнта для третьої цифри (кінець) */
.traction-stat-partners {
    background-position: 66% 0%;
}

.traction-stat-partners .traction-stat-unit {
    background-position: 85% 0%;
}

/* # Опис під статистикою - пояснювальний текст під кожним блоком */
.traction-stat-description {
    font-size: 13.8px;
    color: #cccccc;
    font-weight: 400;
    line-height: 1;
    margin-top: 5px;
}

/* # Секція "OUR ROLE IN THE DIGITIZED ENERGY ECONOMY" - блок з текстом про AITA */
.about-aita-section {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: var(--space-section-top) var(--space-page-x) var(--space-section-bottom);
    color: #ffffff;
    position: relative;
    z-index: 1;
    font-family: 'Golos Text', sans-serif;
    min-height: 200vh;
    scroll-snap-align: start;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-section-gap);
}

/* # Заголовок секції - "OUR ROLE IN THE DIGITIZED ENERGY ECONOMY" */
.about-aita-title {
    font-size: 48pt;
    font-weight: 600;
    text-align: left;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    opacity: 0.5;
}

/* # Контейнер з блоками тексту */
.about-aita-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-block-gap-lg);
    position: relative;
    padding-top: calc(var(--space-block-gap-lg) + 16px);
}

/* # Кольорові заголовки в секції "OUR ROLE IN THE DIGITIZED ENERGY ECONOMY" */
.role-heading {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 100% 100%;
    display: inline-block;
}

/* # FOR DEVELOPERS & EPCS - зелений градієнт */
.role-heading-developers {
    background-image: linear-gradient(to right, #39b54a, #4fc85d, #6bcf7f);
}

/* # FOR INVESTORS - червоний градієнт */
.role-heading-investors {
    background-image: linear-gradient(to right, #d62828, #e63939, #ff4d4d);
}

/* # FOR PARTNERS & SUPPLIERS - синій градієнт */
.role-heading-partners {
    background-image: linear-gradient(to right, #0086cc, #1a9de6, #4db8ff);
}

/* # Секція "AI-DRIVEN. DATA-CENTRIC. TRANSPARENT." - блок з трьома картками */
.ai-driven-section {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: var(--space-section-top) var(--space-page-x) var(--space-section-bottom);
    color: #ffffff;
    position: relative;
    z-index: 1;
    font-family: 'Golos Text', sans-serif;
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-section-gap);
}

/* # Заголовок секції - "AI-DRIVEN. DATA-CENTRIC. TRANSPARENT." */
.ai-driven-title {
    font-size: 48pt;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    opacity: 0.5;
    font-family: 'Golos Text', sans-serif;
}

/* # Контейнер з картками */
.ai-driven-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-block-gap-md);
    position: relative;
    padding-top: calc(var(--space-block-gap-lg) + 16px);
}

/* # Окрема картка */
.ai-driven-card {
    position: relative;
    border-radius: var(--card-radius);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: var(--space-block-gap-md);
    overflow: hidden;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #000000;
}

/* # Фонове зображення картки */
.ai-driven-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* # Градієнт поверх зображення для першої картки (THE INTELLIGENCE LAYER) */
.ai-driven-card-intelligence .ai-driven-card-bg {
    background-image: url('images/BACK1.png');
}

.ai-driven-card-intelligence::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 107, 53, 0.6), rgba(255, 140, 66, 0.5), rgba(255, 217, 61, 0.4), rgba(107, 207, 127, 0.3));
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* # Градієнт поверх зображення для другої картки (UNBREAKABLE TRANSPARENCY) */
.ai-driven-card-transparency .ai-driven-card-bg {
    background-image: url('images/BACK2.png');
}

.ai-driven-card-transparency::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(59, 59, 152, 0.6), rgba(102, 102, 204, 0.5), rgba(107, 207, 127, 0.4), rgba(255, 217, 61, 0.3));
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* # Нижня картка (ширша) - THE INTELLIGENCE LAYER */
.ai-driven-card-intelligence-bottom {
    grid-column: 1 / -1;
    width: 100%;
}

.ai-driven-card-intelligence-bottom .ai-driven-card-bg {
    background-image: url('images/BACK3.png');
}

.ai-driven-card-intelligence-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 107, 53, 0.6), rgba(255, 140, 66, 0.5), rgba(255, 217, 61, 0.4), rgba(107, 207, 127, 0.3));
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* # Заголовок картки */
.ai-driven-card-title {
    font-size: 20pt;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 0;
    font-family: 'Golos Text', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

/* # Текст картки */
.ai-driven-card-text {
    font-size: 14pt;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    font-family: 'Golos Text', sans-serif;
    position: relative;
    z-index: 2;
}

/* # Секція контактної форми */
.contact-section {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: var(--space-section-top) var(--space-page-x) var(--space-section-bottom);
    color: #ffffff;
    position: relative;
    z-index: 1;
    font-family: 'Golos Text', sans-serif;
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-section-gap);
}

/* # Заголовок секції контактної форми */
.contact-title {
    font-size: 48pt;
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-block-gap-lg);
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
    text-transform: none;
    position: relative;
    opacity: 1;
    font-family: 'Golos Text', sans-serif;
}

/* # Контактна форма */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-block-gap-md);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* # Група полів форми */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-block-gap-sm);
}

/* # Лейбл поля форми */
.form-label {
    font-size: 14pt;
    font-weight: 400;
    color: #ffffff;
    font-family: 'Golos Text', sans-serif;
    line-height: 1.4;
}

/* # Зірочка обов'язкового поля */
.required {
    color: #ffffff;
}

/* # Поле вводу форми */
.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14pt;
    font-weight: 400;
    font-family: 'Golos Text', sans-serif;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* # Текстове поле */
.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Golos Text', sans-serif;
}

/* # Кнопка відправки форми */
.form-submit {
    padding: 16px 24px;
    background: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #000000;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Golos Text', sans-serif;
    cursor: pointer;
    transition: opacity 0.3s ease, background 0.3s ease;
    margin-top: var(--space-block-gap-sm);
    align-self: flex-start;
    display: inline-block;
}

.form-submit:hover {
    opacity: 0.9;
}

.form-submit:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* # Секція сторінки подяки */
.thank-you-page-section {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: var(--space-section-top) var(--space-page-x) var(--space-section-bottom);
    color: #ffffff;
    position: relative;
    z-index: 1;
    font-family: 'Golos Text', sans-serif;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* # Сторінка подяки */
.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-block-gap-lg) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-block-gap-md);
}

/* # Іконка подяки */
.thank-you-icon {
    margin-bottom: var(--space-block-gap-sm);
    animation: thankYouIconPulse 2s ease-in-out infinite;
}

@keyframes thankYouIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* # Заголовок подяки */
.thank-you-title {
    font-size: 48pt;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Golos Text', sans-serif;
    text-transform: none;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #39b54a, #4fc85d, #6bcf7f);
}

/* # Повідомлення подяки */
.thank-you-message {
    font-size: 20pt;
    font-weight: 400;
    color: #ffffff;
    font-family: 'Golos Text', sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* # Підповідомлення подяки */
.thank-you-submessage {
    font-size: 14pt;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Golos Text', sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* # Кнопка "Return to Home" */
.thank-you-button {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Golos Text', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: var(--space-block-gap-sm);
    display: inline-block;
    text-decoration: none;
}

.thank-you-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.thank-you-button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.thank-you-button:active {
    transform: translateY(0);
}

/* # Кнопка повернення на початок */
.scroll-to-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.scroll-to-top:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px) scale(1.05);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(0.95);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

/* # Футер - контакти та політика конфіденційності */
.footer-section {
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: clamp(60px, 8vh, 100px) var(--space-page-x) clamp(30px, 4vh, 50px);
    margin-top: var(--space-section-gap);
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: var(--section-max-width);
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(40px, 5vh, 60px);
}

.footer-main {
    max-width: 500px;
    width: 100%;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-block-gap-sm);
}

.footer-social-wrapper {
    margin-top: clamp(32px, 4vh, 48px);
    padding-top: clamp(24px, 3vh, 36px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-title {
    margin-bottom: clamp(16px, 2vh, 20px);
}

.footer-title {
    font-size: 16pt;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Golos Text', sans-serif;
    margin-bottom: clamp(16px, 2.5vh, 24px);
    letter-spacing: -0.01em;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: 'Golos Text', sans-serif;
    margin-bottom: 12px;
}

.footer-contact-label {
    font-size: 11pt;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Golos Text', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link {
    font-size: 14pt;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Golos Text', sans-serif;
    transition: opacity 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
}

.footer-text {
    font-size: 14pt;
    font-weight: 400;
    color: #ffffff;
    font-family: 'Golos Text', sans-serif;
    line-height: 1.5;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: var(--space-block-gap-sm);
}

.footer-legal .footer-link {
    margin-bottom: 8px;
}

.footer-social-links {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.footer-social-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover svg {
    transform: scale(1.1);
}

.footer-social-link:active {
    transform: translateY(0);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: clamp(24px, 3vh, 36px);
    text-align: center;
    margin-top: clamp(30px, 4vh, 50px);
}

.footer-copyright {
    font-size: 12pt;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Golos Text', sans-serif;
}

.footer-copyright .footer-link {
    font-size: 12pt;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 8px;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.footer-copyright .footer-link:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration-color: rgba(255, 255, 255, 0.6);
}

/* # Бургер-меню кнопка */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    transition: opacity 0.3s ease;
}

.burger-menu:hover {
    opacity: 0.8;
}

.burger-menu:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
    border-radius: 4px;
}

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

/* # Анімація бургер-меню при відкритті */
.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

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

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* # Адаптивність для навігації */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .navbar {
        padding: 12px clamp(10px, 2.5vw, 20px);
    }
    
    .navbar-logo {
        gap: clamp(3px, 1vw, 6px);
        flex-shrink: 1;
        min-width: 0;
        max-width: calc(100% - 70px);
    }
    
    .logo-a {
        height: clamp(12px, 3vw, 20px);
        flex-shrink: 0;
    }
    
    .logo-text {
        font-size: clamp(7px, 1.8vw, 12px);
        flex-shrink: 1;
        max-width: min(90px, calc(100vw - 80px));
        letter-spacing: -0.03em;
    }
    
    .navbar.scrolled .logo-text {
        font-size: clamp(7px, 1.8vw, 12px);
    }
    
    .navbar-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #000000 !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        overflow-y: auto;
    }
    
    .navbar-right.active {
        right: 0;
        background-color: #000000 !important;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
        opacity: 1;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover {
        opacity: 0.8;
        transform: translateX(8px);
    }
    
    .nav-button {
        width: 100%;
        margin-top: 20px;
        padding: 12px 20px;
        font-size: 18px;
        text-align: center;
        border-radius: 16px;
        border-bottom: none;
        opacity: 1;
        transition: opacity 0.3s ease;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    
    .nav-button:hover {
        opacity: 0.9;
        transform: none;
    }
    
    /* # Блокування скролу при відкритому меню */
    body.menu-open {
        overflow: hidden;
    }
}

/* # Дуже маленькі екрани */
@media (max-width: 360px) {
    .navbar {
        padding: 12px 10px;
    }
    
    .navbar-logo {
        max-width: calc(100% - 50px);
        gap: clamp(2px, 0.8vw, 4px);
    }
    
    .logo-a {
        height: clamp(10px, 2.5vw, 14px);
    }
    
    .logo-text {
        font-size: clamp(6px, 1.5vw, 9px);
        max-width: min(70px, calc(100vw - 60px));
    }
    
    .navbar.scrolled .logo-text {
        font-size: clamp(6px, 1.5vw, 9px);
    }
}

/* # Overlay для затемнення фону при відкритому меню */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 999;
    pointer-events: none;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* # Проміжні розміри (планшети) */
@media (min-width: 769px) and (max-width: 1024px) {
    .navbar-logo {
        gap: clamp(5px, 1.3vw, 10px);
    }
    
    .logo-a {
        height: clamp(16px, 3vw, 24px);
    }
    
    .logo-text {
        font-size: clamp(10px, 1.9vw, 14px);
    }
    
    .navbar.scrolled .logo-text {
        font-size: clamp(10px, 1.9vw, 14px);
    }
    
    .navbar-right {
        gap: 20px;
    }
    
    .nav-link,
    .nav-button {
        font-size: 15px;
        padding: 8px 10px;
    }
}

/* # Адаптивність для логотипу в головному блоці */
@media (max-width: 768px) {
    #logo-img {
        width: clamp(280px, 80vw, 744px);
        height: auto;
        max-width: 100%;
    }
    
    .logo {
        margin-bottom: clamp(24px, 4vh, 42px);
    }
}

/* # Адаптивність для футера */
@media (max-width: 768px) {
    .footer-content {
        justify-content: flex-start;
    }
    
    .footer-main {
        max-width: 100%;
    }
    
    .footer-social-wrapper {
        margin-top: clamp(24px, 3vh, 32px);
        padding-top: clamp(20px, 2.5vh, 28px);
    }
    
    .footer-social-links {
        gap: 12px;
    }
    
    .footer-social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-social-link svg {
        width: 18px;
        height: 18px;
    }
}

/* # Адаптивність для секції "Why It Matters" */
@media (max-width: 768px) {
    .why-it-matters-title {
        font-size: clamp(24pt, 8vw, 48pt);
    }
    
    .why-it-matters-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: var(--space-block-gap-md);
        padding-top: var(--space-block-gap-md);
        align-items: stretch;
    }
    
    .why-it-matters-column {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 auto !important;
        padding: var(--space-block-gap-sm);
    }
    
    .why-it-matters-stat {
        width: 100%;
    }
    
    .why-it-matters-number {
        font-size: clamp(60px, 20vw, 126.5px);
    }
    
    .why-it-matters-millions {
        font-size: clamp(42px, 15vw, 88px);
    }
    
    .why-it-matters-text {
        font-size: 12px;
    }
}

/* # Адаптивність для секції "AITA'S INFRASTRUCTURE" (Products) */
@media (max-width: 768px) {
    .products-title {
        font-size: clamp(24pt, 8vw, 48pt);
    }
    
    .products-content {
        padding: var(--space-block-gap-md) 0;
        gap: var(--space-block-gap-sm);
    }
    
    .products-row {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-block-gap-sm);
        width: 100%;
    }
    
    .product-button {
        width: 100% !important;
        min-width: unset !important;
        max-width: 100% !important;
        padding: calc(var(--space-block-gap-sm) + 4px) calc(var(--space-block-gap-md) + 8px);
        font-size: clamp(14pt, 4vw, 18pt);
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .product-button.expanded {
        width: 100% !important;
        min-width: unset !important;
        max-width: 100% !important;
        min-height: 250px;
        padding: var(--space-block-gap-md);
        border-radius: 30px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .product-expanded-content {
        width: 100%;
        max-width: 100%;
    }
    
    .product-expanded-title {
        font-size: clamp(16pt, 5vw, 24pt);
        margin-bottom: var(--space-block-gap-sm);
        word-wrap: break-word;
    }
    
    .product-expanded-text {
        font-size: clamp(12pt, 3.5vw, 14pt);
        padding-bottom: var(--space-block-gap-sm);
        word-wrap: break-word;
    }
    
    .product-expanded-keyword {
        font-size: clamp(12pt, 3.5vw, 14pt);
        bottom: -8px;
        right: 0;
    }
    
    .products-mission-text {
        font-size: clamp(10pt, 3vw, 12pt);
        padding-top: var(--space-block-gap-sm);
    }
    
    /* Переконаємося, що інші кнопки не ховаються через display: none */
    .products-row:has(.product-button.expanded) .product-button:not(.expanded),
    .products-row.has-expanded .product-button:not(.expanded) {
        display: none !important;
    }
    
    /* Переконаємося, що розширена кнопка видима */
    .product-button.expanded {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
        z-index: 10;
    }
    
    /* Переконаємося, що контент всередині кнопки не виходить за межі */
    .product-button.expanded .product-expanded-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* На мобільних не блокуємо скрол при розширеній кнопці */
@media (max-width: 768px) {
    body.scroll-locked {
        overflow: auto !important;
    }
}

/* # Адаптивність для секції "HOW AITA WORKS" */
@media (max-width: 768px) {
    .how-it-works-title {
        font-size: clamp(24pt, 8vw, 48pt);
    }
    
    .how-it-works-steps {
        gap: var(--space-block-gap-md);
        padding-top: var(--space-block-gap-md);
    }
    
    .how-it-works-step {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-block-gap-sm);
    }
    
    .step-icon {
        width: clamp(50px, 12vw, 70px);
        height: clamp(50px, 12vw, 70px);
        font-size: clamp(20pt, 6vw, 30pt);
    }
    
    .step-title {
        font-size: clamp(16pt, 4.5vw, 20pt);
        margin-bottom: 8px;
    }
    
    .step-description {
        font-size: clamp(12pt, 3.5vw, 14pt);
    }
}

/* # Адаптивність для секції "TRACTION. SCALE. TRUST." */
@media (max-width: 768px) {
    .traction-title {
        font-size: clamp(24pt, 8vw, 48pt);
    }
    
    .traction-stats {
        flex-direction: column !important;
        gap: var(--space-block-gap-md);
        padding-top: var(--space-block-gap-md);
        align-items: flex-start;
        flex-wrap: nowrap !important;
    }
    
    .traction-stat-item {
        width: 100% !important;
        flex: 0 0 auto !important;
    }
    
    .traction-stat-number {
        font-size: clamp(60px, 20vw, 126.5px);
    }
    
    .traction-stat-description {
        font-size: 12px;
    }
}

/* # Адаптивність для секції "OUR ROLE IN THE DIGITIZED ENERGY ECONOMY" */
@media (max-width: 768px) {
    .about-aita-section {
        min-height: auto;
    }
    
    .about-aita-title {
        font-size: clamp(20pt, 7vw, 48pt);
        text-align: center;
    }
    
    .about-aita-content {
        gap: var(--space-block-gap-md);
        padding-top: var(--space-block-gap-md);
    }
    
    .scrolling-line {
        font-size: clamp(14pt, 4.5vw, 24pt);
    }
}

/* # Адаптивність для секції "AI-DRIVEN. DATA-CENTRIC. TRANSPARENT." */
@media (max-width: 768px) {
    .ai-driven-title {
        font-size: clamp(20pt, 7vw, 48pt);
    }
    
    .ai-driven-cards {
        grid-template-columns: 1fr;
        gap: var(--space-block-gap-sm);
        padding-top: var(--space-block-gap-md);
    }
    
    .ai-driven-card {
        min-height: 220px;
        padding: var(--space-block-gap-sm);
        border-radius: 30px;
    }
    
    .ai-driven-card-intelligence-bottom {
        grid-column: 1;
    }
    
    .ai-driven-card-title {
        font-size: clamp(16pt, 4.5vw, 20pt);
        margin-bottom: 16px;
    }
    
    .ai-driven-card-text {
        font-size: clamp(12pt, 3.5vw, 14pt);
    }
}

/* # Адаптивність для секції контактної форми */
@media (max-width: 768px) {
    .contact-title {
        font-size: clamp(24pt, 8vw, 48pt);
        margin-bottom: var(--space-block-gap-md);
    }
    
    .contact-form {
        max-width: 100%;
        gap: var(--space-block-gap-sm);
    }
    
    .form-label {
        font-size: clamp(12pt, 3.5vw, 14pt);
    }
    
    .form-input,
    .form-textarea {
        padding: 14px 16px;
        font-size: clamp(12pt, 3.5vw, 14pt);
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    .form-submit {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        margin-top: var(--space-block-gap-sm);
    }
}

/* # Адаптивність для кнопки повернення на початок */
@media (max-width: 768px) {
    .scroll-to-top {
        right: 20px;
        bottom: 20px;
        width: 48px;
        height: 48px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* # Адаптивність для секції кліматичної кризи */
@media (max-width: 768px) {
    .climate-title {
        font-size: clamp(24pt, 8vw, 48pt);
    }
    
    .climate-subtitle {
        font-size: clamp(12pt, 3.5vw, 14pt);
    }
    
    .climate-stats {
        flex-direction: column !important;
        gap: var(--space-block-gap-md);
        align-items: flex-start;
        flex-wrap: nowrap !important;
    }
    
    .stat-item {
        width: 100% !important;
        flex: 0 0 auto !important;
    }
    
    .stat-number {
        font-size: clamp(60px, 20vw, 126.5px);
    }
    
    .stat-weather {
        font-size: clamp(30px, 12vw, 59.8px);
    }
    
    .stat-description {
        font-size: 12px;
    }
}

/* # Адаптивність для секції місії */
@media (max-width: 768px) {
    .mission-title {
        font-size: clamp(24pt, 8vw, 42pt);
    }
    
    .mission-subtitle {
        font-size: clamp(16pt, 4.5vw, 20pt);
    }
}

/* # Адаптивність для секції з прокручуваним текстом */
@media (max-width: 768px) {
    .scrolling-text-section {
        min-height: auto;
        padding: var(--space-section-top) var(--space-page-x) var(--space-section-bottom);
    }
    
    .scrolling-text-container {
        gap: var(--space-block-gap-md);
    }
    
    .scrolling-text-block {
        gap: var(--space-block-gap-sm);
    }
    
    .scrolling-line {
        font-size: clamp(14pt, 4.5vw, 24pt);
    }
}


