:root {
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --accent: #38bdf8;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

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, h4, .logo__text {
    font-family: 'Space Grotesk', sans-serif;
}

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

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

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn--header {
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent);
    border: 1px solid var(--accent);
}

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

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

.header--scrolled {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
}

.logo__icon {
    width: 30px;
    height: 30px;
    background: var(--accent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

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

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

/* --- FOOTER --- */
.footer {
    background: #0a0f1d;
    padding: 80px 0 30px;
    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__logo { margin-bottom: 20px; }

.footer__description {
    color: var(--text-muted);
    max-width: 300px;
}

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

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

.footer__list a {
    color: var(--text-muted);
}

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

.footer__contacts li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.icon--small {
    width: 18px;
    color: var(--accent);
}

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

/* --- MOBILE --- */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 992px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .nav { display: none; }
    .burger { display: block; }
}

@media (max-width: 576px) {
    .footer__grid { grid-template-columns: 1fr; }
}
/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.05) 0%, transparent 50%);
}

.hero__svg {
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

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

.hero__content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn--primary {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.3);
}

.btn--secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mouse Scroll Animation */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--accent);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in .fade-up {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for children in Hero */
.hero__content > *:nth-child(1) { transition-delay: 0.1s; }
.hero__content > *:nth-child(2) { transition-delay: 0.3s; }
.hero__content > *:nth-child(3) { transition-delay: 0.5s; }
.hero__content > *:nth-child(4) { transition-delay: 0.7s; }
/* --- SOLUTIONS SECTION --- */
.solutions {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.03), transparent 40%);
}

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

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

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

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

.solution-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.15), transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: rgba(56, 189, 248, 0.3);
    background: rgba(30, 41, 59, 0.8);
}

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

.solution-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 25px;
}

.solution-card__icon i {
    width: 32px;
    height: 32px;
}

.solution-card__title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.solution-card__text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.solution-card__list {
    display: grid;
    gap: 10px;
}

.solution-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-main);
}

.icon--check {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.solutions__footer {
    margin-top: 50px;
    text-align: center;
    color: var(--text-muted);
}

.link-underlined {
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
    font-weight: 600;
}

.link-underlined:hover {
    border-bottom-color: transparent;
}
/* --- PROCESS SECTION --- */
.process {
    padding: 100px 0;
    background: #0a0f1d;
    position: relative;
}

.process__steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Линия, соединяющая шаги (только для десктопа) */
.process__steps::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    opacity: 0.2;
}

.step {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
}

.step__number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--bg-card);
    border: 2px solid rgba(56, 189, 248, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
    z-index: 2;
    transition: var(--transition);
}

