:root {
    --color-bg: #0A0E1A;
    --color-bg-secondary: #12162B;
    --color-bg-tertiary: #1A1F3A;
    --color-text: #E8EAF6;
    --color-text-muted: #8E95B4;
    --color-primary: #7B2FF7;
    --color-primary-dark: #5A1FBF;
    --color-primary-light: #A366FF;
    --color-accent: #00D4FF;
    --color-accent-green: #00F5C8;
    --color-cream: #F0F0FF;
    --font-main: 'Inter', sans-serif;
    --space-xs: 0.5rem;
    --space-s: 1rem;
    --space-m: 2rem;
    --space-l: 4rem;
    --space-xl: 8rem;
    --border-radius: 20px;
    --transition: 0.3s ease;
    --glass-bg: rgba(18, 22, 43, 0.55);
    --glass-border: rgba(123, 47, 247, 0.12);
    --glass-blur: blur(18px);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

input,
button {
    font-family: inherit;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-s);
}

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

.section-title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: var(--space-l);
    color: var(--color-cream);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title span {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    box-shadow: 0 4px 24px rgba(123, 47, 247, 0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(123, 47, 247, 0.5), 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary-light);
}

.btn--outline:hover {
    background: rgba(123, 47, 247, 0.1);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

.link-btn {
    background: none;
    border: none;
    color: var(--color-accent);
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 47, 247, 0.08);
    padding: var(--space-s) 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
}

.logo__text {
    background: linear-gradient(135deg, var(--color-cream), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-m);
}

.nav__list {
    display: flex;
    gap: var(--space-m);
}

.nav__link {
    color: var(--color-text-muted);
    font-weight: 500;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--color-accent);
}

.nav__link:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-cream);
    transition: var(--transition);
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
@media (max-width: 1024px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--color-bg-secondary);
        padding: var(--space-xl) var(--space-m);
        transition: var(--transition);
        z-index: 1000;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .header__btn {
        margin-top: var(--space-m);
        width: 100%;
        text-align: center;
    }

    .nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: var(--space-m);
        font-size: 1.2rem;
    }

    .burger {
        display: flex;
    }
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* =================== HERO =================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-bg);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.18), transparent 65%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 60%);
    border-radius: 50%;
    animation: heroGlow 10s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@keyframes heroGlow {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(20px, -10px);
    }
}

.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-l);
    align-items: center;
}

.hero__text {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    color: var(--color-accent);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    margin-bottom: var(--space-m);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: var(--glass-blur);
}

.hero__title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: var(--space-s);
    color: var(--color-cream);
    font-weight: 700;
    letter-spacing: -1px;
}

.hero__title span {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-m);
    line-height: 1.7;
}

/* Hero Visual — Neural Network */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero__neural {
    width: 380px;
    height: 380px;
    position: relative;
}

.hero__neural-node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.2);
    animation: nodePulse 3s ease-in-out infinite;
}

.hero__neural-node:nth-child(1) { top: 10%; left: 50%; animation-delay: 0s; }
.hero__neural-node:nth-child(2) { top: 30%; left: 15%; animation-delay: 0.4s; }
.hero__neural-node:nth-child(3) { top: 30%; left: 85%; animation-delay: 0.8s; }
.hero__neural-node:nth-child(4) { top: 55%; left: 30%; animation-delay: 1.2s; }
.hero__neural-node:nth-child(5) { top: 55%; left: 70%; animation-delay: 0.2s; }
.hero__neural-node:nth-child(6) { top: 80%; left: 20%; animation-delay: 0.6s; }
.hero__neural-node:nth-child(7) { top: 80%; left: 50%; animation-delay: 1s; }
.hero__neural-node:nth-child(8) { top: 80%; left: 80%; animation-delay: 1.4s; }

.hero__neural-node::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.2);
    animation: nodeRing 3s ease-in-out infinite;
}

.hero__neural-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.6), rgba(0, 212, 255, 0.3));
    box-shadow: 0 0 50px rgba(123, 47, 247, 0.4), 0 0 100px rgba(0, 212, 255, 0.15);
    animation: corePulse 4s ease-in-out infinite;
}

.hero__neural-core::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(123, 47, 247, 0.15);
    animation: coreRing 6s linear infinite;
}

.hero__neural-core::after {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 212, 255, 0.1);
    animation: coreRing 8s linear infinite reverse;
}

/* Neural SVG lines */
.hero__neural-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__neural-lines line {
    stroke: url(#neuralGrad);
    stroke-width: 1;
    opacity: 0.25;
    animation: lineFlash 4s ease-in-out infinite;
}

.hero__neural-lines line:nth-child(odd) { animation-delay: 0.5s; }
.hero__neural-lines line:nth-child(even) { animation-delay: 1.5s; }

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.4); opacity: 1; }
}

@keyframes nodeRing {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(2); opacity: 0; }
}

@keyframes corePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes coreRing {
    to { transform: rotate(360deg); }
}

@keyframes lineFlash {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.5; }
}

/* Hero Stats Bar */
.hero__stats {
    display: flex;
    gap: var(--space-m);
    margin-top: var(--space-l);
    padding-top: var(--space-m);
    border-top: 1px solid rgba(123, 47, 247, 0.1);
}

.hero__stat {
    text-align: left;
}

.hero__stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero__stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

