:root {
    --primary: #4f46e5;
    --primary-light: #818cf8;
    --accent: #06b6d4;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --text: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: var(--primary);
}

.logo__icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    position: relative;
}

.logo__icon::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 50%;
    background: white;
    top: 25%;
    left: 25%;
    border-radius: 2px;
}

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

.nav__link {
    font-weight: 500;
    font-size: 0.95rem;
}

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

.btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn--header {
    background: var(--primary);
    color: var(--white);
    font-size: 0.9rem;
}

.btn--header:hover {
    background: var(--text);
    transform: translateY(-2px);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 2px;
    background: var(--text);
}

/* --- FOOTER --- */
.footer {
    background: var(--bg-alt);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

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

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

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

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

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

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

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

.footer__contacts svg {
    color: var(--primary);
    width: 20px;
    flex-shrink: 0;
}

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

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

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

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

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

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

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

.hero__btns {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.btn--primary:hover {
    background: var(--text);
    transform: translateY(-3px);
}

.btn--outline {
    border: 2px solid #e2e8f0;
}

.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero__stats {
    display: flex;
    gap: 40px;
}

.stat-item__num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

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

/* 3D Visual */
.hero__visual {
    width: 100%;
    height: 600px;
    position: relative;
}

spline-viewer {
    width: 100%;
    height: 100%;
}

.hero__bg-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Adaptive Hero */
@media (max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero__btns {
        justify-content: center;
    }
    .hero__visual {
        height: 400px;
    }
    .hero__stats {
        justify-content: center;
    }
}
/* --- TECH SECTION --- */
.tech {
    padding: 120px 0;
    background: var(--bg-alt);
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.tech-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
    border-color: var(--primary-light);
}

.tech-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 25px;
}

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

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

.tech-card__list {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.tech-card__list li {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-card__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}
/* --- CASES SECTION --- */
.cases {
    padding: 120px 0;
    background: var(--bg);
}

.cases__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

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

.case-card {
    background: var(--bg-alt);
    border-radius: 32px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.case-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.case-card__image {
    position: relative;
    height: 240px;
    background: #e2e8f0;
}

.case-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* для плейсхолдера */
}

.case-card__tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
}

.case-card__content {
    padding: 30px;
}

.case-card__title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

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

.case-card__stats {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

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

.case-card__stats strong {
    color: var(--primary);
    display: block;
}

@media (max-width: 768px) {
    .cases__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .cases__grid {
        grid-template-columns: 1fr;
    }
}
.hero__visual {
    width: 100%;
    height: 600px;
    position: relative;
    cursor: crosshair;
}
#neuralCanvas {
    width: 100%;
    height: 100%;
}
/* --- EDUCATION BLOG SECTION --- */
.education {
    padding: 100px 0;
    background: var(--bg-alt);
}

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

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

.blog-card {
    background: var(--white);
    padding: 40px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.08);
    border-color: var(--primary-light);
}

.blog-card__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card__date { color: var(--text-muted); }
.blog-card__category { color: var(--accent); }

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

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

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary);
}

.blog-card__link svg { width: 18px; }
/* --- FUTURE BANNER --- */
.future { padding: 80px 0; }
.future__banner {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 40px;
    padding: 80px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.future__title { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.future__text { font-size: 1.2rem; max-width: 500px; opacity: 0.9; margin-bottom: 30px; }
.btn--white { background: var(--white); color: var(--primary); }
.btn--white:hover { transform: scale(1.05); background: #f8fafc; }

/* Pulse Animation */
.future__decor { width: 300px; height: 300px; position: relative; }
.pulse-ring {
    position: absolute;
    width: 100%; height: 100%;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: pulse 3s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* --- CONTACT FORM --- */
.contact { padding: 120px 0; background: var(--white); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact__details { margin-top: 40px; }
.contact__item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; font-weight: 600; }
.contact__item svg { color: var(--primary); }

.form { background: var(--bg-alt); padding: 50px; border-radius: 30px; border: 1px solid #e2e8f0; }
.form__group { margin-bottom: 20px; }
.form__input {
    width: 100%; padding: 16px 20px; border-radius: 12px;
    border: 1px solid #cbd5e1; outline: none; transition: var(--transition);
}
.form__input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1); }
.form__captcha { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.form__captcha span { font-weight: 700; font-size: 1.2rem; white-space: nowrap; }
.form__checkbox { display: flex; gap: 10px; font-size: 0.85rem; margin-bottom: 30px; cursor: pointer; }
.btn--full { width: 100%; justify-content: center; }

.form__message {
    display: none; margin-top: 20px; padding: 15px; border-radius: 10px;
    text-align: center; font-weight: 600;
}
.form__message.success { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }

/* --- COOKIE POPUP --- */
.cookie-popup {
    position: fixed; bottom: -100px; left: 20px; right: 20px; z-index: 2000;
    transition: 0.5s ease-in-out;
}
.cookie-popup--active { bottom: 20px; }
.cookie-popup__content {
    max-width: 600px; margin: 0 auto; background: var(--text); color: var(--white);
    padding: 20px 30px; border-radius: 20px; display: flex; align-items: center; gap: 20px;
}
.cookie-popup p { font-size: 0.9rem; flex-grow: 1; }
.cookie-popup a { text-decoration: underline; }
.btn--sm { padding: 8px 16px; font-size: 0.8rem; }

@media (max-width: 992px) {
    .future__banner { flex-direction: column; text-align: center; padding: 40px; }
    .contact__grid { grid-template-columns: 1fr; gap: 40px; }
}
/* Состояние открытого мобильного меню */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 999;
    }

    .nav--active {
        right: 0;
    }

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

    .nav__link {
        font-size: 1.5rem;
    }

    .burger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    /* Анимация бургера в крестик */
    .burger--active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger--active span:nth-child(2) {
        opacity: 0;
    }
    .burger--active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    body.no-scroll {
        overflow: hidden;
    }
}
/* --- LEGAL & CONTACT PAGES --- */
.legal-page {
    padding-top: 140px; /* Учитываем высоту хедера */
    padding-bottom: 100px;
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.05), transparent);
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.legal-page h1 {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    margin-bottom: 30px;
    line-height: 1.1;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 60px;
    line-height: 1.7;
}

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

.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--primary-light);
}

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

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

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

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

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

