/* ==========================================================================
   WHO IS THIS FOR (FIT SECTION)
   ========================================================================== */

.fit-section {
    padding: 120px 25px;
    background: #050505;
}

.fit-container {
    max-width: 1200px;
    margin: auto;
}

.fit-heading {
    max-width: 760px;
    margin: auto auto 70px;
    text-align: center;
}

.fit-heading h2 {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
    margin: 20px 0;
    color: white;
}


.fit-heading p {
    font-size: 18px;
    line-height: 1.9;
    color: #bdbdbd;
}

/* ==========================================================================
   GRID & CARDS
   ========================================================================== */

.fit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.fit-grid h3 {
    color: white;
}

.fit-card {
    padding: 35px;
    border-radius: 24px;
    background: linear-gradient(145deg, #111, #080808);
    border: 1px solid rgba(212, 175, 55, .15);
    transition: .35s;
}

.fit-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
}

.fit-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.fit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.fit-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #bdbdbd;
}

/* ==========================================================================
   BOTTOM CTA BOX
   ========================================================================== */

.fit-bottom {
    margin-top: 70px;
    padding: 50px;
    text-align: center;
    border-radius: 28px;
    background: linear-gradient(145deg, #111, #090909);
    border: 1px solid rgba(212, 175, 55, .2);
}

.fit-bottom h3 {
    font-size: 34px;
    margin-bottom: 20px;
    color: white;
}

.fit-bottom p {
    max-width: 760px;
    margin: auto;
    line-height: 1.9;
    color: #bdbdbd;
}

.fit-btn {
    display: inline-flex;
    margin-top: 35px;
    padding: 18px 40px;
    background: #d4af37;
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
}

.fit-btn:hover {
    transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet & Landscape Mobile */
@media (max-width: 992px) {
    .fit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .fit-section {
        padding: 90px 20px;
    }

    .fit-grid {
        grid-template-columns: 1fr;
    }

    .fit-heading h2 {
        font-size: 34px;
    }

    .fit-bottom {
        padding: 35px;
    }

    .fit-bottom h3 {
        font-size: 28px;
    }
}