/* ==========================================
   HERO SECTION - CLEAN VERSION
   ========================================== */

/* ==========================================
   DESKTOP STYLES (1401px+)
   ========================================== */

/* Hero Section */
.hero {
    padding: 150px 0 60px 0;
    background:
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%),
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    min-height: auto;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    width: 100%;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: gentleEntrance 1.5s ease-out 0.5s forwards;
    z-index: 10;
    position: relative;
    flex: 1.2;
}

.hero-visual {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex: 1;
}

/* Cinematic Sequence */
.cinematic-sequence {
    position: relative;
    width: 100%;
    min-height: 350px;
}

.sequence-step {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0s linear 1s;
    pointer-events: none;
}

.sequence-step.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0s linear 0s;
}

.sequence-step.fadeout {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Typography */
.hero-question {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    text-align: left;
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.hero-title-main {
    display: block;
    color: #1e293b;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, #4527A0, #00BFA5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.question-text {
    display: block;
    opacity: 0;
    transform: translateY(15px);
    animation: flowingText 1s ease-out 1.3s forwards;
}

.question-highlight {
    background: linear-gradient(135deg, #4527A0, #00BFA5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Question Options */
.question-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 100%;
    margin: 0;
    opacity: 1;
}

.option-btn {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 0;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.option-btn:hover {
    border-color: #4527A0;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(69, 39, 160, 0.2);
}

.option-btn:active {
    transform: translateY(0) scale(0.98);
}

.option-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.6s;
}

.option-btn:hover::before {
    left: 100%;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    position: relative;
    z-index: 2;
}

.option-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.option-btn:hover .option-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Specific button styling with consistent logo colors */
.option-yes:hover {
    border-color: #4527A0;
    box-shadow: 0 8px 30px rgba(69, 39, 160, 0.2);
}

.option-no:hover {
    border-color: #4527A0;
    box-shadow: 0 8px 30px rgba(69, 39, 160, 0.2);
}

.option-maybe:hover {
    border-color: #4527A0;
    box-shadow: 0 8px 30px rgba(69, 39, 160, 0.2);
}

/* Benefits */
.benefits-reveal {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: white;
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(181, 188, 208, 0.6);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: benefitReveal 0.6s ease forwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.benefit-desc {
    font-size: 0.9rem;
    color: #64748b;
}

/* Visual Container */
.visual-container {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: visible;
}

.main-lottie-animation {
    opacity: 1 !important;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    margin: auto;
    display: block !important;
    outline: none;
    border: none;
    position: relative;
}

/* Mobile Lottie (hidden on desktop) */
.mobile-lottie-container {
    display: none;
}

.mobile-lottie-animation {
    display: none;
}

/* CTA Buttons */
.simple-cta {
    margin-top: 30px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.simple-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #4527A0, #00BFA5);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(69, 39, 160, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.simple-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.simple-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(69, 39, 160, 0.4);
}

.simple-cta-btn:hover::before {
    left: 100%;
}

.cta-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mobile-cta-replacement {
    display: none;
}

.desktop-cta {
    margin-top: -20px;
}

/* ==========================================
   TABLET STYLES (769px - 1200px)
   ========================================== */

@media (min-width: 769px) and (max-width: 1200px) {
    .hero {
        margin-top: 0;
        padding: 120px 0 180px 0;
    }
    
    .hero-container {
        flex-direction: row;
        gap: 30px;
        text-align: left;
        padding: 0 30px;
    }
    
    .hero-question {
        font-size: 2.4rem !important;
        text-align: left !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        text-align: left !important;
    }
    
    .question-options {
        max-width: 100%;
        margin: 0;
    }
    
    .visual-container {
        height: clamp(300px, 40vw, 500px);
    }
    
    .main-lottie-animation {
        width: clamp(300px, 40vw, 500px) !important;
        height: clamp(300px, 40vw, 500px) !important;
    }
    
    .cinematic-sequence {
        min-height: 400px;
    }
    
    /* Hide mobile Lottie on tablet */
    .mobile-lottie-animation {
        display: none !important;
    }
    
    .mobile-lottie-container {
        display: none !important;
    }
    
    /* Responsive CTA Button */
    .simple-cta-btn {
        padding: clamp(10px, 1.5vw, 14px) clamp(18px, 3vw, 28px) !important;
        font-size: clamp(0.85rem, 1.2vw, 1rem) !important;
    }
    
    .cta-icon {
        width: clamp(16px, 2vw, 20px) !important;
        height: clamp(16px, 2vw, 20px) !important;
    }
}

/* ==========================================
   MOBILE STYLES (max-width: 768px)
   ========================================== */

@media (max-width: 768px) {
    .hero {
        padding: 10px 0 60px 0;
        margin-top: 10px;
        min-height: 80vh;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
            radial-gradient(circle at 40% 80%, rgba(236, 72, 153, 0.04) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }
    
    .hero-container {
        padding: 0 15px;
        gap: 0;
        flex-direction: column;
        max-width: 100%;
        position: relative;
        z-index: 1;
        min-height: calc(80vh - 80px);
        display: flex;
        justify-content: flex-start;
        padding-top: 10px;
        padding-bottom: 20px;
        width: 100%;
    }
    
    /* Hide desktop visual elements */
    .hero-container .hero-visual {
        display: none !important;
    }
    
    .visual-container {
        display: none !important;
    }
    
    .main-lottie-animation {
        display: none !important;
    }
    
    /* Show mobile Lottie */
    .mobile-lottie-container {
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
        width: 100%;
        height: 350px;
        position: relative;
        overflow: visible;
    }

    .mobile-lottie-animation {
        display: block !important;
        width: 350px !important;
        height: 350px !important;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
        margin: auto;
        outline: none;
        border: none;
        position: relative;
        background: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        animation: none !important;
    }
    
    /* Mobile Typography */
    .hero-question {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 2rem !important;
        margin-top: 1.5rem !important;
        padding: 0 10px !important;
        display: block !important;
        text-align: left !important;
    }
    
    .hero-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 2rem !important;
        padding: 0 10px !important;
        text-align: left;
    }
    
    .question-options {
        gap: 1rem !important;
        margin-bottom: 2rem !important;
        padding: 0 10px !important;
    }
    
    .option-btn {
        padding: 0.8rem 1rem !important;
        font-size: 0.9rem !important;
        min-height: 48px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .option-content {
        padding: 0.6rem 0.8rem !important;
        gap: 0.8rem !important;
        justify-content: flex-start !important;
        text-align: left !important;
    }
    
    .option-icon {
        width: 24px !important;
        height: 24px !important;
    }
    
         .hero-content {
         width: 100%;
         max-width: none;
         padding: 20px 0;
         margin: 0;
         order: 1;
     }
     
     .benefits-reveal {
         gap: 1rem !important;
         margin-top: 1.5rem !important;
         padding: 0 10px !important;
     }
     
     .benefit-item {
         padding: 1rem !important;
         gap: 0.8rem !important;
         min-height: auto !important;
         flex-direction: row;
         text-align: left;
     }
     
     .benefit-icon {
         width: 40px !important;
         height: 40px !important;
         flex-shrink: 0;
     }
     
     .benefit-title {
         font-size: 0.9rem !important;
         margin-bottom: 0.2rem !important;
     }
     
     .benefit-desc {
         font-size: 0.8rem !important;
         line-height: 1.4 !important;
     }
    
    .cinematic-sequence {
        min-height: auto;
        padding: 0;
        width: 100%;
        order: 2;
        position: relative;
        z-index: 2;
    }
    
    .sequence-step {
        padding: 15px 0;
        width: 100%;
        min-height: auto;
        position: relative;
        z-index: 2;
    }
    
    /* Mobile CTA */
    .mobile-cta-replacement {
        margin-top: 1rem;
        display: none;
        align-items: center;
        justify-content: center;
        height: auto;
        animation: fadeInScale 0.8s ease-out both;
        padding: 0;
    }
    
    .mobile-cta-replacement .simple-cta {
        background: white;
        border-radius: 24px;
        padding: 35px 25px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        border: 2px solid #e2e8f0;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
    }
    
    .mobile-cta-replacement .simple-cta h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 12px;
        background: linear-gradient(135deg, #4527A0, #00BFA5);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .mobile-cta-replacement .simple-cta p {
        font-size: 0.9rem;
        color: #64748b;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .mobile-cta-replacement .simple-cta-btn {
        padding: 18px 30px;
        font-size: 1.1rem;
        border-radius: 16px;
    }
    
    .desktop-cta {
        display: none;
    }
    
    .simple-cta {
        margin-top: 20px;
    }
    
    .simple-cta-btn {
        padding: 16px 24px;
        font-size: 1rem;
    }
}



/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes flowingText {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes benefitReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentleEntrance {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================
   HIDE DESKTOP ON LARGER TABLETS
   ========================================== */

@media (min-width: 769px) {
    .mobile-cta-replacement {
        display: none !important;
    }
} 