/* HerPhase - Imports main styles + page-specific additions */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ---- Import all base styles from main ---- */
@import url('/style.css');

/* ---- HerPhase Page Specific ---- */

.app-detail {
    padding: 80px 0;
    background: var(--bg-white, #ffffff);
}

.app-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-detail-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1a1a2e;
}

.app-detail-content p {
    font-size: 1.05rem;
    color: #8888a0;
    line-height: 1.7;
    margin-bottom: 28px;
}

.app-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a2e;
}

.highlight-icon {
    width: 32px;
    height: 32px;
    background: rgba(232, 67, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--herphase-primary, #e84393);
    flex-shrink: 0;
}

.app-detail-phone {
    display: flex;
    justify-content: center;
}

.app-detail-phone .phone-frame {
    width: 260px;
    background: #1a1a2e;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255,255,255,0.1);
}

.app-detail-phone .phone-frame img {
    border-radius: 26px;
    width: 100%;
}

/* HerPhase hero specific */
.herphase-hero {
    background: linear-gradient(180deg, #fff0f6 0%, #f8f9fc 100%);
}

/* Screenshots grid 5 columns for HerPhase */
.screenshots-grid--5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) {
    .screenshots-grid--5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .app-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .app-detail-phone {
        order: -1;
    }

    .app-detail-phone .phone-frame {
        width: 220px;
    }

    .app-highlights {
        align-items: center;
    }

    .app-detail-content h2 {
        font-size: 1.8rem;
    }

    .screenshots-grid--5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .screenshots-grid--5 {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
}