.contact-extra {
    background: var(--bg-alt);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border-left: 4px solid var(--accent);
}

.contact-extra a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page { padding-top: 100px; }
    .contact-cards { grid-template-columns: 1fr; }
}
.legal-content h2 {
    margin: 40px 0 20px;
    font-size: 1.8rem;
    color: var(--text);
}

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

.legal-list li {
    margin-bottom: 15px;
    position: relative;
    list-style: none;
    padding-left: 15px;
}

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

.contact-info-block {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-alt);
    border-radius: 24px;
    border: 1px dashed var(--primary-light);
}

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

.contact-data li {
    margin-bottom: 10px;
}

.contact-data a {
    color: var(--primary);
    font-weight: 600;
}
.legal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.warning-icon {
    width: 48px;
    height: 48px;
    color: #eab308; /* Желтый цвет предупреждения */
}

.legal-block {
    margin-bottom: 25px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.risk-warning {
    background: rgba(234, 179, 8, 0.05);
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid #eab308;
}

.agreement {
    background: var(--bg-alt);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--primary-light);
    margin-top: 40px;
}

.legal-block p {
    line-height: 1.8;
}

@media (max-width: 768px) {
    .legal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
/* --- POLICY SPECIFIC --- */
.terminology-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.terminology-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: 16px;
}

.terminology-list svg {
    color: var(--primary);
    width: 24px;
    flex-shrink: 0;
}

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

.data-item {
    display: flex;
    gap: 15px;
    padding: 25px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    align-items: center;
}

.data-item svg {
    color: var(--accent);
    width: 32px;
    height: 32px;
}

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

.policy-contact-box {
    margin-top: 20px;
    padding: 30px;
    background: #f1f5f9;
    border-radius: 20px;
}

.policy-address {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .data-grid { grid-template-columns: 1fr; }
}
/* --- PRIVACY POLICY SPECIFIC --- */
.policy-hero-card {
    background: linear-gradient(135deg, var(--bg-alt) 0%, #eef2ff 100%);
    padding: 40px;
    border-radius: 30px;
    border-left: 6px solid var(--primary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.policy-notice {
    background: #fff7ed;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #ffedd5;
    margin-bottom: 40px;
    font-size: 0.95rem;
    color: #9a3412;
}

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

.storage-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-weight: 600;
}

.storage-item svg {
    color: var(--primary);
    width: 20px;
}

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

.data-box {
    background: var(--white);
    padding: 35px;
    border-radius: 28px;
    border: 1px solid rgba(0,0,0,0.05);
}

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

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

.data-box li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.data-box li::before {
    content: '→';
    color: var(--accent);
    font-weight: bold;
}

.rights-block {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: var(--text);
    color: var(--white);
    border-radius: 35px;
}

.rights-block h2 { color: var(--white); margin-bottom: 15px; }

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

.contact-btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .data-collection-grid { grid-template-columns: 1fr; }
    .storage-info { flex-direction: column; gap: 15px; }
}
/* --- REFUND PAGE SPECIFIC --- */
.refund-accent {
    border-left-color: var(--accent) !important;
    background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%) !important;
}

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

.refund-card {
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.refund-card:hover {
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.1);
    border-color: var(--accent);
}

.refund-card svg {
    color: var(--accent);
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
}

.refund-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.procedure-block {
    margin: 60px 0;
    padding: 40px;
    background: var(--text);
    color: var(--white);
    border-radius: 30px;
}

.procedure-block h2 { color: var(--white); margin-bottom: 25px; }

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

.step-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

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

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

.warning-block {
    margin-top: 50px;
    padding: 30px;
    background: #fff1f2;
    border-radius: 20px;
    border: 1px solid #fecdd3;
}

.warning-block h2 { color: #be123c; }

@media (max-width: 768px) {
    .procedure-block { padding: 25px; }
    .step-mini { font-size: 0.95rem; }
}/* --- TERMS SPECIFIC --- */
.terms-accent {
    border-left-color: var(--primary) !important;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%) !important;
}

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

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

.property-block {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 30px;
    background: var(--bg-alt);
    border-radius: 20px;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.property-block svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
    flex-shrink: 0;
}

.warning-block-terms {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 25px;
    background: #fef2f2;
    border-radius: 20px;
    border: 1px solid #fee2e2;
    color: #991b1b;
}

.warning-block-terms svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .property-block, .warning-block-terms {
        flex-direction: column;
        text-align: center;
    }
}