.step:hover .step__number {
    background: var(--accent);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.step__content {
    padding-top: 12px;
}

.step__title {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.step__text {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .process__steps::before {
        left: 21px;
    }
    .step {
        gap: 20px;
    }
    .step__number {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .step__title {
        font-size: 1.3rem;
    }
}
/* --- BLOG SECTION --- */
.blog {
    padding: 100px 0;
    background: var(--bg-dark);
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.blog-card--featured {
    grid-row: span 2;
}

.blog-card__image {
    position: relative;
    height: 240px;
    background: #2d3748; /* Заглушка, пока нет img */
    overflow: hidden;
}

.blog-card--featured .blog-card__image {
    height: 400px;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: var(--transition);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
    opacity: 0.8;
}

.blog-card__tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-card__content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.blog-card__title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card__text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

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

@media (max-width: 992px) {
    .blog__grid {
        grid-template-columns: 1fr;
    }
    .blog-card--featured {
        grid-row: span 1;
    }
}
/* --- CASES SECTION --- */
.cases {
    padding: 100px 0;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.05), transparent 40%);
}

.cases__list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.case-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.case-item--reverse {
    flex-direction: row-reverse;
}

.case-item__info {
    flex: 1;
}

.case-item__category {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.case-item__title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.case-item__description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.case-item__metrics {
    display: flex;
    gap: 40px;
}

.metric__value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
}

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

.case-item__visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.case-item__glass {
    width: 100%;
    max-width: 450px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.case-icon {
    width: 60px;
    height: 60px;
    color: var(--accent);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.4));
}

/* Mockups inside glass cards */
.case-chat-mockup, .case-graph-mockup {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-line {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}
.chat-line.short { width: 40%; }
.chat-line.medium { width: 70%; }
.chat-line.long { width: 100%; background: var(--accent); opacity: 0.3; }

.case-graph-mockup {
    flex-direction: row;
    align-items: flex-end;
    height: 60px;
    justify-content: center;
}

.graph-bar {
    width: 15%;
    background: var(--accent);
    opacity: 0.4;
    border-radius: 4px 4px 0 0;
}

@media (max-width: 992px) {
    .case-item, .case-item--reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .case-item__metrics {
        justify-content: center;
    }
}
/* --- CONTACT SECTION --- */
.contact {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0a0f1d);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    background: var(--bg-card);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact__info .section-title {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact__details { margin-top: 40px; }

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

.contact__item-icon {
    width: 50px;
    height: 50px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

/* Form Styles */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(15, 23, 42, 1);
}

.form-captcha {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
}

.form-captcha input {
    width: 100px;
    padding: 10px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 18px;
}

/* Status Messages */
.form-status {
    text-align: center;
    padding: 40px 0;
}

.form-status i {
    width: 60px;
    height: 60px;
    color: #10b981;
    margin-bottom: 20px;
}

.hidden { display: none; }

@media (max-width: 992px) {
    .contact__grid {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
    }
}
/* --- COOKIE POPUP --- */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    padding: 20px 30px;
    border-radius: 20px;
    z-index: 2000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

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

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

/* --- 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-menu__list {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-link { font-size: 1.8rem; font-family: 'Space Grotesk', sans-serif; }

/* Burger Animation */
.burger { position: relative; z-index: 1001; }
.burger span {
    display: block; width: 25px; height: 2px;
    background: var(--accent); margin-bottom: 5px;
    transition: var(--transition);
}
.burger--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger--active span:nth-child(2) { opacity: 0; }
.burger--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.pages { padding: 150px 0 100px; min-height: 80vh; }
.pages h1 { font-size: 1.6rem; margin-bottom: 40px; color: var(--accent); }
.pages h2 { font-size: 1.4rem; margin: 30px 0 20px; }
.pages p { color: var(--text-muted); margin-bottom: 20px; font-size: 1.1rem; }
.pages ul { margin-bottom: 20px; padding-left: 20px; }
.pages li { color: var(--text-muted); list-style: disc; margin-bottom: 10px; }
/* --- СТИЛИЗАЦИЯ ЮРИДИЧЕСКИХ СТРАНИЦ --- */
.legal-page {
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.05), transparent 30%);
    padding-bottom: 100px;
}

.pages {
    padding-top: 160px; /* Отступ от фиксированного хедера */
}

.legal-content {
    max-width: 850px;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 32px;
    margin-top: 40px;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 40px;
    border-left: 3px solid var(--accent);
    padding-left: 25px;
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block h2 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.legal-block p {
    color: var(--text-muted);
    line-height: 1.8;
}

.legal-list {
    margin-top: 20px;
}

.legal-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.legal-list strong {
    color: var(--text-main);
}

/* Блок контактов внутри политики */
.contact-info-block {
    margin-top: 60px;
    padding: 40px;
    background: rgba(56, 189, 248, 0.05);
    border-radius: 24px;
    border: 1px dashed rgba(56, 189, 248, 0.3);
}

.contact-info-block h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

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

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

.contact-data a {
    color: var(--accent);
    text-decoration: none;
}

.legal-footer {
    margin-top: 50px;
    text-align: center;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
    }
    .pages {
        padding-top: 120px;
    }
    .lead-text {
        font-size: 1.1rem;
    }
}
/* --- СТИЛИ ДЛЯ ДИСКЛЕЙМЕРА --- */
.legal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.warning-icon {
    width: 48px;
    height: 48px;
    color: #f59e0b; /* Amber/Orange color for warning */
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.4));
}

.risk-warning {
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 25px;
    border-radius: 16px;
    position: relative;
}

.risk-warning strong {
    color: #f59e0b;
}

.agreement {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-style: italic;
    font-size: 0.95rem;
}

/* Общая анимация появления контента */
.legal-content .legal-block {
    margin-bottom: 25px;
    opacity: 0.9;
}

