:root {
    --bg: #080914;
    --bg-soft: #101225;
    --card: rgba(255, 255, 255, 0.08);
    --card-strong: rgba(255, 255, 255, 0.12);
    --text: #eef2ff;
    --muted: #b7bfdc;
    --line: rgba(255, 255, 255, 0.12);
    --purple: #8b5cf6;
    --violet: #7c3aed;
    --blue: #38bdf8;
    --cyan: #67e8f9;
    --success: #34d399;
    --danger: #fb7185;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --radius: 18px;
    --radius-sm: 14px;
    --container: 1200px;
    --grad-main: linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(56, 189, 248, 0.9));
    --grad-soft: linear-gradient(180deg, rgba(139, 92, 246, 0.18), rgba(56, 189, 248, 0.08));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.22), transparent 32%),
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 28%),
        radial-gradient(circle at bottom center, rgba(139, 92, 246, 0.14), transparent 26%),
        linear-gradient(180deg, #070811 0%, #0a0c17 30%, #090b15 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
}

body::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at center, black 42%, transparent 100%);
    opacity: 0.35;
}

body::after {
    background:
        radial-gradient(circle at 20% 10%, rgba(103, 232, 249, 0.09), transparent 18%),
        radial-gradient(circle at 80% 15%, rgba(139, 92, 246, 0.14), transparent 22%),
        radial-gradient(circle at 55% 85%, rgba(56, 189, 248, 0.08), transparent 18%);
}

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

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

button,
input {
    font: inherit;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

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

.section-header {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #dbe4ff;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(14px);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    box-shadow: 0 0 16px rgba(103, 232, 249, 0.8);
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

h1 {
    font-size: clamp(40px, 7vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 800;
}

h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 800;
    margin-bottom: 16px;
}

h3 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 12px;
}

.lead {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--muted);
}

.muted {
    color: var(--muted);
}

.glass {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    border-radius: 14px;
    background: var(--grad-main);
    color: white;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(124, 58, 237, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 44px rgba(56, 189, 248, 0.22), 0 16px 40px rgba(124, 58, 237, 0.28);
    filter: brightness(1.05);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text);
    box-shadow: none;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 24px;
}

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

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

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero {
    padding: 24px 0 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.8;
    pointer-events: none;
}

.hero::before {
    width: 320px;
    height: 320px;
    background: rgba(124, 58, 237, 0.25);
    top: 30px;
    left: -40px;
}

.hero::after {
    width: 380px;
    height: 380px;
    background: rgba(56, 189, 248, 0.18);
    right: -40px;
    top: 90px;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 0;
    background: linear-gradient(180deg, rgba(8, 9, 20, 0.82), rgba(8, 9, 20, 0.35), transparent);
    backdrop-filter: blur(18px);
}

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

/* hamburger */
.nav__toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav__toggle span {
    width: 18px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

/* mobile menu */
.nav__mobile {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 12, 25, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: 0.3s;
}

.nav__mobile.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav__mobile a {
    font-size: 16px;
    color: #ccd;
}

/* animation hamburger */
.nav__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.logo {
    max-width: 14rem;
    display: inline-block;
}

.logo img {
    max-width: 100%;
}

/* responsive */
@media (max-width: 768px) {

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        flex-direction: column;
        align-items: flex-start;
        gap: 16px;

        padding: 20px;

        background: rgba(10, 12, 25, 0.95);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);

        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: 0.3s;
    }

    .nav__menu.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav__btn {
        width: 100%;
        margin-top: 10px;
    }
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.brand__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(56, 189, 248, 0.95));
    display: grid;
    place-items: center;
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.brand__icon::before,
.brand__icon::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 999px;
}

.brand__icon::before {
    width: 18px;
    height: 3px;
    transform: rotate(45deg);
}

.brand__icon::after {
    width: 3px;
    height: 18px;
    transform: rotate(45deg);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 14px;
}

.nav__menu a:hover {
    color: var(--text);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 670px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 10%, #d8cbff 35%, #67e8f9 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.stat-chip {
    padding: 18px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.stat-chip::before {
    content: "";
    position: absolute;
    inset: auto -20% -30% auto;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(103, 232, 249, 0.14), transparent 70%);
}

.stat-chip strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-card {
    border-radius: 22px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.form-title {
    font-size: 28px;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--muted);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 14px;
}

