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

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --font-family: "Montserrat", sans-serif;
    --bg-color: #FFFFFF;
    --primary-color: #3060a0;
    --primary-light: rgba(48, 96, 160, 0.1);
    --primary-semi: rgba(48, 96, 160, 0.6);
    --dark-bg: #183050;
    --text-color: #000000;
    --text-muted: rgba(0, 0, 0, 0.6);
    --success-color: #00b450;
    --accent-blue: rgba(0, 120, 240, 0.6);
    --accent-purple: rgba(120, 80, 240, 0.6);
    --accent-pink: rgba(240, 0, 240, 0.6);
    --accent-dark-purple: rgba(140, 0, 240, 0.6);
    --container-width: 1264px;
    --section-padding: 48px;
    --Blue-RAO-Blue-RAO-Light-10: rgba(48, 96, 160, 0.10);
    --Blue-RAO-Blue-RAO-Light-20: rgba(48, 96, 160, 0.20);
    --Black-Black-60: rgba(0, 0, 0, 0.60);
    --Cyan-Cyan: #50B4F0;
    --Blue-RAO-Blue-RAO-Light-60: rgba(48, 96, 160, 0.60);
		--transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
		--shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media(max-width: 420px) {
    :root {
        --section-padding: 32px;
    }
}

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

html {
    scroll-behavior: smooth;
		min-height: 100%;
		height: 100%;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
    min-width: 320px;
		min-height: 100%;
}

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

.main--inner {
	flex: 1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}


ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
}

.section__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(90deg, #60c0ff 0%, #3060a0 100%);
    color: #fff;
    border-radius: 12px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #fff;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background: linear-gradient(90deg, #3060a0 0%, #60c0ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 96, 160, 0.3);
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

@media(max-width: 420px) {
    .section__title {
        font-size: 24px;
				margin-bottom: 32px;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--dark-bg);
    padding: 24px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header--scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.header__logos {
    display: flex;
    gap: 48px;
    align-items: center;
    position: relative;
}

.header__logos::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 32px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.header__logo {
    height: 48px;
}

.header__nav {
    display: flex;
    gap: 64px;
    align-items: center;
}

.header__link {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--bg-color);
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--bg-color);
    transition: all 0.3s ease;
}

.header__close {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--bg-color);
    z-index: 101;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

@media(max-width: 1150px) {
    .header {
        padding: 12px 0;
    }

    .header--scrolled {
        padding: 8px 0;
    }

    .header__logo {
        height: 35px;
    }

    .header__nav {
        gap: 24px;
    }
}

.header__btn--mobile {
    display: none;
}

@media (max-width: 1024px) {
    .header__burger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 40px;
        gap: 32px;
        transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .header__nav--active {
        right: 0;
    }

    .header__close {
        display: block;
        position: absolute;
        top: 24px;
        right: 24px;
    }

    .header__link {
        color: var(--bg-color);
        font-size: 20px;
        width: 100%;
    }

    .header--scrolled .header__burger span {
        background-color: var(--bg-color);
    }
}

@media (max-width: 682px) {
    .header__actions .header__btn {
        display: none;
    }

    .header__btn--mobile {
        display: block;
        width: 100%;
        /* margin-top: 20px; */
    }
}

@media(max-width: 420px) {
    .header__logos {
        gap: 24px;
    }
}

/* Section 1: Hero & Cards */
.hero {
    background-color: var(--bg-color);
    background-image: url('../img/bg.png');
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: calc(var(--section-padding) + 144px);
    overflow: hidden;
    padding-bottom: 96px;
}

.hero__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: flex-start;
}

.hero__content {
    grid-column: span 1;
}

.hero__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 96px;
    line-height: 125%;
    color: var(--text-color);
}

.hero__subtitle {
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    color: var(--text-color);
    margin-bottom: 88px;
}

.hero__text {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 24px;
    color: #3060a0;
}

.hero__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 24px;
    color: var(--text-muted);
    max-width: 330px;
}

.hero__btn {
    width: 273px;
}

.hero__infographic {
    height: 520px;
    width: 600px;
    position: relative;
}

.infographic {
    background: url("../img/hero/infographic.png") no-repeat center center;
}

