/* Why Section */
.why-section {
    background: #f7f8f4;
}

.why-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00A651;
    margin-bottom: 10px;
}

.why-heading {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #1a1a2e;
    letter-spacing: -0.02em;
}

/* Card */
.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    border-top: 3px solid var(--card-color, #00A651);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* Icon circle */
.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--card-color) 15%, white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: var(--card-color);
}

.feature-card h5 {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-size: 1rem;
}

.feature-card p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.92rem;
    line-height: 1.6;
}