:root {
    --bg-dark: #0a0a0b;
    --bg-card: #141417;
    --accent: #00ff9d;
    --text-main: #e0e0e0;
    --text-dim: #949494;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --container-width: 1280px;
}

/* Reset & Global */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { 
    scroll-behavior: smooth; 
    scroll-snap-type: y mandatory; /* Эффект книги */
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo__text {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

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

.section-snap {
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn--outline {
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn--outline:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 11, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo__dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent);
}

.logo__text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.nav__list {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dim);
}

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

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 80px 0 40px;
    scroll-snap-align: end;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer__title {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer__description {
    color: var(--text-dim);
    margin-top: 20px;
    max-width: 300px;
}

.footer__links li { margin-bottom: 12px; }
.footer__links a { color: var(--text-dim); font-size: 0.95rem; }
.footer__links a:hover { color: var(--accent); padding-left: 5px; }

.footer__contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.footer__contact-info svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* Mobile Adaptive */
@media (max-width: 992px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .nav { display: none; }
}

@media (max-width: 576px) {
    .footer__grid { grid-template-columns: 1fr; }
    .header__btn { display: none; }
}
/* ================= Hero Section ================= */
.hero {
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Компенсация фиксированного хедера */
}

/* Фоновое свечение */
.hero__bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.15) 0%, rgba(10, 10, 11, 0) 70%);
    filter: blur(80px);
    z-index: -1;
    opacity: 0; /* GSAP покажет */
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    height: 100%;
}

.hero__content {
    max-width: 600px;
    z-index: 2;
}

/* Декоративный бейдж */
.hero__badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 4px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
}

.hero__title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
}

.text-accent {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

/* Подчеркивание для акцентного текста */
.text-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 255, 157, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 480px;
    opacity: 0;
    transform: translateY(30px);
}

.hero__actions {
    opacity: 0;
    transform: translateY(30px);
}

/* Hero SVG Visual */
.hero__visual {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.neural-svg {
    width: 120%;
    height: auto;
    max-height: 700px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 157, 0.2));
    opacity: 0; /* GSAP покажет */
    transform: scale(0.95);
}

/* Стили для SVG элементов до анимации */
.neural-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000; /* Скрываем линии */
}

.neural-node {
    transform-box: fill-box;
    transform-origin: center;
    opacity: 0;
}

.neural-signal {
    filter: blur(2px);
    opacity: 0.8;
}

/* Адаптив Hero */
@media (max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding-bottom: 40px;
    }
    
    .hero__content {
        margin: 0 auto;
        order: 1; /* Текст под анимацией на планшетах */
    }

    .hero__visual {
        order: 0;
        height: 50vh;
    }
    
    .neural-svg {
        width: 100%;
        max-height: 400px;
    }

    .hero__title { font-size: 2.5rem; }
    .hero__subtitle { margin: 0 auto 30px; }
}

@media (max-width: 576px) {
    .hero__title { font-size: 2rem; }
}
/* ================= Learning Section ================= */
.learning {
    background: radial-gradient(circle at bottom left, rgba(0, 255, 157, 0.05), transparent 40%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.0rem;
    margin-bottom: 15px;
    color: var(--white);
}

.section-subtitle {
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}

.learning__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* 3D Tilt Card */
.tilt-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    height: 400px;
    overflow: hidden;
    transform-style: preserve-3d; /* Важно для 3D эффекта внутри */
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.tilt-card:hover {
    border-color: var(--accent);
}

.tilt-card__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateZ(50px); /* Выносит контент вперед */
}

.tilt-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--accent);
    transform: translateZ(30px);
}

.tilt-card__icon svg {
    width: 32px;
    height: 32px;
}

.tilt-card__title {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.tilt-card__text {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
}

.tilt-card__step {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 4rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    transition: 0.3s;
}

.tilt-card:hover .tilt-card__step {
    color: rgba(0, 255, 157, 0.08);
    transform: scale(1.1) translateZ(20px);
}

/* Adaptive Learning */
@media (max-width: 768px) {
    .learning { height: auto; padding: 100px 0; }
    .tilt-card { height: 350px; }
}
/* ================= Tech Section (Marquee) ================= */
.tech {
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech__marquee-wrapper {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    /* Создаем эффект затухания по краям */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.tech__marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 20px;
}

.tech__track {
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    min-width: 100%;
    animation: scroll-left 30s linear infinite;
}

.tech__marquee--reverse .tech__track {
    animation: scroll-right 30s linear infinite;
}

.tech__item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.tech__item span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dim);
    white-space: nowrap;
}

.tech__item:hover {
    border-color: var(--accent);
    background: rgba(0, 255, 157, 0.05);
}

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

