/* RESET & GLOBAL */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --black: #0f0f0f;
    --orange: #ff5722;
    --white: #ffffff;
    --gray: #f4f4f4;
    --text-muted: #888;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: -0.5px; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    text-align: center;
}
.btn--outline {
    border: 1px solid var(--orange);
    color: var(--orange);
}
.btn--outline:hover {
    background: var(--orange);
    color: var(--white);
}

/* HEADER */
.header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo__dot {
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
}
.nav__list {
    display: flex;
    gap: 30px;
}
.nav__link {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.7;
}
.nav__link:hover { opacity: 1; color: var(--orange); }

/* FOOTER */
.footer {
    padding: 80px 0 40px;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer__title { margin-bottom: 25px; font-size: 1rem; color: var(--orange); }
.footer__links li { margin-bottom: 12px; }
.footer__links a { opacity: 0.6; font-size: 0.9rem; }
.footer__links a:hover { opacity: 1; padding-left: 5px; color: var(--orange); }
.footer__description { opacity: 0.6; margin-top: 20px; font-size: 0.9rem; }
.footer__contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    opacity: 0.8;
    font-size: 0.9rem;
}
.footer__contact-info i { color: var(--orange); width: 18px; }
.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.4;
}

/* RESPONSIVE */
.burger { display: none; background: none; border: none; cursor: pointer; }
@media (max-width: 992px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .nav { display: none; }
}
@media (max-width: 576px) {
    .footer__grid { grid-template-columns: 1fr; }
}
/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px; /* Отступ от хедера */
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.hero__content {
    flex: 1;
    max-width: 600px;
}

.hero__title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: none; /* Для более читабельного заголовка */
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(90deg, #ff5722, #ffb300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero__subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero__actions {
    display: flex;
    gap: 20px;
}

.hero__btn {
    min-width: 180px;
    font-size: 1rem;
    padding: 16px 32px;
}

.btn--primary {
    background: var(--orange);
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn--primary:hover {
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.6);
}
.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease-in-out;
    z-index: -1;
}
.btn--primary:hover::before {
    left: 0;
}

.hero__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.hero__image {
    max-width: 550px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Background gradient effect */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 87, 34, 0.1) 0%, transparent 70%);
    animation: gradientMove 20s infinite alternate ease-in-out;
    opacity: 0.3;
    z-index: 1;
}

@keyframes gradientMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50%, 50%); }
}

/* Responsive adjustments for Hero */
@media (max-width: 1024px) {
    .hero__title { font-size: 3rem; }
    .hero__subtitle { font-size: 1.1rem; }
    .hero__image { max-width: 450px; }
}

@media (max-width: 768px) {
    .hero__container { flex-direction: column; text-align: center; }
    .hero__content { max-width: 100%; }
    .hero__title { font-size: 2.5rem; letter-spacing: -0.8px; margin-bottom: 20px; }
    .hero__subtitle { font-size: 1rem; margin-bottom: 30px; }
    .hero__actions { justify-content: center; gap: 15px; }
    .hero__image-wrapper { justify-content: center; margin-top: 40px; }
    .hero__image { max-width: 80%; }
    .hero { padding-top: 100px; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2rem; }
    .hero__actions { flex-direction: column; }
    .hero__btn { width: 100%; }
}

/* ANIMATION SPECIFIC STYLES (for SplitType) */
.word {
    display: inline-block;
    opacity: 0; /* Будет анимировано GSAP */
    transform: translateY(20px);
}
/* STRATEGIES SECTION */
.strategies {
    padding: 120px 0;
    background-color: var(--orange); /* Чередуем фон согласно правилам */
    color: var(--black);
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(15, 15, 15, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    opacity: 0.8;
    font-size: 1.1rem;
}

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

.strategy-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 15, 15, 0.1);
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
}

.strategy-card--featured {
    background: var(--black);
    color: var(--white);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.strategy-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.2);
}

.strategy-card--featured:hover {
    background: #151515;
}

.strategy-card__icon {
    width: 60px;
    height: 60px;
    background: var(--black);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 30px;
}

.strategy-card--featured .strategy-card__icon {
    background: var(--orange);
    color: var(--white);
}

.strategy-card__title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.strategy-card__text {
    font-size: 0.95rem;
    margin-bottom: 25px;
    opacity: 0.8;
}

.strategy-card__list {
    border-top: 1px solid rgba(15, 15, 15, 0.1);
    padding-top: 25px;
}

.strategy-card--featured .strategy-card__list {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.strategy-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

.strategy-card__list i {
    width: 18px;
    color: inherit;
}

@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
}
/* AI TOOLS SECTION */
.ai-tools {
    padding: 120px 0;
    background-color: var(--black);
    color: var(--white);
    overflow: hidden;
}

