:root {
    --bg-black: #0a0a0a;
    --bg-gray: #141414;
    --accent-gray: #2a2a2a;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --container-width: 1200px;
}

/* Глобальные настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

ul {
    list-style: none;
}

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

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

/* Кнопки */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn--outline:hover {
    background: var(--white);
    color: var(--bg-black);
}

/* Плавающие края для изображений */
.img-floating {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    overflow: hidden;
    transition: var(--transition);
}

/* Хедер */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header--scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--accent-gray);
}

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

.logo__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
}

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

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

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

/* Бургер */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.burger span, .burger::before, .burger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--white);
    left: 0;
    transition: var(--transition);
}

.burger::before { top: 0; }
.burger span { top: 50%; transform: translateY(-50%); }
.burger::after { bottom: 0; }

/* Футер */
.footer {
    background: var(--bg-gray);
    padding: 80px 0 30px;
    border-top: 1px solid var(--accent-gray);
}

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

.footer__description {
    color: var(--text-muted);
    margin-top: 20px;
    font-size: 0.95rem;
}

.footer__title {
    font-size: 1rem;
    margin-bottom: 25px;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer__links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer__contact-info li {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer__contact-info i {
    color: var(--white);
    margin-top: 4px;
}

.footer__bottom {
    border-top: 1px solid var(--accent-gray);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Адаптив */
@media (max-width: 992px) {
    .footer__container {
        grid-template-columns: 1fr 1fr;
    }
    .nav {
        display: none;
    }
    .burger {
        display: block;
    }
}

@media (max-width: 576px) {
    .footer__container {
        grid-template-columns: 1fr;
    }
}
/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 160px 0 100px; /* Отступ сверху с учетом фикс. хедера */
    min-height: 90vh; /* Занимает почти весь экран */
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-black) 0%, #1a1a1a 100%);
}

/* Декоративное свечение на фоне */
.hero__bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero__container {
    position: relative;
    z-index: 2;
}

.hero__content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero__title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

/* Акцент в тексте (можно будет менять цвет, сейчас белый) */
.text-highlight {
    color: var(--white);
    position: relative;
    z-index: 1;
}
/* Опционально: подчеркивание для акцента */
.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(255,255,255,0.1);
    z-index: -1;
    transform: skewX(-15deg);
}

.hero__description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Новая кнопка Primary */
.btn--primary {
    background: var(--white);
    color: var(--bg-black);
    border: 1px solid var(--white);
}

.btn--primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px rgba(255,255,255,0.3);
}

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

.btn--link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn--link:hover i {
    transform: translateY(3px);
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Адаптив для Hero */
@media (max-width: 992px) {
    .hero {
        padding-top: 120px;
        min-height: auto;
    }
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero__description {
        margin: 0 auto 30px;
    }
    .hero__actions {
        justify-content: center;
    }
    .hero__visual {
        order: -1; /* Визуал сверху на мобилках */
        max-width: 80%;
        margin: 0 auto;
    }
    .hero__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 2rem;
    }
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
}
/* --- Hero Visual Update --- */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

/* Эффектное изображение с плавающими краями */
.hero__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    z-index: 2;
    position: relative;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.5);
    /* Реализация "плавающих краев" через анимацию */
    animation: morphing 10s ease-in-out infinite;
    filter: grayscale(0.5); /* Придаем более строгий вид */
    transition: filter 0.5s ease;
}

.hero__img:hover {
    filter: grayscale(0);
}

/* Декоративное пятно за картинкой */
.hero__blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -45%);
    width: 110%;
    height: 110%;
    background: linear-gradient(135deg, #333 0%, #111 100%);
    z-index: 1;
    animation: morphing 15s ease-in-out infinite reverse;
    opacity: 0.5;
}

