/* ========================= */
/* FEATURES SECTION */
/* ========================= */

.features {

    background: white;

    position: relative;
}



/* ========================= */
/* SECTION TITLE */
/* ========================= */

.section-title {

    text-align: center;

    margin-bottom: 80px;
}


.section-title h2 {

    font-size: 52px;

    color: var(--primary);

    margin-bottom: 20px;

    letter-spacing: -2px;
}


.section-title p {

    font-size: 18px;

    color: var(--gray);

    max-width: 720px;

    margin: auto;
}



/* ========================= */
/* FEATURES GRID */
/* ========================= */

.features-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}



/* ========================= */
/* FEATURE CARD */
/* ========================= */

.feature-card {

    background: var(--bg);

    padding: 42px;

    border-radius: 28px;

    position: relative;

    overflow: hidden;

    border: 1px solid rgba(0,0,0,0.04);

    transition: 0.35s ease;
}



/* HOVER EFFECT */

.feature-card:hover {

    transform: translateY(-10px);

    background: white;

    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}



/* LIGHT GLOW */

.feature-card::before {

    content: "";

    position: absolute;

    top: -100px;

    right: -100px;

    width: 220px;

    height: 220px;

    background: radial-gradient(
        circle,
        rgba(168, 218, 220, 0.35) 0%,
        transparent 70%
    );

    opacity: 0;

    transition: 0.4s ease;
}


.feature-card:hover::before {

    opacity: 1;
}



/* ========================= */
/* ICON */
/* ========================= */

.feature-icon {

    width: 72px;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 32px;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        var(--accent),
        #dff7f8
    );

    margin-bottom: 28px;

    position: relative;

    z-index: 2;
}



/* ========================= */
/* CARD TEXT */
/* ========================= */

.feature-card h3 {

    font-size: 25px;

    margin-bottom: 18px;

    color: var(--primary);

    position: relative;

    z-index: 2;
}


.feature-card p {

    font-size: 16px;

    color: var(--gray);

    line-height: 1.9;

    position: relative;

    z-index: 2;
}