:root {
    --primary: #2563eb;
    --primary-glow: rgba(37, 99, 235, 0.4);
    --dark: #0f172a;
    --light: #f8fafc;
    --text-muted: #64748b;
    --bg: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, .logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.logo__dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 3px;
    transform: rotate(45deg);
}

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

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

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

.btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
}

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

.btn--header:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--primary-glow);
}

/* --- FOOTER --- */
.footer {
    background: #020617;
    color: white;
    padding: 80px 0 40px;
}

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

.logo--footer { color: white; margin-bottom: 20px; }

.footer__tagline {
    color: #94a3b8;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer__title {
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer__links li { margin-bottom: 12px; }
.footer__links a { color: #94a3b8; font-size: 0.9rem; }
.footer__links a:hover { color: var(--primary); padding-left: 5px; }

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #94a3b8;
    font-size: 0.9rem;
}

.icon-s { width: 18px; color: var(--primary); }

.footer__bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #475569;
    font-size: 0.85rem;
}

/* --- MOBILE --- */
.burger { display: none; }

@media (max-width: 992px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .nav { display: none; }
    .burger { display: block; background: none; border: none; cursor: pointer; }
    .burger span { display: block; width: 25px; height: 2px; background: var(--dark); margin: 5px 0; }
}
/* --- HERO SECTION --- */
.hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    background: #ffffff;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: floatBg 15s infinite alternate;
}

.hero__circle--1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.hero__circle--2 {
    width: 300px;
    height: 300px;
    background: #7c3aed;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

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

.hero__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.text-gradient {
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.btn--primary {
    background: var(--primary);
    color: white;
}

.btn--outline {
    border: 2px solid #e2e8f0;
    color: var(--dark);
}

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

/* --- SVG ANIMATIONS --- */
.hero__visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero__svg {
    width: 100%;
    max-width: 450px;
    filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.2));
}

.svg-core {
    animation: pulseCore 4s infinite ease-in-out;
}

.svg-ring-1 {
    transform-origin: center;
    animation: rotate 20s linear infinite;
}

.svg-ring-2 {
    transform-origin: center;
    animation: rotate 30s linear infinite reverse;
}

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

@keyframes pulseCore {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 992px) {
    .hero__container { grid-template-columns: 1fr; text-align: center; }
    .hero__description { margin: 0 auto 40px; }
    .hero__actions { justify-content: center; }
}
/* --- FEATURES SECTION --- */
.features {
    padding: 100px 0;
    background: #fcfcfd;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

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

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

.feature-card {
    position: relative;
    padding: 40px;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.feature-card__icon i {
    width: 28px;
    height: 28px;
}

.feature-card__title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.feature-card__text {
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Эффект свечения при наведении */
.feature-card__glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(37, 99, 235, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

.feature-card:hover .feature-card__glare {
    opacity: 1;
}
/* --- METHOD SECTION --- */
.method {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.section-head--left {
    text-align: left;
    margin-left: 0;
    margin-bottom: 80px;
}

.method__list {
    position: relative;
    max-width: 800px;
}

/* Линия таймлайна */
.method__list::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), #e2e8f0);
}

.method__item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    opacity: 0; /* Для анимации появления */
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.method__item.active {
    opacity: 1;
    transform: translateX(0);
}

.method__number {
    width: 62px;
    height: 62px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 8px white;
}

.method__step-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.method__step-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 500px;
}

@media (max-width: 768px) {
    .method__list::before { left: 20px; }
    .method__number { width: 42px; height: 42px; font-size: 0.9rem; }
    .method__item { gap: 20px; }
}
/* --- VISION SECTION --- */
.vision {
    padding: 120px 0;
    background: #0f172a;
    color: white;
    overflow: hidden;
}

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

.vision__image-box {
    position: relative;
}

.vision__img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.vision__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s ease-out; /* Для параллакса */
}

.vision__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
}