/* Остановка при наведении */
.tech__marquee:hover .tech__track {
    animation-play-state: paused;
}

/* Animations */
@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 10px)); }
}

@keyframes scroll-right {
    from { transform: translateX(calc(-50% - 10px)); }
    to { transform: translateX(0); }
}

/* Adaptive */
@media (max-width: 768px) {
    .tech__item { padding: 15px 30px; }
    .tech__item span { font-size: 1rem; }
}
/* ================= Timeline Section ================= */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0; /* Анимируется через GSAP */
    background: linear-gradient(to bottom, var(--accent), transparent);
    transform: translateX(-50%);
}

.timeline__item {
    position: relative;
    width: 50%;
    padding: 30px 40px;
    margin-bottom: 20px;
    opacity: 0; /* GSAP */
}

.timeline__item:nth-child(even) {
    left: 0;
    text-align: right;
}

.timeline__item:nth-child(odd) {
    left: 50%;
    text-align: left;
}

.timeline__dot {
    position: absolute;
    top: 40px;
    width: 16px;
    height: 16px;
    background: var(--bg-dark);
    border: 2px solid var(--accent);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px var(--accent);
}

.timeline__item:nth-child(even) .timeline__dot { right: -8px; }
.timeline__item:nth-child(odd) .timeline__dot { left: -8px; }