.infographic__text {
    position: absolute;
    border: 1px solid rgba(48, 96, 160, 0.6);
    border-radius: 12px;
    padding: 12px 6px;
    width: 180px;
    background: var(--bg-color);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: var(--text-color);
}

.infographic__text--1 {
    left: 50%;
    transform: translateX(-50%);
    top: calc(50% - 230px);
}

.infographic__text--2 {
    left: 0px;
    top: calc(50% - 142px);
}

.infographic__text--3 {
    right: 0;
    top: calc(50% - 142px);
}

.infographic__text--4 {
    left: 0;
    top: calc(50% + 92px);
}

.infographic__text--5 {
    right: 0;
    top: calc(50% + 92px);
}

.infographic__text--6 {
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(50% - 254px);
}

@media(max-width: 1150px) {
    .hero__title {
        font-size: 74px;
    }

    .hero__subtitle {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding-top: calc(var(--section-padding) + 64px);
        overflow: hidden;
        padding-bottom: 48px;
    }

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

    .hero__content {
        grid-column: span 2;
        text-align: center;
        margin-bottom: 0px;
    }

    .hero__subtitle {
        margin-bottom: 48px;
    }

    .hero__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .infographic {
        margin: 0 auto;
    }
}

@media (max-width: 682px) {
    .hero__row {
        grid-template-columns: 1fr;
    }

    .hero__content {
        grid-column: span 1;
    }

    .infographic {
        max-width: 100%;
        width: 100%;
    }
}

@media(max-width: 420px) {
    .infographic__text {
        font-size: 12px;
        width: auto;
        padding: 12px 16px;
    }

    .infographic__text--6 {
        bottom: calc(50% - 244px);
    }
}

/* Features Box Section */
.features-box {
    background-color: #183050;
    padding: var(--section-padding) 0;
    color: #fff;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.feature-item {
    display: flex;
    flex-direction: column;
}

.feature-item--courses {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.feature-item--courses:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 152px;
    height: 100%;
}

.feature-item__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    flex-shrink: 0;
    object-fit: contain;
}

.feature-item__text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
}

