/* Mobile-First Styles */

/* Illustration Styles */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-text {
    text-align: center;
}

.hero-illustration {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.hero-illustration img {
    width: 100%;
    height: auto;
    opacity: 0.95;
}

/* Section with Illustrations */
.section-with-illustration {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.section-with-illustration.reverse {
    flex-direction: column;
}

.illustration-left,
.illustration-right {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
}

.illustration-left img,
.illustration-right img {
    width: 100%;
    height: auto;
    opacity: 0.9;
}

.content-right,
.content-left {
    width: 100%;
}

/* Mobile optimizations for text */
.mobile-hide {
    display: none;
}

/* Shorter headlines for mobile */
.headline {
    font-size: 32px !important;
    line-height: 1.15 !important;
}

.sub-headline {
    font-size: 18px !important;
}

.support-text {
    font-size: 16px !important;
}

/* Smaller sections on mobile */
section {
    padding: 50px 0 !important;
}

.hero {
    padding: 70px 0 50px !important;
}

/* Compact benefits */
.benefit {
    padding: 15px !important;
    margin-bottom: 15px !important;
}

.benefit p {
    font-size: 15px !important;
}

/* Compact credentials */
.credential {
    padding: 15px !important;
    margin-bottom: 10px;
}

.credential p {
    font-size: 14px !important;
}

.about-content {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
}

/* Simplified pain points */
.pain-points {
    max-width: 100%;
}

.point {
    margin-bottom: 15px !important;
}

.point p {
    font-size: 15px !important;
}

/* Final CTA illustration */
.final-illustration {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 30px;
}

.final-illustration img {
    width: 100%;
    height: auto;
    opacity: 0.95;
}

/* Larger CTAs for mobile */
.cta-button {
    font-size: 18px !important;
    padding: 16px 30px !important;
    width: 100%;
    max-width: 280px;
}

.cta-button.large {
    font-size: 20px !important;
    padding: 18px 35px !important;
}

/* Better spacing for mobile */
h2 {
    font-size: 26px !important;
    margin-bottom: 25px !important;
}

.container {
    padding: 0 20px;
}

/* Desktop styles (min-width: 768px) */
@media (min-width: 768px) {
    .mobile-hide {
        display: block;
    }
    
    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 50px;
    }
    
    .hero-text {
        flex: 1;
        text-align: left;
    }
    
    .hero-illustration {
        flex: 0 0 45%;
        max-width: 400px;
    }
    
    .section-with-illustration {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }
    
    .section-with-illustration.reverse {
        flex-direction: row-reverse;
    }
    
    .illustration-left,
    .illustration-right {
        flex: 0 0 35%;
        max-width: 300px;
    }
    
    .content-right,
    .content-left {
        flex: 1;
    }
    
    .headline {
        font-size: clamp(36px, 5vw, 48px) !important;
    }
    
    .sub-headline {
        font-size: clamp(20px, 3vw, 24px) !important;
    }
    
    section {
        padding: 80px 0 !important;
    }
    
    .hero {
        padding: 100px 0 80px !important;
    }
    
    .benefit {
        padding: 20px !important;
    }
    
    .benefit p {
        font-size: 18px !important;
    }
    
    .credential {
        padding: 25px !important;
    }
    
    .credential p {
        font-size: 16px !important;
    }
    
    .about-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .point p {
        font-size: 18px !important;
    }
    
    h2 {
        font-size: clamp(28px, 4vw, 36px) !important;
    }
    
    .cta-button {
        width: auto;
    }
    
    .final-illustration {
        max-width: 250px;
    }
}

/* Trust text in hero */
.trust-text-hero {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 12px;
    font-style: italic;
}

/* Hook Section - NEW */
.hook-section {
    background: var(--bg-white);
    padding: 40px 0;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(124, 152, 133, 0.1) 0%, rgba(124, 152, 133, 0.05) 100%);
    border: 2px solid var(--bg-green);
    border-radius: 16px;
    padding: 30px 25px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(124, 152, 133, 0.15);
}

.hook-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.hook-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--bg-green);
    margin-bottom: 12px;
    font-style: italic;
}

.hook-content p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
}

/* Johanna Photo Styles */
.johanna-photo {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

.illustration-placeholder {
    /* Remove when photo is added */
    opacity: 0.9;
}

/* About section styles */
.about-bio {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.highlight {
    display: inline-block;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--bg-green);
    box-shadow: var(--shadow);
}

/* Simplified bullets */
.bullet {
    color: var(--bg-green);
    font-weight: bold;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

/* Large desktop */
@media (min-width: 768px) {
    .about-highlights {
        flex-direction: row;
        gap: 15px;
    }
    
    .about-bio {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
    
    .hero-illustration {
        max-width: 450px;
    }
    
    .illustration-left,
    .illustration-right {
        max-width: 350px;
    }
}