/* ============================================
   FEATURES SECTION STYLES
   ============================================ */

.features-section {
    padding: 6rem 0;
    background-color: white;
    position: relative;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 1.5rem;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-0.5rem);
}

.feature-icon-container {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-container img {
    width: 15rem;
    height: 15rem;
}

/* Mobile: iPhone 12/13/14 (390x844) */
@media (max-width: 390px) and (max-height: 844px) {
    .features-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
        padding-left: 24px;
        padding-right: 24px;
    }

    .features-section > .max-w-7xl {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100%;
        width: 100%;
    }

    .features-section > .max-w-7xl > .text-center h2 {
        font-size: 32px !important;
    }

    .features-section > .max-w-7xl > .text-center p {
        font-size: 16px !important;
    }

    .features-section .glass-card {
        text-align: center;
    }

    .features-section .glass-card h3 {
        font-size: 24px !important;
    }

    .features-section .glass-card p {
        font-size: 16px !important;
    }

    .features-section .feature-icon-container {
        margin-left: auto;
        margin-right: auto;
    }
}

