.policies-container {
    padding: 150px 5% 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-neon {
    font-family: var(--font-H1);
    font-size: 42px;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.policy-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* Асиметрія */
.policy-card.wide { flex: 1.8; }
.policy-card.slim { flex: 1; }

/* Картки зі стилем Magenta Crystal */
.policy-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 25px;
    padding: 40px;
    transition: all 0.4s ease;
}

.policy-card:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    transform: translateY(-5px);
    border-color: var(--light) !important;
}

/* Спеціальний акцент для RESI */
.resi-special {
    border: 1px solid #E6007E !important;
    background: linear-gradient(135deg, rgba(230, 0, 126, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%) !important;
    box-shadow: 0 0 20px rgba(230, 0, 126, 0.2);
}

.policy-card h3 {
    font-family: var(--font-H2);
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
}

.policy-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 25px;
}

/* СТИЛІ КНОПОК */
.read-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 10px 25px;
    border-radius: 12px;
    font-family: var(--font-H4);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.read-btn:hover {
    background: var(--light);
    border-color: var(--light);
    box-shadow: 0 0 15px rgba(230, 0, 126, 0.4);
    color: white;
}

/* Спеціальна кнопка per RESI */
.resi-special .read-btn {
    border-color: var(--light);
    color: var(--light);
}

.resi-special .read-btn:hover {
    background: var(--light);
    color: white;
}

/* МОДАЛЬНЕ ВІКНО 70% */
.fgo-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 20000;
    align-items: center;
    justify-content: center;
}

.modal-box {
    width: 70%;
    max-height: 80vh;
    padding: 50px;
    position: relative;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-scroll-content {
    overflow-y: auto;
    padding-right: 20px;
    line-height: 1.8;
    color: #eee;
}

.modal-scroll-content::-webkit-scrollbar { width: 4px; }
.modal-scroll-content::-webkit-scrollbar-thumb { background: #E6007E; border-radius: 10px; }

.close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 28px;
    color: var(--light);
    cursor: pointer;
    z-index: 10;
}

/* ЄДИНИЙ БЛОК МОБІЛЬНОЇ АДАПТАЦІЇ */
@media (max-width: 768px) {
    .policy-row { 
        flex-direction: column; 
    }
    
    .modal-box { 
        width: 80%; 
        max-height: 85vh;
        /* ЗБІЛЬШЕНО ВЕРХНІЙ ВІДСТУП (65px), щоб текст гарантовано був під хрестиком */
        padding: 65px 20px 30px; 
    }

    .close-modal {
        top: 15px;
        right: 15px;
        font-size: 30px; 
        /* Додано легкий темний фон для хрестика, щоб він не зливався з текстом при скролі */
        background: rgba(0, 0, 0, 0.6); 
        border-radius: 50%;
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-scroll-content {
        padding-right: 10px; 
        font-size: 15px; 
    }
}

/* Стиль для опису під заголовком */
.policy-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    max-width: 600px;
    margin: -30px auto 50px auto; /* Підтягуємо ближче до заголовку і робимо відступ знизу */
    line-height: 1.6;
}

@media (max-width: 768px) {
    .policy-subtitle {
        font-size: 14px;
        margin: -20px auto 40px auto;
        padding: 0 15px;
    }
}