.feature-item__text--small {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.33;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item--courses:nth-child(2n+1) {
        border-left: none;
    }

    .feature-item--courses:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 682px) {
    .features__grid {
        grid-template-columns: 1fr;
    }

    .feature-item--courses {
        border-left: none !important;
    }

    .feature-item--courses:not(:first-child) {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .feature-item__content {
        min-height: auto;
        justify-content: flex-start;
    }
}

.programs {
    padding-top: 96px;
}

.section__row {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.program {
    background: rgba(48, 96, 160, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
}

.program__wrap {
    flex: 1;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.program__image {
    border-radius: 12px;
    width: 184px;
    height: 130px;
    object-fit: cover;
}

.program__text {
    /* padding: 24px; */
    flex: 1;
}

.program__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    color: var(--text-color);
    margin-bottom: 12px;
}

.program__list {
    column-count: 2;
    list-style: disc;
    margin-left: 20px;
}

.program__li {
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    color: var(--text-muted);
}

.program__li::marker {
    font-size: 9px;
}

.program__li:not(:last-child) {
    margin-bottom: 4px;
}

.program__li:nth-child(2n) {
    margin-bottom: 0;
}

.program__information {
    margin: 24px 0;
    border-left: 1px solid rgba(48, 96, 160, 0.6);
    border-right: 1px solid rgba(48, 96, 160, 0.6);
    padding: 0 24px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    min-width: 248px;
    min-height: 64px;
}

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

.program__close::before {
    content: "";
    min-width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 9L9 15M9 9L15 15M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z' stroke='%23F03C50' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
}

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

.program__free::before {
    content: "";
    min-width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 11V15M18 9V13M17 4C19.4487 4 20.7731 4.37476 21.4321 4.66544C21.5199 4.70415 21.5638 4.72351 21.6904 4.84437C21.7663 4.91682 21.9049 5.12939 21.9405 5.22809C22 5.39274 22 5.48274 22 5.66274V16.4111C22 17.3199 22 17.7743 21.8637 18.0079C21.7251 18.2454 21.5914 18.3559 21.3319 18.4472C21.0769 18.5369 20.562 18.438 19.5322 18.2401C18.8114 18.1017 17.9565 18 17 18C15.6077 18 14.2154 18.4308 12.7231 18.8925C11 19.4256 9.14359 20 7 20C4.55129 20 3.22687 19.6252 2.56788 19.3346C2.48012 19.2958 2.43624 19.2765 2.3096 19.1556C2.23369 19.0832 2.09512 18.8706 2.05947 18.7719C2 18.6073 2 18.5173 2 18.3373L2 7.58885C2 6.68009 2 6.2257 2.13628 5.99214C2.2749 5.75456 2.40859 5.64412 2.66806 5.55281C2.92314 5.46305 3.43803 5.56198 4.46783 5.75985C5.18862 5.89834 6.04348 6 7 6C8.3923 6 9.78461 5.56922 11.2769 5.10751C13 4.57437 14.8564 4 17 4ZM14.5 12C14.5 13.3807 13.3807 14.5 12 14.5C10.6193 14.5 9.5 13.3807 9.5 12C9.5 10.6193 10.6193 9.5 12 9.5C13.3807 9.5 14.5 10.6193 14.5 12Z' stroke='%230078F0' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
}

.program__details {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 24px;
    padding-right: 24px;
    transition: all 0.6s ease-in-out;
}

.program__details::after {
    content: "";
    min-width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='%233060A0' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    right: 0;
    transition: all 0.6s ease-in-out;
}

.program__details:hover::after,
.program:hover .program__details::after {
    right: -10px;
}

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

.program__open::before {
    content: "";
    min-width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 12L10.5 15L16.5 9M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z' stroke='%2300B450' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
}

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

.program__soon-open::before {
    content: "";
    min-width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 6V12L16 14M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z' stroke='%237850F0' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
}

@media(max-width: 1024px) {
    .program__list {
        column-count: 1;
    }
}

@media(max-width: 950px) {
    .program__information {
        min-width: 204px;
    }

    .program__title {
        font-size: 16px;
    }

    .program__details {
        padding-right: 0;
        margin-left: 0;
    }
}

@media(max-width: 850px) {
    .section__row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }

    .section__item {
        flex-direction: column;
        align-items: start;
        padding: 24px;
        max-width: 300px;
        min-width: 300px;
        margin: auto;
    }

    .program__wrap {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .program__information {
        border-left: 0;
        border-right: 0;
        padding: 0;
        margin: 0;
        min-height: auto;
    }

    .program__text {
        flex: auto;
    }

    .program__image {
        width: 100%;
        height: auto;
    }
}

@media(max-width: 768px) {
    .section__row {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
    }
}

@media(max-width: 420px) {
    .programs {
        padding-top: 48px;
    }
}

.numbers {}

.numbers__container {
    display: flex;
    gap: 24px;
}

.numbers__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.numbers__image {}

.numbers__number {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 96px;
    line-height: 125%;
    text-align: center;
    color: rgba(48, 96, 160, 0.2);
}

.numbers__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: var(--text-color);
}

@media(max-width: 1030px) {
    .numbers__number {
        font-size: 64px;
    }

    .numbers__image {
        max-width: 60%;
    }
}

@media(max-width: 768px) {
    .numbers__container {
        flex-direction: column;
    }

    .numbers__item {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Section: Learning Structure */
.structure {
    padding-top: 96px;
}

.structure__grid {
    display: grid;
    grid-template-columns: 2.7fr 1fr 2.7fr;
    gap: 24px;
}

.structure__item {
    position: relative;
    padding: 24px;
    border-radius: 12px;
    height: 208px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    overflow: hidden;
}

.structure__item:nth-child(1) {
    grid-column: 1 / 3;
}

.structure__item:nth-child(2) {
    grid-column: 3 / 4;
}

.structure__item:nth-child(3) {
    grid-column: 1 / 2;
}

.structure__item:nth-child(4) {
    grid-column: 2 / 4;
}

@media (max-width: 992px) {
    .structure__grid {
        grid-template-columns: 1fr;
    }

    .structure__item,
    .structure__item:nth-child(1),
    .structure__item:nth-child(2),
    .structure__item:nth-child(3),
    .structure__item:nth-child(4) {
        grid-column: auto;
        height: auto;
        min-height: 180px;
    }
}

.structure__item--blue {
    background: rgba(0, 120, 240, 0.2);
}

.structure__item--purple {
    background: rgba(120, 80, 240, 0.2);
}

.structure__item--green {
    background: rgba(0, 180, 80, 0.2);
}

.structure__item--pink {
    background: rgba(240, 0, 240, 0.2);
}

.structure__bg-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    z-index: 1;
    pointer-events: none;
}

.structure__content {
    position: relative;
    z-index: 2;
    max-width: 53%;
}

.structure__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

@media(max-width: 420px) {
    .structure {
        padding-top: 48px;
    }

    .structure__bg-img {
        display: none;
    }

    .structure__content {
        max-width: 100%;
    }

    .structure__title {
        font-size: 16px;
    }
}

/* Section: Reasons */
.reasons {
    background: #183050;
    color: var(--bg-color);
    padding: 64px 0;
}

.reasons__title {
    color: var(--bg-color);
}

.reasons__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.reasons__item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.reasons__item--full {
    width: 100%;
}

.reasons__item--half {
    width: calc(50% - 12px);
}

.reasons__number {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 128px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.2);
    min-width: 120px;
    text-align: center;
}

.reasons__content {
    flex: 1;
}

.reasons__subtitle {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 4px;
}

.reasons__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.6);
}