.ai-tools__container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.ai-tools__content {
    flex: 1;
}

.ai-tools__animation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Эффект свечения за анимацией */
.ai-tools__animation::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--orange);
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
}

#lottie-container {
    width: 100%;
    max-width: 500px;
    z-index: 1;
}

.section-tag--dark {
    background: rgba(255, 87, 34, 0.15);
    color: var(--orange);
}

.ai-tools__features {
    margin: 35px 0 45px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.feature-item__dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 2px;
    transform: rotate(45deg);
}

@media (max-width: 992px) {
    .ai-tools__container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .feature-item {
        justify-content: center;
    }
}
.tech-stack {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-stack__core {
    width: 100px;
    height: 100px;
    background: var(--orange);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 0 50px rgba(255, 87, 34, 0.4);
}

.core-icon {
    width: 50px;
    height: 50px;
    color: var(--white);
}

.tech-stack__orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(255, 87, 34, 0.3);
    border-radius: 50%;
    animation: rotateOrbit 20s linear infinite;
}

.orbit-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border: 1px solid var(--orange);
    color: var(--orange);
    padding: 8px;
    border-radius: 10px;
}

.icon-1 { top: -20px; left: 50%; transform: translateX(-50%); }
.icon-2 { bottom: 20px; left: 0; }
.icon-3 { bottom: 20px; right: 0; }

@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
/* MENTORING SECTION */
.mentoring {
    padding: 120px 0;
    background-color: var(--orange);
    color: var(--black);
    position: relative;
}

.mentoring__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-item {
    position: relative;
    padding: 30px;
    background: rgba(15, 15, 15, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(15, 15, 15, 0.1);
    transition: var(--transition);
}

.step-item:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-5px);
}

.step-item__number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.step-item:hover .step-item__number {
    color: var(--orange);
    opacity: 1;
}

.step-item__title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-item__text {
    font-size: 0.95rem;
    opacity: 0.8;
}

.mentoring__footer {
    margin-top: 80px;
    text-align: center;
    padding: 40px;
    background: rgba(15, 15, 15, 0.03);
    border-radius: 30px;
}

.mentoring__footer p {
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

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

@media (max-width: 768px) {
    .mentoring__steps { grid-template-columns: 1fr; }
}
/* REVIEWS SECTION */
.reviews {
    padding: 120px 0;
    background-color: var(--black);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.reviews-slider {
    padding: 40px 0 60px !important;
}

.review-card {
    background: #151515;
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 87, 34, 0.2);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--orange);
    transform: scale(1.02);
}

.review-card__quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    color: var(--orange);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 0.3;
}

.review-card__text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--orange);
}

.author-info span {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Swiper Dots */
.swiper-pagination-bullet {
    background: var(--white) !important;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--orange) !important;
    opacity: 1;
    width: 25px;
    border-radius: 5px;
    transition: width 0.3s ease;
}
/* CONTACT SECTION */
.contact {
    padding: 120px 0;
    background-color: var(--orange);
    color: var(--black);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact__meta {
    margin-top: 40px;
}

.contact__meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact__meta-item i {
    color: var(--black);
    width: 24px;
}

/* FORM STYLES */
.contact__form-wrapper {
    background: var(--black);
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.form__group {
    margin-bottom: 20px;
}

.form__input {
    width: 100%;
    padding: 18px 25px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    color: var(--white);
    font-family: inherit;
    transition: var(--transition);
}

.form__input:focus {
    outline: none;
    border-color: var(--orange);
    background: #222;
}

.captcha-label {
    display: block;
    color: var(--white);
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.form__captcha {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 87, 34, 0.05);
    border-radius: 15px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.btn--full {
    width: 100%;
    padding: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    display: none;
    text-align: center;
    font-weight: 600;
}

.form-status.success {
    display: block;
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid #4caf50;
}

@media (max-width: 992px) {
    .contact__container { grid-template-columns: 1fr; gap: 50px; }
}
/* COOKIE POPUP */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 20px;
    right: 20px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 87, 34, 0.3);
    border-radius: 20px;
    padding: 20px;
    z-index: 2000;
    transition: var(--transition);
    max-width: 500px;
    margin: 0 auto;
}
.cookie-popup.active { bottom: 20px; }
.cookie-popup__content { display: flex; align-items: center; gap: 20px; }
.cookie-popup__icon { color: var(--orange); flex-shrink: 0; }
.cookie-popup__text { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.cookie-popup__text a { color: var(--orange); text-decoration: underline; }
.btn--small { padding: 8px 20px; font-size: 0.8rem; }

/* MOBILE MENU */
@media (max-width: 992px) {
    .burger {
        display: block;
        z-index: 1001;
        width: 30px;
        height: 20px;
        position: relative;
    }
    .burger span, .burger::before, .burger::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--white);
        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); background: var(--orange); }
    .burger.active::after { transform: translateY(-9px) rotate(-45deg); background: var(--orange); }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--black);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        z-index: 1000;
    }
    .nav.active { right: 0; }
    .nav__list { flex-direction: column; text-align: center; gap: 40px; }
    .nav__link { font-size: 1.5rem; }
}