/* Анимация органической формы (плавающие края) */
@keyframes morphing {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* Добавим легкое движение вверх-вниз для всей группы */
.hero__image-wrapper {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 992px) {
    .hero__img {
        height: 350px;
    }
}
/* --- Общие вспомогательные стили --- */
.section-padding {
    padding: 120px 0;
}

.bg-gray {
    background-color: var(--bg-gray);
}

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

.subtitle {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.0rem;
    margin-bottom: 20px;
}

/* --- Expertise Grid --- */
.expertise__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.expertise-card {
    background: var(--bg-gray);
    padding: 50px 40px;
    border: 1px solid var(--accent-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.expertise-card:hover {
    border-color: var(--white);
    transform: translateY(-10px);
}

.expertise-card__icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 30px;
}

.expertise-card__title {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.expertise-card__subtitle {
    color: var(--white);
    font-size: 0.7rem;
    border: 1px solid rgba(255,255,255,0.2);
    display: inline-block;
    padding: 4px 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

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

/* --- Strategy Section --- */
.strategy__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.strategy__description {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.strategy-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-item__num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
    line-height: 1;
}

.step-item__text strong {
    display: block;
    color: var(--white);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

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

.strategy__image {
    position: relative;
}

.image-stack {
    position: relative;
    padding: 20px;
}

.strategy__img-main {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.strategy__badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: var(--white);
    color: var(--bg-black);
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.strategy__badge strong {
    font-size: 1.5rem;
}

.strategy__badge span {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Адаптив */
@media (max-width: 992px) {
    .expertise__grid {
        grid-template-columns: 1fr;
    }
    .strategy__container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .strategy__image {
        order: -1;
    }
    .strategy__img-main {
        height: 400px;
    }
}
/* --- Insights Section --- */
.insights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.insight-card {
    background: transparent;
    transition: var(--transition);
}

.insight-card__image {
    margin-bottom: 25px;
    height: 250px;
    overflow: hidden;
}

.insight-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: var(--transition);
}

.insight-card:hover .insight-card__image img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.insight-card__tag {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--text-muted);
    border: 1px solid var(--accent-gray);
    padding: 2px 10px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.insight-card__title {
    font-size: 1.15rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--white);
}

.insight-card__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.insight-card__link {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
}

.insight-card__link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.insight-card__link:hover i {
    transform: translateX(5px);
}

/* --- About Section --- */
.about__container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about__text {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about__text strong {
    color: var(--white);
}

.about__stats {
    display: flex;
    gap: 50px;
    margin: 40px 0;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-box__num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-box__label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 10px;
}

.about__info-note {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--accent-gray);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about__info-note i {
    color: var(--white);
}

.about__image-wrapper {
    position: relative;
}

.about__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.about__blob-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-gray);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
}

/* Адаптив */
@media (max-width: 992px) {
    .insights__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about__stats {
        justify-content: space-between;
        gap: 20px;
    }
}
/* --- Contact Section --- */
.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact__text {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact__item strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact__item p {
    color: var(--text-muted);
}

/* Form Styles */
.form {
    background: var(--bg-gray);
    padding: 40px;
    border: 1px solid var(--accent-gray);
    position: relative;
}

.form__group {
    margin-bottom: 20px;
}

.form__input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--accent-gray);
    padding: 15px 0;
    color: var(--white);
    font-family: inherit;
    transition: var(--transition);
}

.form__input:focus {
    outline: none;
    border-bottom-color: var(--white);
}

.form__label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 30px 0;
}

.checkbox-group a {
    text-decoration: underline;
}

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

.form__message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-gray);
    z-index: 10;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.form__message--success i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100px;
    left: 20px;
    right: 20px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-gray);
    padding: 20px;
    z-index: 9999;
    transition: var(--transition);
}

.cookie-popup--active {
    bottom: 20px;
}

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

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

.btn--small {
    padding: 8px 20px;
    font-size: 0.75rem;
}

/* Mobile Nav Active State */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-black);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 999;
        transition: var(--transition);
    }
    
    .nav--active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .nav__link {
        font-size: 1.5rem;
    }

    .contact__container {
        grid-template-columns: 1fr;
    }
}
/* --- Legal Pages Styles --- */
.pages {
    padding: 160px 0 100px;
    background-color: var(--bg-black);
    min-height: 80vh;
}

.pages h1 {
    font-size: 1.6rem;
    margin-bottom: 40px;
    border-left: 4px solid var(--white);
    padding-left: 20px;
}

.pages h2 {
    font-size: 1.4rem;
    margin: 40px 0 20px;
    color: var(--white);
}

.pages p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.pages ul {
    margin-bottom: 20px;
    list-style: none;
}

.pages ul li {
    color: var(--text-muted);
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.pages ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--white);
}

@media (max-width: 768px) {
    .pages h1 { font-size: 2rem; }
}
/* --- Стили для страницы контактов --- */
.lead-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 60px;
    line-height: 1.6;
}

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

