/* =========================================
   FEATURES SECTION (COLORED UPGRADE)
========================================= */
.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #708edb 0%, #ffffff 100%);
}

/* HEADER */
.features-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 50px;
}

.features-header h2 {
    font-size: 30px;
    margin-top: 10px;
}

.features-header p {
    font-size: 14px;
    color: var(--grey-500);
}

/* GRID */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* =========================================
   CARD (NEW LOOK)
========================================= */
.feature-card {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f8fbff);
    padding: 22px;
    border-radius: 18px;

    border: 1px solid rgba(30, 94, 255, 0.08);

    display: flex;
    flex-direction: column;
    gap: 14px;

    transition: 0.3s ease;
    overflow: hidden;
}

/* SUBTLE BLUE GLOW */
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(30, 94, 255, 0.08), transparent 60%);
    opacity: 0;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.feature-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 40px rgba(30, 94, 255, 0.12);
    border-color: rgba(30, 94, 255, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

/* =========================================
   ICON (GRADIENT STYLE)
========================================= */
.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;

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

    font-size: 22px;

    background: linear-gradient(135deg, #e9f0ff, #dbe7ff);
    box-shadow: 0 6px 14px rgba(30, 94, 255, 0.15);
}

/* =========================================
   CONTENT
========================================= */
.feature-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* TITLE */
.feature-content h3 {
    font-size: 16px;
    font-weight: 600;
}

/* TEXT */
.feature-content p {
    font-size: 13px;
    color: var(--grey-500);
}

/* LIST */
.feature-content ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 6px;
}

/* LIST ITEM */
.feature-content li {
    font-size: 12px;
    color: var(--grey-700);
    display: flex;
    gap: 8px;
}

/* BULLET */
.feature-content li::before {
    content: "✔";
    color: var(--primary-blue);
    font-weight: 600;
}

/* =========================================
   OPTIONAL: CARD VARIATIONS (MORE LIFE)
========================================= */
.feature-card:nth-child(2n) {
    background: linear-gradient(145deg, #ffffff, #f3f7ff);
}

.feature-card:nth-child(3n) {
    background: linear-gradient(145deg, #ffffff, #eef4ff);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .features-section {
        padding: 60px 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .features-header h2 {
        font-size: 24px;
    }

    .feature-card {
        padding: 18px;
    }
}