@media(max-width: 900px) {
    .reasons__number {
        font-size: 96px;
        min-width: 79px;
    }
}

@media(max-width: 768px) {
    .reasons__item {
        width: 100%;
    }

    .reasons__number {
        font-size: 64px;
        min-width: 64px;
    }
}

@media(max-width: 420px) {
    .reasons {
        padding: 48px 0;
    }

    .reasons__item {
        flex-direction: column;
    }
}

/* Section: Audience */
.audience {
    padding-bottom: 96px;
}

.audience__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.audience__image {
    width: 288px;
    /* height: 400px; */
    object-fit: cover;
    margin-bottom: 12px;
}

.audience__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 4px;
}

.audience__text {
    font-size: 14px;
    line-height: 133%;
    color: rgba(0, 0, 0, 0.6);
}

@media(max-width: 900px) {
    .audience__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience__image {
        width: 100%;
    }
}

@media(max-width: 521px) {
    .audience__grid {
        grid-template-columns: repeat(1, 1fr);

    }

    .audience__item {
        max-width: 288px;
        justify-self: center;
    }
}

@media(max-width: 420px) {
    .audience {
        padding-bottom: 48px;
    }
}

/* Section: Platform */
.platform {
	padding-bottom: 96px;
}

.platform__subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: rgba(48, 96, 160, 0.6);
    margin: -44px auto 48px;
}

.platform__block {
    background-color: var(--primary-light);
    backdrop-filter: blur(64px);
    background-image: url("../img/bgplatform.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    border-radius: 12px;
    padding: 0 48px 0;
    display: flex;
    gap: 24px;
}

.platform__menu {
    flex: 0 0 344px;
    margin-top: 48px;
    margin-bottom: 48px;
}

.platform__menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.platform__menu-item {
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    padding-left: 0;
    position: relative;
    height: 48px;
    padding: 12px;
    border-radius: 12px;
}

.platform__menu-item:hover,
.platform__menu-item--active {
    color: var(--bg-color);
    background: #183050;
}

.platform__visual {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    /* height: 400px; */
		display: flex;
		align-items: center;
}

.platform__image {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.platform__overlay {
    position: absolute;
    bottom: 24px;
    right: 24px;
    backdrop-filter: blur(64px);
    background: #183050;
    border-radius: 16px;
    padding: 16px;
    max-width: 560px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    color: var(--bg-color);
    width: 560px;
		display: none;
}

.platform__overlay-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--bg-color);
    margin-bottom: 16px;
}

.platform__overlay-text {
    font-size: 16px;
}