.timeline__date {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline__item-title {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.timeline__item-text {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* ================= Blog Section (Minimalist) ================= */
.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.blog__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.blog__card:hover {
    border-color: var(--accent);
    background: rgba(0, 255, 157, 0.05);
    transform: translateY(-5px);
}

.blog__card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog__category { color: var(--accent); font-weight: 600; }
.blog__read-time { color: var(--text-dim); }

.blog__card-title {
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

.blog__card-excerpt {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.blog__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.blog__link i { width: 16px; transition: var(--transition); }
.blog__card:hover .blog__link i { transform: translateX(5px); color: var(--accent); }

/* Adaptive */
@media (max-width: 768px) {
    .timeline__line { left: 20px; }
    .timeline__item { width: 100%; text-align: left !important; padding-left: 50px; left: 0 !important; }
    .timeline__dot { left: 12px !important; }
}
/* ================= Contact Section ================= */
.contact { background: var(--bg-dark); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.contact__label { display: block; color: var(--accent); font-size: 0.8rem; text-transform: uppercase; margin-bottom: 5px; }
.contact__value { font-size: 1.5rem; color: var(--white); font-family: 'Outfit'; }

.contact__form { 
    background: var(--bg-card); 
    padding: 40px; 
    border-radius: 24px; 
    border: 1px solid rgba(255,255,255,0.05); 
}

.form-group { margin-bottom: 20px; }
.form-group input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 12px;
    color: var(--white);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus { border-color: var(--accent); outline: none; background: rgba(0,255,157,0.05); }

.form-captcha { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.form-captcha span { color: var(--white); font-weight: 600; }
.form-captcha input { width: 80px; text-align: center; padding: 10px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: var(--white); }

.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-dim); margin-bottom: 30px; cursor: pointer; }
.form-checkbox a { color: var(--accent); text-decoration: underline; }

.form-status { margin-top: 20px; font-size: 0.9rem; display: none; padding: 15px; border-radius: 8px; }
.form-status.success { display: block; background: rgba(0,255,157,0.1); color: var(--accent); border: 1px solid var(--accent); }
.form-status.error { display: block; background: rgba(255,0,0,0.1); color: #ff4d4d; border: 1px solid #ff4d4d; }

/* ================= Mobile Menu ================= */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: var(--bg-dark); z-index: 999; display: flex; align-items: center;
    justify-content: center; transition: var(--transition);
}
.mobile-menu.active { right: 0; }
.mobile-nav { display: flex; flex-direction: column; gap: 30px; text-align: center; }
.mobile-nav__link { font-size: 1.5rem; color: var(--white); font-family: 'Outfit'; }

.burger { background: none; border: none; cursor: pointer; display: none; z-index: 1001; position: relative; width: 30px; height: 20px; }
.burger span, .burger::before, .burger::after { 
    content: ''; position: absolute; width: 100%; height: 2px; background: var(--accent); transition: var(--transition); 
}
.burger::before { top: 0; }
.burger span { top: 9px; }
.burger::after { bottom: 0; }
.burger.active span { opacity: 0; }
.burger.active::before { transform: translateY(9px) rotate(45deg); }
.burger.active::after { transform: translateY(-9deg) rotate(-45deg); }

/* ================= Cookie Popup ================= */
.cookie-popup {
    position: fixed; bottom: -100px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 500px; background: rgba(20, 20, 23, 0.9);
    backdrop-filter: blur(15px); padding: 20px; border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1); z-index: 2000; transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.cookie-popup.active { bottom: 30px; }
.cookie-popup__content { display: flex; align-items: center; gap: 20px; }
.cookie-popup p { font-size: 0.85rem; color: var(--text-dim); }

@media (max-width: 992px) {
    .burger { display: block; }
    .contact__grid { grid-template-columns: 1fr; gap: 40px; }
}
/* Убираем блокировку скролла в html */
html {
    scroll-behavior: smooth;
    scroll-snap-type: none !important; /* Полностью отключаем */
}

/* Переводим секции из режима "слайдов" в режим обычных блоков */
.section-snap {
    height: auto !important; /* Убираем жесткую высоту 100vh */
    min-height: 80vh;        /* Оставляем простор */
    padding: 120px 0;       /* Добавляем хорошие отступы между секциями */
    scroll-snap-align: none !important;
    display: block;          /* Возвращаем стандартный поток */
}

/* Улучшаем плавность для браузеров */
body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
/* ================= Legal & Contact Pages ================= */
.legal-page {
    background: var(--bg-dark);
    color: var(--text-main);
}

.pages {
    padding: 160px 0 100px;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 800px;
    margin: 24px 0 60px;
    line-height: 1.8;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.legal-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
}

.legal-card:hover {
    border-color: var(--accent);
    background: rgba(0, 255, 157, 0.05);
    transform: translateY(-5px);
}

.legal-card__icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent);
}

.legal-card__icon svg {
    width: 24px;
    height: 24px;
}

.legal-card__title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.legal-card__text {
    color: var(--text-dim);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.contact-link {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    word-break: break-all;
}

.contact-address {
    font-style: normal;
    color: var(--white);
    line-height: 1.6;
}

.contact-extra {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--accent);
    color: var(--text-dim);
}

.contact-extra a {
    text-decoration: underline;
}
/* Стили для текстового контента юридических страниц */
.legal-content h2 {
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.legal-list {
    margin-bottom: 30px;
    padding-left: 20px;
}

.legal-list li {
    color: var(--text-dim);
    margin-bottom: 12px;
    position: relative;
    list-style: none;
}

.legal-list li::before {
    content: '—';
    position: absolute;
    left: -20px;
    color: var(--accent);
}

.contact-info-block {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
}

.contact-data {
    margin-top: 20px;
}

.contact-data li {
    list-style: none;
    margin-bottom: 10px;
    color: var(--text-dim);
}

.contact-data strong {
    color: var(--white);
    margin-right: 10px;
}
/* ================= Disclaimer Specific ================= */
.legal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.warning-icon {
    width: 48px;
    height: 48px;
    color: var(--accent); /* Твой неоновый мятный */
    filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.4));
}

.legal-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.legal-block:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.legal-block p {
    margin-bottom: 0; /* Убираем лишние отступы внутри блоков */
}

.risk-warning {
    border-left: 4px solid #ff4d4d; /* Акцент на предупреждении */
    background: rgba(255, 77, 77, 0.03);
}

.agreement {
    border-left: 4px solid var(--accent);
    background: rgba(0, 255, 157, 0.03);
}

.legal-block strong {
    color: var(--white);
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
/* ================= Privacy Policy Specific ================= */
.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.legal-card--small {
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.legal-card__info strong {
    display: block;
    color: var(--white);
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.legal-card__info p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--text-dim);
}

.terminology-list {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px 30px 30px 50px;
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.terminology-list li {
    margin-bottom: 15px;
    color: var(--text-dim);
    list-style: square;
}

.terminology-list li strong {
    color: var(--accent);
}

.contact-footer-policy {
    margin-top: 60px;
}

@media (max-width: 576px) {
    .terminology-list {
        padding: 20px 20px 20px 35px;
    }
}
/* ================= Privacy Page Specific ================= */
.storage-info {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.storage-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 25px;
    border-radius: 16px;
    flex: 1;
}

.storage-icon {
    color: var(--accent);
    display: flex;
    align-items: center;
}

.storage-icon svg {
    width: 28px;
    height: 28px;
}

.storage-text strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
}

.storage-text span {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.data-collection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.data-collection-grid .legal-card {
    height: 100%;
}

@media (max-width: 768px) {
    .storage-info {
        flex-direction: column;
    }
    .data-collection-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= Refund Page Specific ================= */
.steps-list {
    margin-top: 25px;
    display: grid;
    gap: 15px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
}

.step-item span {
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-item a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-card--small {
    padding: 30px;
}
.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.policy-section p {
    color: var(--text-dim);
    line-height: 1.8;
}