.legal-content strong {
    color: var(--accent);
}

@media (max-width: 768px) {
    .legal-header {
        flex-direction: column;
        text-align: center;
    }
    .warning-icon {
        width: 40px;
        height: 40px;
    }
}
/* --- POLICY DATA GRID --- */
.data-grid-policy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.data-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(56, 189, 248, 0.1);
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
}

.data-card:hover {
    border-color: var(--accent);
    background: rgba(56, 189, 248, 0.05);
}

.data-card i {
    width: 32px;
    height: 32px;
    color: var(--accent);
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(56, 189, 248, 0.3));
}

.data-card__text {
    display: flex;
    flex-direction: column;
}

.data-card__text strong {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.data-card__text span {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.policy-link {
    color: var(--accent);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.policy-link:hover {
    border-bottom-color: var(--accent);
}

@media (max-width: 576px) {
    .data-grid-policy {
        grid-template-columns: 1fr;
    }
}
/* --- PRIVACY SPECIFIC STYLES --- */
.policy-hero-card {
    background: rgba(56, 189, 248, 0.05);
    border-left: 4px solid var(--accent);
    padding: 30px;
    border-radius: 0 20px 20px 0;
    margin-bottom: 30px;
}

.policy-notice {
    font-size: 0.95rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.storage-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.storage-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.storage-item i {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.storage-item__text strong {
    display: block;
    font-size: 1rem;
    color: var(--text-main);
}

.storage-item__text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.data-box {
    background: rgba(30, 41, 59, 0.5);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(56, 189, 248, 0.1);
}

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

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

.contact-footer-box {
    margin-top: 30px;
    text-align: left;
}

.small-address {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .storage-info-grid, .data-collection-grid-v2 {
        grid-template-columns: 1fr;
    }
}
/* --- REFUND PAGE STYLES --- */
.refund-accent {
    border-left-color: #818cf8; /* Indigo accent for refund page */
    background: rgba(129, 140, 248, 0.05);
}

.refund-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.refund-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition);
}

.refund-card:hover {
    transform: translateY(-5px);
    border-color: #818cf8;
}

.refund-card i {
    width: 35px;
    height: 35px;
    color: #818cf8;
    margin-bottom: 20px;
}

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

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

/* Steps Visualization */
.steps-mini-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.step-item-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(15, 23, 42, 0.6);
    padding: 15px 20px;
    border-radius: 12px;
}

.step-num {
    background: #818cf8;
    color: var(--bg-dark);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.warning-block {
    background: rgba(239, 68, 68, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.1);
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
}

.warning-block h2 {
    color: #ef4444; /* Alert color */
}

@media (max-width: 768px) {
    .refund-grid-v2 { grid-template-columns: 1fr; }
}
/* --- REFUND PAGE STYLES --- */
.refund-accent {
    border-left-color: #818cf8; /* Indigo accent for refund page */
    background: rgba(129, 140, 248, 0.05);
}

.refund-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.refund-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition);
}

.refund-card:hover {
    transform: translateY(-5px);
    border-color: #818cf8;
}

.refund-card i {
    width: 35px;
    height: 35px;
    color: #818cf8;
    margin-bottom: 20px;
}

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

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

/* Steps Visualization */
.steps-mini-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.step-item-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(15, 23, 42, 0.6);
    padding: 15px 20px;
    border-radius: 12px;
}

.step-num {
    background: #818cf8;
    color: var(--bg-dark);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.warning-block {
    background: rgba(239, 68, 68, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.1);
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
}

.warning-block h2 {
    color: #ef4444; /* Alert color */
}

@media (max-width: 768px) {
    .refund-grid-v2 { grid-template-columns: 1fr; }
}
/* --- CONTACT PAGE STYLES --- */
.contact-page-wrapper {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-radius: 24px;
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(56, 189, 248, 0.05);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.contact-card__icon {
    width: 54px;
    height: 54px;
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
}

.contact-card__icon i {
    width: 26px;
    height: 26px;
}

.contact-card__info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

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

.contact-card__link, 
.contact-card__address {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    font-style: normal;
    text-decoration: none;
}

.contact-card__link:hover {
    text-decoration: underline;
}

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