.tools-section{
    padding: 50px 15px;
    min-height: 100vh;
}

/* GRID */

.tools-grid{
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* CARD */

.tool-card{
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.95),
            rgba(245,247,255,0.95)
        );

    border-radius: 32px;

    padding: 32px;

    text-decoration: none;

    display: flex;

    align-items: flex-start;

    gap: 24px;

    border: 1px solid rgba(255,255,255,0.6);

    backdrop-filter: blur(18px);

    box-shadow:
        0 12px 35px rgba(79, 70, 229, 0.08),
        0 4px 15px rgba(0,0,0,0.04);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

/* GLOW EFFECT */

.tool-card::before{
    content: '';

    position: absolute;

    width: 220px;
    height: 220px;

    background:
        radial-gradient(
            circle,
            rgba(99,102,241,0.22),
            transparent 70%
        );

    top: -80px;
    right: -80px;

    transition: 0.4s ease;
}

/* HOVER */

.tool-card:hover{
    transform:
        translateY(-10px)
        scale(1.02);

    box-shadow:
        0 25px 60px rgba(79,70,229,0.18),
        0 10px 25px rgba(0,0,0,0.08);
}

.tool-card:hover::before{
    transform: scale(1.3);
}

/* ICON */

.tool-icon{
    min-width: 90px;
    height: 90px;

    border-radius: 28px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 42px;

    color: white;

    position: relative;

    box-shadow:
        inset 0 2px 10px rgba(255,255,255,0.25),
        0 8px 20px rgba(0,0,0,0.18);
}

/* PREMIUM GRADIENT */

.purple{
    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #4f46e5
        );
}

/* CONTENT */

.tool-content{
    flex: 1;
}

.tool-content h3{
    font-size: 28px;

    font-weight: 800;

    color: #111827;

    margin-bottom: 12px;

    letter-spacing: -0.5px;
}

.tool-content p{
    color: #6b7280;

    font-size: 16px;

    line-height: 1.8;

    font-weight: 500;
}

/* SMALL TAG */

.tool-card::after{
    content: 'NEW';

    position: absolute;

    top: 20px;
    right: 20px;

    background:
        linear-gradient(
            135deg,
            #f59e0b,
            #ea580c
        );

    color: white;

    font-size: 11px;

    font-weight: 800;

    padding: 6px 10px;

    border-radius: 999px;

    letter-spacing: 1px;

    box-shadow:
        0 4px 12px rgba(245,158,11,0.35);
}

/* RESPONSIVE */

@media(max-width:768px){

    .tool-card{
        padding: 24px;
        border-radius: 24px;
    }

    .tool-icon{
        min-width: 75px;
        height: 75px;
        font-size: 34px;
    }

    .tool-content h3{
        font-size: 22px;
    }

    .tool-content p{
        font-size: 14px;
    }
}