/* Scoped premium styles for the Arcavio Legal/Privacy/Disclaimer Pages */
.legal-premium-section {
    background-color: #05070e !important;
    position: relative;
    z-index: 1;
    padding: 120px 0 80px 0;
    overflow: hidden;
}

/* Ambient background glow spot */
.legal-premium-section::before {
    content: "";
    position: absolute;
    top: 5%;
    left: -10%;
    width: 45%;
    height: 55%;
    background: radial-gradient(circle, rgba(68, 97, 223, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(100px);
}

/* Eyebrow badge */
.premium-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #45e0ff;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}

.premium-eyebrow i {
    font-size: 8px;
}

/* Elegant clause grids */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.legal-card {
    background: rgba(13, 20, 38, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-card:hover {
    border-color: rgba(69, 224, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(69, 224, 255, 0.03);
}

.legal-card h4 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px;
    font-weight: 700;
    color: #45e0ff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-card h4 i {
    font-size: 14px;
    opacity: 0.8;
}

.legal-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.legal-card a {
    color: #45e0ff;
    text-decoration: none;
    font-weight: 500;
}

.legal-card a:hover {
    color: #8fe8ff;
    text-decoration: underline;
}

/* Responsiveness */
@media (max-width: 767px) {
    .legal-premium-section {
        padding: 100px 0 60px 0;
    }

    .legal-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .legal-card {
        padding: 24px;
    }
}
