/* ==========================================================================
   Hero Section Component
   ========================================================================== */

.hero {
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 40px 0 50px;
    z-index: 1;
    background: var(--dark);
}

/* Hero Grid Layout - Side by Side */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.15) 0%, transparent 70%);
    animation: heroPulse 8s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.08) 0%, transparent 70%);
    animation: heroFloat 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroPulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

/* Hero Typography */
.hero h1 {
    background: linear-gradient(135deg, var(--white) 0%, var(--white) 85%, rgba(248, 248, 250, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--pink), transparent);
    opacity: 0;
    animation: heroLineExpand 1s ease-out 0.8s forwards;
}

@keyframes heroLineExpand {
    to { width: 160px; opacity: 0.6; }
}

.hero-subheadline {
    font-size: clamp(1rem, 1.7vw, 1.15rem);
    color: var(--gray-400);
    line-height: 1.65;
    max-width: 540px;
    margin: 0 0 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.25s forwards;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ==========================================================================
   Direct Response Marketing Typography - Per Brand Guidelines
   ========================================================================== */

/* Italic Emphasis - exclusivity/qualifier words */
.hero h1 em {
    font-style: italic;
    font-weight: 500;
}

/* Strong Emphasis - key benefits (White per brand guidelines) */
.hero h1 strong {
    font-weight: 700;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

/* Highlight - Pink for key differentiators (per brand guidelines) */
.hero h1 .highlight {
    color: var(--pink);
    font-weight: 600;
    -webkit-text-fill-color: var(--pink);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

/* Subheadline Strong - White for key points */
.hero-subheadline strong {
    font-weight: 600;
    color: var(--white);
}

/* Subheadline Highlight - Pink for product name/branded terms */
.hero-subheadline .highlight {
    color: var(--pink);
    font-weight: 600;
}

/* Underline Emphasis - for guarantees and strong claims */
.hero-subheadline .underline-emphasis {
    color: var(--pink);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--pink);
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1100px) {
    .hero-grid {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        padding: 0;
    }

    .hero h1::after {
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(90deg, transparent, var(--pink), transparent);
    }

    .hero-subheadline {
        font-size: 1.1rem;
        margin: 0 auto 28px;
        padding: 0 8px;
        max-width: 600px;
    }

    .hero-note {
        font-size: 0.85rem;
        padding: 0 8px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-grid {
        gap: 24px;
    }

    .hero-eyebrow {
        font-size: 0.75rem;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-cta {
        margin-bottom: 24px;
    }

    .hero-note {
        font-size: 0.8rem;
        margin-bottom: 0;
    }
}

@media (max-width: 400px) {
    .hero {
        padding: 70px 0 50px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   Hero Social Proof
   ========================================================================== */
.hero-social-proof {
    display: block;
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(233, 30, 140, 0.06);
    border: 1px solid rgba(233, 30, 140, 0.15);
    border-radius: 12px;
    text-align: center;
}

.hero-proof-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.hero-proof-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-300);
}

.hero-proof-badge svg {
    color: var(--pink);
}

.hero-proof-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-300);
}

.hero-proof-stars .stars {
    color: #FFD700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.hero-proof-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-400);
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-proof-urgency strong {
    color: var(--pink);
    font-weight: 600;
}

.urgency-pulse {
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(233, 30, 140, 0.4);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
        box-shadow: 0 0 10px 4px rgba(233, 30, 140, 0);
    }
}

/* Smaller screens - stack the badges */
@media (max-width: 400px) {
    .hero-proof-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-social-proof {
        padding: 14px 16px;
    }
    
    .hero-proof-badge,
    .hero-proof-stars {
        font-size: 0.8rem;
    }
    
    .hero-proof-urgency {
        font-size: 0.8rem;
    }
}

