/* ============================================
   Reflex Styles - Page Specific
   ============================================ */

/* Import Core Styles */
@import url('variables.css');
@import url('reset.css');
@import url('base.css');
@import url('layout.css');
@import url('components.css');

/* ============================================
   Hero Section - Reflex
   ============================================ */

.hero {
    background-color: var(--bg-off-white);
    padding: 60px 0;
}

.hero-title {
    font-size: var(--text-6xl);
    margin: 24px 0;
    line-height: var(--leading-tighter);
    font-weight: 700;
}

.hero-blob {
    width: 100%;
    height: 500px;
    background-color: var(--bg-placeholder);
    background-image: url('../../assets/images/reflex_banner.png');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-3xl);
}

/* ============================================
   Target Audience - Page Specific Override
   ============================================ */

.target-main-card {
    background-color: var(--bg-purple-light);
}

.target-main-card img {
    max-height: 300px;
    width: auto;
    max-width: 100%;
}

/* ============================================
   Video Notes
   ============================================ */

.video-notes {
    padding: 80px 0;
}

.video-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.price-detail {
    font-size: var(--text-xs);
    background: var(--bg-purple-light);
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

/* ============================================
   Responsive - Reflex
   ============================================ */

@media (max-width: 1024px) {
    .hero-content {
        display: block;
    }

    .hero-image {
        height: 300px;
        margin-top: 40px;
    }
}

