/* Hero Section - Conversion Optimized Layout */

/* 1. Hero Content Container */
.hero-content {
    flex: 1;  /* Take available space */
    max-width: 650px;  /* Slightly wider for full-width layout */
}

/* Hero Image/Mockup Side */
.hero-image {
    flex: 1;  /* Equal space with content */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 2. Sub-headline */
.hero-subheadline {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.price-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* 3. Benefit Bullets */
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;  /* Large gap before CTA */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.benefit-text strong {
    color: var(--primary-color);  /* Highlight key words */
}

/* 4. CTA Hint */
.cta-hint {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 1rem 0 2rem 0;
}

.cta-hint strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* 5. Trust Row */
.trust-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-variant);
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trust-icon {
    font-size: 1rem;
}

/* Mobile Responsive - Hero Optimizations */
@media (max-width: 768px) {
    /* Hero layout becomes single column */
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }
    
    .hero .container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1.5rem !important;  /* Wider on mobile */
    }
    
    .hero-content {
        max-width: 100% !important;  /* Full width on mobile */
        text-align: center;
        padding: 0 !important;  /* No extra padding */
    }
    
    .hero-image {
        order: -1;  /* Move mockup above content on mobile */
        max-width: 100%;
    }
    
    .hero-subheadline {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-benefits {
        gap: 0.875rem;
        margin-bottom: 2rem;
        text-align: left;  /* Bullets left-aligned even on mobile */
    }
    
    .benefit-icon {
        font-size: 1.2rem;
    }
    
    .benefit-text {
        font-size: 0.95rem;
    }
    
    .cta-hint {
        font-size: 0.9rem;
    }
    
    .trust-row {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        padding: 1.25rem 0;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
}
