/* ======================================================
   LEGAL PAGES
====================================================== */

.legal-section{
    padding: 80px 0 110px;

    background:
        linear-gradient(
            180deg,
            #f7f9fc 0%,
            #eef3f8 100%
        );
}

.legal-content{
    max-width: 980px;
    margin: 0 auto;
    padding: 56px;

    background: #ffffff;

    border: 1px solid rgba(11,44,77,.08);
    border-radius: 18px;

    box-shadow: 0 24px 70px rgba(15,23,42,.08);
}

.legal-badge{
    display: inline-flex;

    padding: 9px 14px;
    margin-bottom: 22px;

    border-radius: 999px;

    background: rgba(245,158,11,.12);

    color: #b45309;

    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.legal-content h1{
    margin-bottom: 22px;

    color: #0b2c4d;

    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
}

.legal-content h2{
    margin-top: 38px;
    margin-bottom: 12px;

    color: #0f172a;

    font-size: 1.35rem;
}

.legal-content p,
.legal-content li{
    color: #334155;

    font-size: 1rem;
    line-height: 1.85;
}

.legal-content ul{
    padding-left: 1.2rem;
    margin-bottom: 18px;
}

.legal-content a{
    color: #b45309;
    font-weight: 700;
}

.legal-updated{
    margin-top: 42px;
    padding-top: 22px;

    border-top: 1px solid rgba(15,23,42,.1);

    color: #64748b !important;
    font-weight: 700;
}

/* ======================================================
   COOKIE BANNER
====================================================== */

.cookie-banner{
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 10000;

    width: min(1120px, calc(100% - 32px));

    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 18px 20px;

    background: rgba(7,16,25,.96);

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;

    box-shadow: 0 22px 70px rgba(0,0,0,.35);

    transform: translateX(-50%);
}

.cookie-banner.show{
    display: flex;
}

.cookie-banner p{
    margin: 0;

    color: rgba(255,255,255,.82);

    font-size: .92rem;
    line-height: 1.55;
}

.cookie-banner strong{
    display: block;
    margin-bottom: 3px;

    color: #ffffff;
}

.cookie-banner a{
    color: #f59e0b;
    font-weight: 700;
}

.cookie-actions{
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.cookie-btn{
    border: 0;
    border-radius: 999px;

    padding: 11px 18px;

    font-weight: 800;
    line-height: 1;
}

.cookie-btn.accept{
    background: #f59e0b;
    color: #071019;
}

.cookie-btn.reject{
    background: rgba(255,255,255,.1);
    color: #ffffff;
}

@media (max-width: 768px){
    .legal-section{
        padding: 48px 0 80px;
    }

    .legal-content{
        padding: 30px 22px;
        border-radius: 14px;
    }

    .cookie-banner{
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-actions{
        width: 100%;
    }

    .cookie-btn{
        flex: 1;
    }
}
