.fit-legal-frame{
    padding:80px 0;
}

.fit-legal-hero{
    text-align:center;
    padding:80px 0 40px;
}

.fit-legal-hero h1{
    font-size:56px;
    margin:12px 0;
}

.fit-legal-hero p{
    max-width:700px;
    margin:0 auto;
    color:var(--fit-muted);
}

.fit-legal-card{
    max-width:1600px;
    margin:0 auto;
    padding:50px;
}

.fit-legal-card h2{
    margin-bottom:30px;
}

.fit-legal-card h3{
    margin-top:35px;
    margin-bottom:10px;
    color:var(--fit-yellow);
}

.fit-legal-card p{
    line-height:1.8;
    color:var(--fit-muted);
}
.fit-legal-card ul{
    margin:16px 0 24px 22px;
}

.fit-legal-card li{
    margin-bottom:10px;
    color:var(--fit-muted);
}
.fit-legal-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
    margin-top:40px;
}

.fit-legal-link-card{
    display:block;

    padding:30px;

    border-radius:24px;

    background:var(--fit-card);

    border:1px solid rgba(255,255,255,.06);

    text-decoration:none;

    transition:.25s ease;
}

.fit-legal-link-card:hover{
    transform:translateY(-4px);

    border-color:rgba(255,210,46,.25);

    box-shadow:
        0 20px 40px rgba(0,0,0,.35);
}

.fit-legal-link-card span{
    display:block;

    font-size:36px;

    margin-bottom:14px;
}

.fit-legal-link-card h3{
    margin:0 0 10px;

    color:#fff;
}

.fit-legal-link-card p{
    margin:0;

    color:var(--fit-muted);
}
.fit-contact-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:24px;

    margin-top:40px;
}

.fit-contact-card{
    padding:30px;

    border-radius:24px;

    background:var(--fit-card);

    border:1px solid rgba(255,255,255,.06);
}

.fit-contact-card h3{
    margin-top:0;
}

.fit-contact-card a{
    color:var(--fit-yellow);

    font-weight:700;

    text-decoration:none;
}
/* =====================================================
   FITOCALA LEGAL HUB
===================================================== */

.fit-legal-hub-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
    margin-top:10px;
}

.fit-legal-hub-card{
    min-height:260px;
    padding:28px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    border-radius:32px;
    text-decoration:none !important;
    transition:.25s ease;
}

.fit-legal-hub-card:hover{
    transform:translateY(-6px);
}

.fit-legal-hub-icon{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    font-size:28px;

    background:rgba(255,210,46,.08);
    border:1px solid rgba(255,210,46,.18);

    box-shadow:
    0 0 30px rgba(255,210,46,.08);
}

.fit-legal-hub-card h2{
    margin:24px 0 12px;
    color:#fff !important;
    font-size:28px;
    line-height:1.05;
    letter-spacing:-.04em;
}

.fit-legal-hub-card p{
    margin:0;
    color:var(--fit-muted);
    line-height:1.7;
    font-size:15px;
}

.fit-legal-hub-card strong{
    margin-top:24px;
    color:var(--fit-yellow);
    font-size:14px;
    font-weight:800;
}

@media(max-width:1100px){

    .fit-legal-hub-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

@media(max-width:768px){

    .fit-legal-hub-grid{
        grid-template-columns:1fr;
    }

    .fit-legal-hub-card{
        min-height:auto;
    }

}