/* ── APP FEATURES: VIDEO & FEATURE CARDS ── */

.app-hero-card {
    background: var(--navy-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    border-radius: 16px;
    padding: 2rem;
}

.feature-card {
    background: var(--navy-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-main);
    transition: var(--transition);
    height: 100%;
    display: flex;
    align-items: flex-start;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--navy-input);
    color: var(--gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.max-w-700 {
    max-width: 700px;
}

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
    .app-hero-card {
        padding: 1.2rem;
        border-radius: 12px;
    }
    .app-hero-card .row {
        flex-direction: column;
        text-align: center;
    }
    .app-hero-card .col-lg-5,
    .app-hero-card .col-lg-7 {
        text-align: center;
    }
    .app-hero-card .col-lg-5 h3,
    .app-hero-card .col-lg-5 p,
    .app-hero-card .col-lg-5 a {
        text-align: center;
    }
    .app-hero-card .col-lg-7 iframe {
        width: 100%;
    }
    .feature-card {
        padding: 16px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .feature-card .icon-wrapper {
        margin-bottom: 8px;
    }
    .icon-wrapper {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .feature-card h6 {
        font-size: 0.95rem;
    }
    .feature-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .app-hero-card {
        padding: 1rem;
        border-radius: 10px;
    }
    .app-hero-card h3 {
        font-size: 1.1rem;
    }
    .app-hero-card p {
        font-size: 0.85rem;
    }
    .app-hero-card .d-flex {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .app-hero-card .d-flex img {
        height: 34px !important;
    }
    .feature-card {
        padding: 14px;
    }
    .icon-wrapper {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}