.contact-card {
    background: var(--bg-gray);
    padding: 40px;
    border: 1px solid var(--accent-gray);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--white);
    transform: translateY(-5px);
}

.contact-card__icon {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 25px;
}

.contact-card h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.contact-link {
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
    font-size: 1.1rem;
}

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

.contact-extra {
    background: var(--accent-gray);
    padding: 25px;
    border-radius: 4px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-extra i {
    margin-right: 10px;
    color: var(--white);
}

.text-white { color: var(--white); font-weight: 600; }

@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}
/* --- Disclaimer Specific Styles --- */
.legal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.warning-icon {
    font-size: 2.5rem;
    color: var(--white); /* Оставляем белым для минимализма или можно #ffcc00 для акцента */
    opacity: 0.8;
}

.legal-block {
    background: var(--bg-gray);
    padding: 30px;
    border: 1px solid var(--accent-gray);
    margin-bottom: 20px;
    transition: var(--transition);
}

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

.legal-block strong {
    color: var(--white);
    display: inline-block;
    margin-bottom: 5px;
}

.risk-warning {
    border-left: 4px solid var(--white);
}

.agreement {
    background: transparent;
    border: 1px dashed var(--accent-gray);
    font-style: italic;
}
/* --- Personal Data Policy Specific --- */
.terminology-list {
    margin-bottom: 30px;
}

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

.terminology-list strong {
    color: var(--white);
    margin-right: 5px;
}

.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.data-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--bg-gray);
    border: 1px solid var(--accent-gray);
}

.data-item i {
    font-size: 1.5rem;
    color: var(--white);
}

.data-item__content strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.data-item__content span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.policy-mail {
    display: inline-block;
    margin-top: 15px;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
}

.mt-20 {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .data-grid {
        grid-template-columns: 1fr;
    }
}
/* --- Privacy Page Specific --- */
.policy-hero-card {
    background: var(--white);
    color: var(--bg-black);
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 2px;
}

.policy-hero-card p {
    color: var(--bg-black);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.policy-notice {
    border: 1px solid var(--accent-gray);
    padding: 25px;
    margin-bottom: 40px;
    font-style: italic;
}

.storage-info {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.storage-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-gray);
    padding: 20px 30px;
    border: 1px solid var(--accent-gray);
    flex: 1;
}

.storage-item i {
    font-size: 1.5rem;
    color: var(--white);
}

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

.data-box {
    padding: 35px;
    border: 1px solid var(--accent-gray);
    background: linear-gradient(180deg, var(--bg-gray) 0%, var(--bg-black) 100%);
}

.data-box h3 {
    font-size: 1rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.data-box h3 i {
    color: var(--text-muted);
}

.rights-block {
    margin-top: 60px;
    padding: 50px;
    background: var(--bg-gray);
    text-align: center;
    border: 1px solid var(--accent-gray);
}

.rights-block h2 {
    margin-bottom: 20px;
}

.contact-btn {
    display: inline-block;
    margin-top: 25px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--white);
}

@media (max-width: 768px) {
    .data-collection-grid, .storage-info {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}
/* --- Refund Page Specific --- */
.refund-accent {
    border-left: 4px solid var(--white);
}

.refund-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.refund-card {
    background: var(--bg-gray);
    padding: 30px;
    border: 1px solid var(--accent-gray);
    text-align: center;
}

.refund-card i {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.refund-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.refund-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.procedure-block {
    background: var(--bg-gray);
    padding: 40px;
    margin: 50px 0;
    border: 1px solid var(--accent-gray);
}

.steps-mini {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.step-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.step-mini span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--white);
    color: var(--bg-black);
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 50%;
}

.warning-block {
    border: 1px dashed var(--accent-gray);
    padding: 30px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .refund-grid {
        grid-template-columns: 1fr;
    }
}
/* --- Terms Page Specific --- */
.terms-accent {
    border-bottom: 4px solid var(--white);
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--white);
}

.property-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--bg-gray);
    border-right: 1px solid var(--accent-gray);
}

.property-block i {
    font-size: 1.8rem;
    color: var(--white);
    margin-top: 5px;
}

.property-block p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.legal-list li {
    margin-bottom: 10px;
    color: var(--text-muted);
}