@media(max-width: 1030px) {
    .platform__menu {
        flex: 0 0 244px;
    }

    .platform__block {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .platform__block {
        flex-direction: column;
        padding: 24px 16px;
        gap: 16px;
        border-radius: 24px;
    }

    .platform__menu {
        flex: 0 0 auto;
        width: 100%;
        overflow: hidden;
        margin: 0;
    }

    .platform__menu-list {
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .platform__menu-list::-webkit-scrollbar {
        display: none;
    }

    .platform__menu-item {
        flex: 0 0 auto;
        padding: 8px 16px;
        font-size: 14px;
        height: auto;
        white-space: nowrap;
    }

    .platform__visual {
        /* height: 620px; */
        /* padding-bottom: 100px; */
    }

    .platform__overlay {
        bottom: 12px;
        right: 12px;
        left: 12px;
        max-width: none;
        padding: 12px;
        width: auto;
    }

    .platform__overlay-text {
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .platform {
        padding-bottom: 48px;
    }
		.platform__subtitle {
			margin-top: -30px;			
		}
}

/* Section: Organizers */
.organizers {
    background: #183050;
    color: var(--bg-color);
    padding: 64px 0;
}

.organizers__title {
    color: var(--bg-color);
}

.organizers__grid {
    display: grid;
    grid-template-columns: 2fr 392px;
    gap: 24px;
}

.organizers__logo {
    height: 80px;
    margin-bottom: 24px;
}

.organizers__subtitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    margin-bottom: 4px;
}

.organizers__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.6);
}

@media(max-width: 768px) {
    .organizers__grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 420px) {
    .organizers {
        padding: 48px 0;
    }

    .organizers__title {
        font-size: 24px;
    }

    .organizers__subtitle {
        font-size: 20px;
    }
}

.documents {
    padding-top: 96px;
}

.documents__container {
    display: flex;
    gap: 24px;
}

.documents__item {
    flex: 1;
    text-align: center;
}

.documents__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 4px;
}

.documents__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 auto 24px;
    max-width: 560px;
}

.documents__text:not(:last-child) {
    margin-bottom: 12px;
}

.documents__image {
    margin: 0 auto;
}

.documents__subtitle {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 4px;
}

.documents__item--id-card img {
    margin-bottom: 24px;
}

.documents__link {
    margin: 0 auto;
    width: 320px;
}

@media(max-width: 768px) {
    .documents__container {
        flex-direction: column;
    }

    .documents__item {
        display: flex;
        align-items: center;
        gap: 24px;
        text-align: left;
    }

    .documents__image {
        max-width: 200px;
        order: -1;
    }

    .documents__item--id-card img {
        max-width: 200px;
    }

    .documents__text,
    .documents__title,
    .documents__subtitle {
        text-align: left;
    }

    .documents__link {
        margin: 0;
    }
}

@media(max-width: 600px) {
    .documents__item {
        flex-direction: column;
        text-align: center;
    }

    .documents__text,
    .documents__title,
    .documents__subtitle {
        text-align: center;
    }

    .documents__item--id-card img {
        max-width: 300px;
    }
}

@media(max-width: 420px) {
    .documents {
        padding-top: 48px;
    }

    .documents__title,
    .documents__subtitle {
        font-size: 24px;
    }
}

/* Section: Slider (reviews) */
.reviews__slider-container {
    padding: 0 0 60px;
    overflow: hidden;
    position: relative;
    max-width: 1264px;
    margin: 0 auto;
}

.reviews__slider {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 520px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.reviews__item {
    flex: 0 0 268px;
    /* height: 160px; */
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    opacity: 0.6;
}

.reviews__item--active {
    flex: 0 0 640px;
    /* height: 320px; */
    opacity: 1;
}

.reviews__item--active .reviews__image {
    transform: scale(1);
    width: 320px;
    height: 320px;
}

.reviews__image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: scale(1);
    margin: 0 auto 12px;
}

.reviews__no-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(64px);
    background: rgba(48, 96, 160, 0.6);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #fff;
    margin: 0 auto 12px;
    transition: transform 0.5s ease;
    transform: scale(1);
}

.reviews__item--active .reviews__no-image {
    transform: scale(1);
    width: 320px;
    height: 320px;
}

.reviews__fio {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 4px;
}

