/* =========================================================
            TOOLHUB — WHY CHOOSE US
========================================================= */

.why-choose-section {

    position: relative;

    padding: 110px 0;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(37, 99, 235, 0.09),
            transparent 32%
        ),
        #07111f;

    overflow: hidden;

}


/* =========================================================
            HEADER
========================================================= */

.why-header {

    max-width: 760px;

    margin: 0 auto 60px;

    text-align: center;

}

.why-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 16px;

    margin-bottom: 18px;

    border-radius: 999px;

    color: #60a5fa;

    background: rgba(37, 99, 235, 0.10);

    border: 1px solid rgba(96, 165, 250, 0.17);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.2px;

}

.why-header h2 {

    margin: 0 0 16px;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1px;

}

.why-header h2 span {

    color: #3b82f6;

}

.why-header p {

    max-width: 650px;

    margin: 0 auto;

    color: #94a3b8;

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
            FEATURES GRID
========================================================= */

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

}


/* =========================================================
            FEATURE CARD
========================================================= */

.why-card {

    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 18px;

    min-width: 0;

    padding: 27px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.018)
        );

    border: 1px solid rgba(255,255,255,0.075);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.16);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;

}

.why-card::before {

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    top: -80px;

    right: -70px;

    border-radius: 50%;

    background: rgba(37,99,235,0.14);

    filter: blur(45px);

    opacity: 0;

    transition: opacity 0.35s ease;

    pointer-events: none;

}

.why-card:hover::before {

    opacity: 1;

}

.why-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(59,130,246,0.30);

    box-shadow:
        0 23px 50px rgba(0,0,0,0.24),
        0 0 28px rgba(37,99,235,0.06);

}


/* =========================================================
            ICON
========================================================= */

.why-icon {

    position: relative;

    z-index: 1;

    width: 58px;

    height: 58px;

    flex: 0 0 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    color: #ffffff;

    font-size: 21px;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.18);

    transition:
        transform 0.35s ease;

}

.why-card:hover .why-icon {

    transform:
        translateY(-4px)
        rotate(-4deg)
        scale(1.04);

}


/* =========================================================
            ICON COLORS
========================================================= */

.why-icon.blue {

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );

}

.why-icon.green {

    background:
        linear-gradient(
            135deg,
            #22c55e,
            #15803d
        );

}

.why-icon.purple {

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #6d28d9
        );

}

.why-icon.orange {

    background:
        linear-gradient(
            135deg,
            #f59e0b,
            #d97706
        );

}

.why-icon.cyan {

    background:
        linear-gradient(
            135deg,
            #06b6d4,
            #0284c7
        );

}

.why-icon.pink {

    background:
        linear-gradient(
            135deg,
            #ec4899,
            #be185d
        );

}


/* =========================================================
            CONTENT
========================================================= */

.why-content {

    position: relative;

    z-index: 1;

    min-width: 0;

}

.why-content h3 {

    margin: 2px 0 9px;

    color: #ffffff;

    font-size: 18px;

    line-height: 1.3;

    font-weight: 750;

}

.why-content p {

    margin: 0;

    color: #94a3b8;

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
            CTA
========================================================= */

.why-cta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 55px;

    padding: 25px 28px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(37,99,235,0.12),
            rgba(255,255,255,0.035)
        );

    border: 1px solid rgba(96,165,250,0.15);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.16);

}

.why-cta-content {

    display: flex;

    align-items: center;

    gap: 17px;

}

.why-cta-icon {

    width: 52px;

    height: 52px;

    flex: 0 0 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );

    box-shadow:
        0 10px 25px rgba(37,99,235,0.25);

}

.why-cta h3 {

    margin: 0 0 5px;

    color: #ffffff;

    font-size: 18px;

}

.why-cta p {

    margin: 0;

    color: #94a3b8;

    font-size: 13px;

}

.why-cta-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    padding: 13px 20px;

    border-radius: 12px;

    color: #ffffff;

    background: #2563eb;

    border: 1px solid #2563eb;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

}

.why-cta-button:hover {

    transform: translateY(-3px);

    background: #1d4ed8;

    box-shadow:
        0 13px 30px rgba(37,99,235,0.28);

}

.why-cta-button i {

    transition:
        transform 0.3s ease;

}

.why-cta-button:hover i {

    transform: translateX(5px);

}


/* =========================================================
            TABLET
========================================================= */

@media (max-width: 1050px) {

    .why-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


/* =========================================================
            MOBILE
========================================================= */

@media (max-width: 700px) {

    .why-choose-section {

        padding: 80px 0;

    }

    .why-header {

        margin-bottom: 40px;

    }

    .why-header h2 {

        font-size: 34px;

    }

    .why-header p {

        font-size: 14px;

    }

    .why-grid {

        grid-template-columns: 1fr;

        gap: 17px;

    }

    .why-card {

        padding: 22px;

    }

    .why-cta {

        flex-direction: column;

        align-items: flex-start;

        padding: 22px;

    }

    .why-cta-button {

        width: 100%;

        justify-content: center;

    }

}


/* =========================================================
            SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .why-choose-section {

        padding: 65px 0;

    }

    .why-card {

        padding: 19px;

        gap: 14px;

    }

    .why-icon {

        width: 52px;

        height: 52px;

        flex-basis: 52px;

        border-radius: 14px;

        font-size: 19px;

    }

    .why-content h3 {

        font-size: 17px;

    }

}


/* =========================================================
            ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .why-card,
    .why-icon,
    .why-cta-button,
    .why-cta-button i {

        transition: none;

    }

}