/* =====================================================
   Section 5 — Why Choose GiftTree BD
   ===================================================== */

.hwhy-section {
    background: var(--color-blush);
    border-top: 1px solid var(--color-border);
    padding: clamp(48px, 7vw, 80px) clamp(16px, 4vw, 40px);
}

.hwhy-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Header ── */
.hwhy-header {
    text-align: center;
    margin-bottom: 40px;
}

.hwhy-pill {
    display: inline-flex;
    align-items: center;
    background: #e8f5d6;
    color: #5a8f2a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.hwhy-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

/* ── Grid ── */
.hwhy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* ── Feature Card ── */
.hwhy-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 30px 20px 26px;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hwhy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.hwhy-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #e8f5d6;
    border-radius: 50%;
    margin: 0 auto 16px;
    font-size: 24px;
    line-height: 1;
}

.hwhy-card__title {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 8px;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.3;
}

.hwhy-card__desc {
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.65;
    margin: 0;
}

/* =====================================================
   Responsive
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hwhy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hwhy-section {
        padding: 40px 16px;
    }
    .hwhy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .hwhy-card {
        padding: 22px 16px 20px;
        border-radius: 14px;
    }
    .hwhy-card__icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    .hwhy-card__title {
        font-size: 13.5px;
    }
    .hwhy-card__desc {
        font-size: 12px;
    }
}