@media (max-width: 900px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__text {
        max-width: 100%;
    }

    .hero__visual {
        display: none;
    }

    .hero__title {
        font-size: 2.4rem;
    }

    .hero__stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.9rem;
    }

    .hero__stats {
        flex-direction: column;
        align-items: center;
        gap: var(--space-s);
    }

    .hero__stat {
        text-align: center;
    }
}

/* =================== FEATURES =================== */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-m);
}

.feature-card {
    background: var(--glass-bg);
    padding: var(--space-m);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    backdrop-filter: var(--glass-blur);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(123, 47, 247, 0.3);
    box-shadow: 0 20px 50px rgba(123, 47, 247, 0.15), 0 0 30px rgba(0, 212, 255, 0.05);
}

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

.feature-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.15), rgba(0, 212, 255, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: var(--space-s);
    border: 1px solid rgba(123, 47, 247, 0.1);
}

.feature-card__title {
    font-size: 1.15rem;
    color: var(--color-cream);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.feature-card__text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =================== SERVICES =================== */
.services {
    background: var(--color-bg-secondary);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-m);
}

.service-card {
    background: var(--glass-bg);
    border-radius: var(--border-radius);
    padding: var(--space-m);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(123, 47, 247, 0.25);
    box-shadow: 0 15px 45px rgba(123, 47, 247, 0.12), 0 0 25px rgba(0, 212, 255, 0.05);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.15), rgba(0, 212, 255, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: var(--space-s);
    border: 1px solid rgba(123, 47, 247, 0.1);
}

.service-card__content h3 {
    font-size: 1.2rem;
    color: var(--color-cream);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.service-card__content p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-s);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card__content .btn {
    margin-top: auto;
    align-self: flex-start;
}

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

/* =================== REVIEWS =================== */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-m);
}

.review-card {
    background: var(--glass-bg);
    padding: var(--space-m);
    border-radius: var(--border-radius);
    position: relative;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    backdrop-filter: var(--glass-blur);
}

.review-card:hover {
    border-color: rgba(123, 47, 247, 0.2);
    box-shadow: 0 10px 30px rgba(123, 47, 247, 0.08);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-s);
    margin-bottom: var(--space-s);
}

.review-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.review-card__header h4 {
    color: var(--color-cream);
    font-weight: 600;
    font-size: 1rem;
}

.stars {
    color: var(--color-accent);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.review-card__text {
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* =================== CTA Section =================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-bg-tertiary), var(--color-bg-secondary));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(123, 47, 247, 0.08), transparent 50%);
    pointer-events: none;
}

/* =================== CONTACTS =================== */
.contacts__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-l);
    background: var(--glass-bg);
    padding: var(--space-l);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
}

@media (max-width: 768px) {
    .contacts__wrapper {
        grid-template-columns: 1fr;
        padding: var(--space-m);
    }
}

.contacts__list li {
    margin-bottom: var(--space-s);
    color: var(--color-text-muted);
}

.contacts__list strong {
    color: var(--color-cream);
    font-weight: 500;
}

.form-group {
    margin-bottom: var(--space-s);
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 14, 26, 0.7);
    border: 1px solid rgba(123, 47, 247, 0.12);
    border-radius: 12px;
    color: var(--color-cream);
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(123, 47, 247, 0.15);
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: var(--space-s);
    color: var(--color-text-muted);
}

.form-input--short {
    width: 80px;
    text-align: center;
}

/* Spinner */
.btn__loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
}

.btn.loading .btn__text {
    opacity: 0;
}

.btn.loading .btn__loader {
    display: block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =================== FOOTER =================== */
.footer {
    background: #060914;
    padding: var(--space-l) 0 var(--space-m) 0;
    border-top: 1px solid rgba(123, 47, 247, 0.06);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-m);
    margin-bottom: var(--space-l);
}

.footer h4 {
    color: var(--color-cream);
    margin-bottom: var(--space-s);
    font-weight: 600;
}

.footer__col p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer__desc {
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
}

.footer__col ul li {
    margin-bottom: 0.5rem;
}

.footer__col ul li button,
.footer__col ul li a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 0;
    width: fit-content;
}

.footer__col ul li button:hover,
.footer__col ul li a:hover {
    color: var(--color-accent);
}

.footer__bottom {
    text-align: center;
    padding-top: var(--space-m);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.logo--small {
    font-size: 1rem;
    margin-bottom: var(--space-s);
}

/* =================== MODALS =================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--color-bg-secondary);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: var(--border-radius);
    padding: var(--space-m);
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    display: none;
    flex-direction: column;
}

.modal.active {
    display: flex;
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal__content {
    overflow-y: auto;
    padding-right: 10px;
}

/* Scrollbar */
.modal__content::-webkit-scrollbar {
    width: 6px;
}

.modal__content::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

.modal__content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.modal h3 {
    margin-bottom: var(--space-s);
    color: var(--color-accent);
}

.modal p,
.modal ul {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.modal ul {
    padding-left: 1.2rem;
    list-style: disc;
}

/* =================== COOKIE POPUP =================== */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-primary);
    padding: var(--space-m);
    border-radius: var(--border-radius);
    z-index: 1500;
    max-width: 350px;
    box-shadow: 0 10px 50px rgba(123, 47, 247, 0.2);
    transform: translateY(150%);
    transition: transform 0.5s ease;
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-popup__content p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.cookie-popup__actions {
    display: flex;
    gap: var(--space-s);
    margin-top: var(--space-s);
}