.vision__experience-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.exp-number { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.exp-text { font-size: 0.9rem; opacity: 0.9; text-align: center; }

.vision__features {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vision__feat-item {
    display: flex;
    gap: 20px;
}

.vision__feat-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.vision__feat-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.vision__feat-item p {
    color: #94a3b8;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .vision__container { grid-template-columns: 1fr; gap: 60px; }
    .vision__image-box { order: 2; max-width: 500px; margin: 0 auto; }
    .vision__experience-card { right: 0; bottom: -20px; padding: 20px; }
}
/* --- FAQ SECTION --- */
.faq {
    padding: 100px 0;
    background: #f8fafc;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

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

.faq__trigger {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.faq__icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.4s ease;
}

.faq__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq__item.active .faq__content {
    max-height: 500px; /* Достаточное значение */
    transition: max-height 0.4s cubic-bezier(0.9, 0, 0.1, 1);
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__content-inner {
    padding: 0 30px 24px;
    color: var(--text-muted);
    line-height: 1.7;
}
/* --- CONTACT SECTION --- */
.contact {
    padding: 120px 0;
    background: #ffffff;
}

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

.contact__text {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 20px 0 40px;
}

.contact__methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__method {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact__method-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form Styles */
.contact__form-wrapper {
    background: #f8fafc;
    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;
    background: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form__input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.captcha__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.checkbox__group a { color: var(--primary); text-decoration: underline; }

.btn--full { width: 100%; border: none; font-size: 1rem; padding: 18px; }

.form__status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    display: none;
    font-size: 0.9rem;
    text-align: center;
}

.form__status.success { background: #dcfce7; color: #166534; display: block; }
.form__status.error { background: #fee2e2; color: #991b1b; display: block; }

@media (max-width: 992px) {
    .contact__container { grid-template-columns: 1fr; gap: 60px; }
    .contact__form-wrapper { padding: 30px; }
}
/* --- COOKIE POPUP --- */
.cookie-popup {
    position: fixed;
    bottom: -100px;
    left: 20px;
    right: 20px;
    max-width: 450px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    z-index: 2000;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.cookie-popup.active {
    transform: translateY(-120px);
}

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

.cookie-popup__icon { color: var(--primary); flex-shrink: 0; }
.cookie-popup__text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }
.cookie-popup__text a { color: var(--primary); text-decoration: underline; }
.btn--s { padding: 8px 16px; font-size: 0.8rem; border: none; }

/* --- MOBILE MENU --- */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    }

    .nav.active { right: 0; }

    .nav__list {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .nav__link { font-size: 1.5rem; color: var(--dark); font-weight: 700; }

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

    .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); }
}
/* --- LEGAL PAGES STYLING --- */
.legal-page {
    padding-top: 140px; /* Отступ под фиксированный хедер */
    padding-bottom: 100px;
    background-color: #fcfcfd;
    min-height: 80vh;
}

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

.legal-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--dark);
}

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

/* Стили для текстового контента (Privacy Policy и др.) */
.pages h2 {
    font-size: 1.4rem;
    margin: 40px 0 20px;
    color: var(--dark);
}

.pages p {
    margin-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

.pages ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.pages ul li {
    margin-bottom: 10px;
    list-style-type: disc;
    color: var(--text-muted);
}

/* Контактные карточки */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

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

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.contact-card__icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

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

.contact-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

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

.contact-extra {
    padding: 30px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.contact-extra p {
    margin: 0;
    font-size: 0.95rem;
}

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

@media (max-width: 768px) {
    .legal-title { font-size: 1.6rem; }
    .contact-card { padding: 30px; }
}
/* --- LEGAL CONTENT ENHANCEMENTS --- */
.legal-content h2 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-list {
    margin: 25px 0;
    padding: 0;
}

.legal-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
    list-style: none; /* Убираем стандартные точки */
}

.legal-list li i {
    color: var(--primary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.check-list li::before {
    content: "—";
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
}

.contact-info-block {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.legal-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

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

.l-contact-item i {
    width: 18px;
    color: var(--primary);
}

.l-contact-item a:hover {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-info-block { padding: 25px; }
}
/* --- DISCLAIMER SPECIFIC STYLES --- */
.legal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.warning-icon-box {
    width: 60px;
    height: 60px;
    background: #fff7ed;
    color: #f97316; /* Оранжевый предупреждающий */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid #ffedd5;
}

.warning-icon-box i {
    width: 32px;
    height: 32px;
}

.shadow-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border-left: 4px solid var(--primary);
    margin-bottom: 40px;
}

.risk-warning-box {
    background: #fef2f2; /* Светло-красный фон */
    border: 1px solid #fee2e2;
    padding: 35px;
    border-radius: 20px;
    margin: 50px 0;
}

.risk-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #dc2626;
}

.risk-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.agreement-footer {
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.95rem;
    color: var(--dark);
}

.legal-block h2 {
    font-size: 1.4rem;
    margin-top: 40px;
}
/* --- PRIVACY POLICY SPECIFIC --- */
.terminology-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.terminology-list li {
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.term {
    font-weight: 800;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.desc {
    color: var(--dark);
    line-height: 1.5;
}

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

.data-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.data-icon {
    width: 45px;
    height: 45px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.data-info strong { font-size: 1rem; color: var(--dark); }
.data-info span { font-size: 0.85rem; color: var(--text-muted); }

.policy-mail {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: underline;
}
/* --- PRIVACY POLICY ENHANCEMENTS --- */
.policy-hero-card {
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    color: white;
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 40px;
    font-size: 1.15rem;
    line-height: 1.6;
}

.policy-notice-box {
    display: flex;
    gap: 15px;
    background: #f0f9ff;
    padding: 25px;
    border-radius: 16px;
    border-left: 4px solid #0ea5e9;
    margin-bottom: 40px;
    align-items: flex-start;
}

.policy-notice-box i { color: #0ea5e9; flex-shrink: 0; }

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

.storage-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}

.storage-icon {
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.data-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

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

.mini-list {
    padding: 0;
    list-style: none;
}

.mini-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
}

.rights-block-highlight {
    margin-top: 60px;
    padding: 40px;
    background: #f8fafc;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.contact-pill-btn {
    background: var(--dark);
    color: white !important;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

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

@media (max-width: 992px) {
    .data-collection-grid { grid-template-columns: 1fr; }
    .rights-block-highlight { flex-direction: column; text-align: center; }
    .storage-info { flex-direction: column; }
}
/* --- REFUND POLICY ENHANCEMENTS --- */
.refund-accent {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-left: 5px solid var(--primary);
}

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

.refund-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

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

.refund-card__icon {
    width: 45px;
    height: 45px;
    color: var(--primary);
    margin-bottom: 20px;
}

.refund-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--dark);
}

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

/* Steps Styling */
.steps-mini {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.step-num {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
}

.warning-block-light {
    background: #fffaf0;
    border: 1px solid #feebc8;
    padding: 35px;
    border-radius: 24px;
    margin: 40px 0;
}

.warning-block-light h2 {
    color: #9c4221;
    margin-top: 0;
}
/* --- TERMS SPECIFIC STYLES --- */
.terms-accent {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.property-block-visual {
    display: flex;
    gap: 25px;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    align-items: center;
    margin: 25px 0;
}

.property-icon {
    width: 54px;
    height: 54px;
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.warning-block-simple {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px dashed #cbd5e1;
    align-items: flex-start;
}

.warning-block-simple i {
    color: #64748b;
    width: 20px;
    flex-shrink: 0;
}

.warning-block-simple p {
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 640px) {
    .property-block-visual {
        flex-direction: column;
        text-align: center;
    }
}