.reviews__post {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 12px;
}

.reviews__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: var(--text-color);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.reviews__item--active .reviews__text {
    max-height: 200px;
    opacity: 1;
}

.reviews__navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.reviews__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews__arrow:hover {
    background: var(--primary-color);
    color: #fff;
}

.reviews__dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.reviews__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(48, 96, 160, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews__dot--active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.reviews__slider--no-transition,
.reviews__slider--no-transition * {
    transition: none !important;
}

@media(max-width: 1250px) {
    .reviews__container {
        padding: 0;
    }
}

@media(max-width: 1030px) {
    .reviews__container {
        padding: 0;
    }

    .reviews__slider-container {
        overflow: hidden;
    }

    .reviews__item {
        flex: 0 0 100%;
        opacity: 0;
        pointer-events: none;
        padding: 0 16px;
        box-sizing: border-box;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reviews__item--active {
        flex: 0 0 100%;
        opacity: 1;
        pointer-events: auto;
    }

    .reviews__image,
    .reviews__no-image {
        width: 180px;
        height: 180px;
        transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reviews__item--active .reviews__image {
        width: 240px;
        height: 240px;
    }

    .reviews__item--active .reviews__no-image {
        width: 240px;
        height: 240px;
    }

    .reviews__fio {
        font-size: 18px;
    }

    .reviews__slider {
        min-height: 420px;
        gap: 0;
    }
}

@media(max-width: 420px) {
    .reviews__slider-container {
        padding: 0;
    }

    .reviews__image,
    .reviews__no-image {
        width: 120px;
        height: 120px;
        transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reviews__item--active .reviews__image {
        width: 160px;
        height: 160px;
    }

    .reviews__item--active .reviews__no-image {
        width: 160px;
        height: 160px;
    }
}

/* Section: Contact Form & Modal Form common styles */
.contacts {
	padding-bottom: 96px;
}

.contacts__row {
    backdrop-filter: blur(64px);
    background: rgba(48, 96, 160, 0.1);
    border-radius: 12px;
    padding: 48px;
}

.contacts__title {
    text-align: left;
    margin-bottom: 4px;
}

.contacts__subtitle {
    text-align: left;
    margin-bottom: 48px;
}

.contacts__subtitle span {
    max-width: 700px;
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: rgba(48, 96, 160, 0.6);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form__input-group {
    flex: 1;
    position: relative;
}

.form__input {
    width: 100%;
    max-width: 273px;
    border: 1px solid rgba(48, 96, 160, 0.6);
    border-radius: 12px;
    padding: 12px;
    backdrop-filter: blur(64px);
    background: rgba(48, 96, 160, 0.1);
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 137%;
    transition: all 0.3s ease;
}

.form__input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(48, 96, 160, 0.1);
    border: 1px solid #3060a0;
    background: rgba(48, 96, 160, 0.2);
}

.form__error {
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.form__input--invalid {
    border-color: #ff4d4f;
}

.form__input--invalid+.form__error {
    display: block;
}

.form__btn {
    width: 273px;
}

.form__row--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form__actions {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

/* Custom Checkbox */
.form__checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}

.form__checkbox-label a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #0078f0;
}

.form__checkbox-label a:hover {
    text-decoration: none;
}

.form__checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.form__checkbox:checked {
    background: var(--primary-color);
}

.form__checkbox:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 0;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@media(max-width: 1030px) {
    .form__row {
        flex-wrap: wrap;
    }

    .form__input-group {
        flex: 1 1 50%;
        max-width: calc(50% - 12px);
    }

    .form__input {
        max-width: 100%;
    }

    .form__btn {
        flex: 1 1 50%;
        max-width: calc(50% - 12px);
    }

    .modal .form__input-group {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media(max-width: 600px) {
    .form__input-group {
        flex: 1 1 100%;
        max-width: 100%;
    }

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

    .form__btn {
        flex: 1 1 100%;
        max-width: 100%;
    }


}

@media(max-width: 521px) {
    .contacts__row {
        padding: 48px 24px
    }
}

@media(max-width: 420px) {
	.contacts {
		padding-bottom: 48px;
	}
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

@media (max-height: 685px) {
    .modal {
        align-items: flex-start;
        overflow-y: auto;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.modal--active {
    display: flex;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 640px;
    padding: 64px 48px;
    border-radius: 24px;
    z-index: 2001;
    animation: modalAppear 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal__title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    line-height: normal;
}

.modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    opacity: 0.6;
}

.modal .form__input {
    max-width: 100%;
}

.modal .btn {
    margin-top: 24px;
    width: 320px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 420px) {
    .modal__content {
        padding: 48px 24px;
    }

    .modal__title {
        font-size: 18px;
    }

    .modal .btn {
        width: 100%;
    }
}

/* Custom Select */
.select {
    position: relative;
    width: 100%;
}

.select__trigger {
    width: 100%;
    padding: 11px 16px;
    border: 1px solid rgba(48, 96, 160, 0.6);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(64px);
    background: rgba(48, 96, 160, 0.1);
}

.select__trigger span {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: rgba(0, 0, 0, 0.6);
		overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.select__options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(48, 96, 160, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(64px);
    box-shadow: 0 4px 12px 0 rgba(48, 96, 160, 0.25);
    z-index: 10;
    display: none;
    padding: 8px 0;
}

.select--active .select__options {
    display: block;
}

.select__option {
    padding: 12px 24px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select__option:hover {
    background: #f8fafc;
}

.select__option--selected {
    background: rgba(48, 96, 160, 0.05);
}

.select__option--selected .select__check {
    display: block !important;
    color: var(--primary-color);
}

.select__option:hover .select__check {
    display: block !important;
}

.select__option--header {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--text-color);
    pointer-events: none;
}

.select__option-name {
    margin-left: 12px;
}

.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--success-color);
    color: #fff;
    padding: 24px 48px;
    border-radius: 12px;
    font-weight: 700;
    z-index: 3000;
    display: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.footer {
    background: var(--dark-bg);
    backdrop-filter: blur(64px);
    color: #fff;
    padding: 64px 0;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    gap: 48px;
}

.footer__logos {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.footer__logo {
    height: 40px;
}

.footer__address {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.footer__contact {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.footer__socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer__social-link {
    width: 48px;
    height: 48px;
    border: 1px solid var(--primary-semi);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.footer__social-link:hover {
    background: var(--bg-color);
}

.footer__social-link:hover svg path {
    fill: var(--primary-color);
}

.footer__column-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    margin-bottom: 24px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__link {
    font-size: 14px;
}

.footer__link:hover {
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

@media(max-width: 850px) {
    .footer__container {
        gap: 24px
    }

    .footer__logos {
        flex-wrap: wrap;
    }
}

@media(max-width: 768px) {
    .footer__container {
        flex-wrap: wrap;
        gap: 48px
    }

    .footer__info {
        flex: 1 1 100%;
    }

    .footer__column {
        flex: 1 1 calc(50% - 24px);
    }
}

@media(max-width: 521px) {
    .footer__column {
        flex: 1 1 100%;
    }
}

@media(max-width: 420px) {
    .footer {
        padding: 48px 0;
    }

    .footer__column-title {
        font-size: 20px;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60c0ff 0%, #3060a0 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1100;
    box-shadow: 0 4px 16px rgba(48, 96, 160, 0.35);
}

.scroll-to-top--visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(48, 96, 160, 0.5);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 682px) {
    .scroll-to-top {
        bottom: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark-bg);
    color: #fff;
    padding: 20px 0;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.cookie-banner--hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner__text {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
}

.cookie-banner__text a {
    color: #60c0ff;
    text-decoration: underline;
}

.cookie-banner__text a:hover {
    color: #fff;
}

.cookie-banner__btn {
    display: inline-block;
    padding: 10px 32px;
    background: linear-gradient(90deg, #60c0ff 0%, #3060a0 100%);
    color: #fff;
    border-radius: 12px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cookie-banner__btn:hover {
    background: linear-gradient(90deg, #3060a0 0%, #60c0ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 96, 160, 0.3);
}

@media (max-width: 682px) {
    .cookie-banner__container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .cookie-banner__btn {
        width: 100%;
    }
}