/* ЮРИДИЧЕСКИЕ СТРАНИЦЫ (Этап 5.2) */
.pages { padding: 160px 0 100px; background: var(--black); min-height: 80vh; }
.pages h1 { color: var(--orange); margin-bottom: 40px; }
.pages h2 { margin-top: 30px; margin-bottom: 15px; font-size: 1.4rem; }
.pages p { margin-bottom: 20px; opacity: 0.8; }
.pages ul { margin-bottom: 20px; padding-left: 20px; list-style: disc; opacity: 0.8; }
/* Предотвращаем невидимость текста до загрузки JS */
.hero__title, .hero__subtitle {
    opacity: 1 !important; 
    visibility: visible !important;
}
.line, .word { overflow: hidden; } /* Для SplitType */

/* Фикс для Swiper, чтобы он не "схлопывался" */
.reviews-slider {
    width: 100%;
    height: auto;
    overflow: hidden;
}
/* Стили для страницы контактов */
.lead-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 60px;
    opacity: 0.9;
    line-height: 1.8;
}

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

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

.contact-card:hover {
    background: rgba(255, 87, 34, 0.05);
    border-color: var(--orange);
    transform: translateY(-5px);
}

.contact-card__icon {
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 25px;
}

.contact-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--orange);
}

.contact-address {
    font-style: normal;
    margin-top: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

.contact-extra {
    padding: 30px;
    background: rgba(15, 15, 15, 0.5);
    border-left: 4px solid var(--orange);
    border-radius: 0 15px 15px 0;
}

.contact-extra a {
    color: var(--orange);
    text-decoration: underline;
}
/* DISCLAIMER SPECIFIC */
.legal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.warning-icon {
    width: 45px;
    height: 45px;
    color: var(--orange);
}

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

.risk-warning {
    border-left: 4px solid var(--orange);
    background: rgba(255, 87, 34, 0.05);
}

.agreement {
    border: 1px dashed var(--orange);
    text-align: center;
    font-size: 0.95rem;
}

.legal-block strong {
    color: var(--orange);
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
/* PRIVACY PAGE SPECIFIC */
.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.data-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 87, 34, 0.1);
}

.data-item i {
    color: var(--orange);
    width: 24px;
    height: 24px;
}

.data-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
}

.data-item span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.policy-mail {
    color: var(--orange);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .data-grid { grid-template-columns: 1fr; }
}
/* PERSONAL DATA POLICY STYLES */
.policy-hero-card {
    background: rgba(255, 87, 34, 0.1);
    border-left: 4px solid var(--orange);
    padding: 30px;
    border-radius: 0 20px 20px 0;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.policy-notice {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.storage-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 87, 34, 0.3);
}

.storage-item i {
    color: var(--orange);
    width: 20px;
}

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

.data-box {
    background: #151515;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.data-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--orange);
}

.data-box h3 i { width: 20px; }

.data-box ul {
    list-style: none;
    padding: 0;
}

.data-box li {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.data-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
}

.contact-btn {
    display: inline-block;
    margin-top: 20px;
    background: var(--orange);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
}

@media (max-width: 768px) {
    .data-collection-grid { grid-template-columns: 1fr; }
    .storage-info { flex-direction: column; gap: 15px; }
}
/* REFUND POLICY SPECIFIC */
.refund-accent {
    background: rgba(255, 87, 34, 0.08);
    border-left: 4px solid var(--orange);
    padding: 30px;
    border-radius: 4px 20px 20px 4px;
}

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

.refund-card {
    background: #151515;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
}

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

.refund-card i {
    width: 40px;
    height: 40px;
    color: var(--orange);
    margin-bottom: 20px;
}

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

.refund-card p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}

/* Steps Mini Layout */
.steps-mini {
    margin-top: 25px;
}

.step-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.step-mini span {
    width: 30px;
    height: 30px;
    background: var(--orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.warning-block {
    margin-top: 50px;
    padding: 30px;
    background: rgba(15, 15, 15, 0.6);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}
/* TERMS OF USE SPECIFIC */
.terms-accent {
    background: rgba(255, 87, 34, 0.05);
    border: 1px solid var(--orange);
    padding: 30px;
    border-radius: 20px;
}

.legal-section {
    margin-top: 40px;
}

.property-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.property-block i {
    color: var(--orange);
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

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

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

.legal-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.legal-list li::before {
    content: '•';
    color: var(--orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}