.input {
    width: 100%;
    height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    padding: 0 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.input::placeholder {
    color: #95a2cc;
}

.input:focus {
    border-color: rgba(103, 232, 249, 0.75);
    box-shadow: 0 0 0 4px rgba(103, 232, 249, 0.12), 0 0 24px rgba(124, 58, 237, 0.15);
    transform: translateY(-1px);
}

.form-note {
    font-size: 12px;
    color: #95a2cc;
    margin-top: 12px;
}

.floating {
    position: absolute;
    border-radius: 20px;
    animation: floatY 6s ease-in-out infinite;
    pointer-events: none;
}

.floating.one {
    top: 14%;
    left: 52%;
    width: 160px;
    padding: 14px 16px;
    animation-delay: 0s;
}

.floating.two {
    right: 9%;
    bottom: 10%;
    width: 140px;
    padding: 14px 16px;
    animation-delay: 1.5s;
}

.floating strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.about-box,
.content-box,
.knowledge-box,
.education-box,
.split-box {
    border-radius: 22px;
    padding: 28px;
}

.feature-card,
.step-card,
.material-card,
.highlight-card {
    border-radius: 20px;
    padding: 24px;
    height: 100%;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.feature-card:hover,
.step-card:hover,
.material-card:hover,
.highlight-card:hover,
.content-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(103, 232, 249, 0.2);
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.24), rgba(56, 189, 248, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.icon {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 1.8;
    fill: none;
    opacity: 0.95;
}

.split-layout,
.education-layout,
.knowledge-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.media-card {
    border-radius: 24px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 25% 25%, rgba(103, 232, 249, 0.18), transparent 24%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.2), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
}

.dashboard-visual {
    position: absolute;
    inset: auto 24px 24px 24px;
    height: 72%;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(14, 16, 35, 0.9), rgba(8, 9, 20, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 12px;
    color: #dbe4ff;
    font-size: 14px;
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.chart-area {
    position: relative;
    height: calc(100% - 58px);
    padding: 12px 18px 18px;
}

.chart-grid {
    position: absolute;
    inset: 12px 18px 18px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100% 20%, 16.666% 100%;
    border-radius: 14px;
    opacity: 0.5;
}

.chart-line,
.chart-line.two,
.chart-line.three {
    position: absolute;
    inset: 22px 24px 24px;
}

.chart-line svg,
.chart-line.two svg,
.chart-line.three svg {
    width: 100%;
    height: 100%;
}

.chart-line path:nth-child(1) {
    fill: rgba(56, 189, 248, 0.12);
}

.chart-line path:nth-child(2) {
    stroke: #67e8f9;
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    filter: drop-shadow(0 0 14px rgba(103, 232, 249, 0.45));
}

.chart-line.two path:nth-child(1) {
    fill: rgba(139, 92, 246, 0.08);
}

.chart-line.two path:nth-child(2) {
    stroke: #8b5cf6;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    opacity: 0.9;
}

.chart-line.three path:nth-child(1) {
    fill: none;
}

.chart-line.three path:nth-child(2) {
    stroke: rgba(255, 255, 255, 0.55);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 6 8;
    opacity: 0.75;
}

.floating-badge {
    position: absolute;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(11, 14, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    animation: floatY 6s ease-in-out infinite;
    z-index: 2;
}

.floating-badge strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.floating-badge.top-right {
    top: 26px;
    right: 22px;
}

.floating-badge.bottom-left {
    bottom: 26px;
    left: 22px;
    animation-delay: 1.3s;
}

.accordion {
    display: grid;
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
}

.accordion-item {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(16px);
}

.accordion-trigger {
    width: 100%;
    padding: 22px 24px;
    background: transparent;
    color: var(--text);
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
}

.accordion-trigger span:last-child {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 22px;
    flex-shrink: 0;
    transition: transform 0.24s ease;
}

.accordion-item.active .accordion-trigger span:last-child {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.accordion-inner {
    padding: 0 24px 22px;
    color: var(--muted);
}

.steps-wrap {
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.16), rgba(56, 189, 248, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--grad-main);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 16px;
    box-shadow: 0 10px 24px rgba(124, 58, 237, 0.24);
}

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

.highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.highlight-number {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 800;
    line-height: 1;
    margin: 8px 0 12px;
    background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 46%, #67e8f9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.particle-field {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(103, 232, 249, 0.6);
    box-shadow: 0 0 12px rgba(103, 232, 249, 0.5);
    animation: particleFloat linear infinite;
}

footer {
    padding: 42px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 6, 14, 0.7);
    backdrop-filter: blur(18px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.footer-links {
    display: grid;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #97a4cb;
    font-size: 13px;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: transform, opacity;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.9;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-120vh) scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 1080px) {

    .hero__grid,
    .split-layout,
    .education-layout,
    .knowledge-layout,
    .footer-grid,
    .grid-4,
    .grid-3,
    .content-grid,
    .highlights {
        grid-template-columns: 1fr 1fr;
    }

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

    .hero {
        min-height: auto;
        padding-top: 32px;
    }

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

@media (max-width: 760px) {
    .section {
        padding: 72px 0;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .split-layout,
    .education-layout,
    .knowledge-layout,
    .content-grid,
    .highlights,
    .footer-grid,
    .hero__stats {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .about-box,
    .content-box,
    .knowledge-box,
    .education-box,
    .split-box,
    .steps-wrap,
    .feature-card,
    .step-card,
    .material-card,
    .highlight-card {
        padding: 22px;
    }

    .media-card {
        min-height: 340px;
    }

    .floating.one,
    .floating.two {
        display: none;
    }

    .hero__actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

.cookie {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: calc(100% - 40px);
    max-width: 900px;
    z-index: 999;

    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
}

.cookie.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.cookie__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 20px 24px;
    border-radius: 16px;

    background: rgba(15, 16, 33, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cookie__content p {
    margin: 0;
    font-size: 14px;
    color: #ccd;
    max-width: 600px;
}

.cookie__actions {
    display: flex;
    gap: 10px;
}

/* mobile */
@media (max-width: 768px) {
    .cookie__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie__actions {
        width: 100%;
    }

    .cookie__actions button {
        flex: 1;
    }
}
.lang-select {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: sans-serif;
}

/* текущий язык */
.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;

    background: rgba(0,0,0,0.7);
    color: #fff;

    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;

    backdrop-filter: blur(10px);
}

/* dropdown */
.lang-dropdown {
    position: absolute;
    bottom: 110%;
    left: 0;

    display: none;
    flex-direction: column;
    gap: 5px;

    background: rgba(0,0,0,0.9);
    padding: 6px;
    border-radius: 10px;
}

.lang-select.open .lang-dropdown {
    display: flex;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #fff;
    text-decoration: none;

    padding: 6px 10px;
    border-radius: 6px;

    transition: 0.2s;
}

.lang-dropdown a:hover {
    background: rgba(255,255,255,0.1);
}

.lang-dropdown a.active {
    background: rgba(255,255,255,0.2);
}

/* флаги */
.lang-select img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
