/* ============================================== */
/* INFLUZIA - "OUR METHOD" PAGE SPECIFIC STYLES   */
/* ============================================== */

/* --- CSS-ONLY SMOOTH ANIMATIONS --- */
@keyframes smoothFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-element {
    opacity: 0; 
    animation: smoothFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* --- 1. METHOD HERO SECTION --- */
.method-hero {
    padding: 120px 0 100px 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left; 
}

.method-hero .massive-headline {
    font-size: clamp(3rem, 7vw, 6.5rem); 
    text-align: left; 
    margin-bottom: 24px;
    color: #0a0a0a;
}

.method-hero-desc {
    font-size: 1.25rem;
    color: #666666;
    max-width: 700px;
    line-height: 1.6;
}

.highlight-pill {
    display: inline-block; 
    background-color: #111111; 
    color: #ffffff; 
    padding: 0 40px; 
    border-radius: 200px; 
    font-weight: 800; 
    line-height: 1.1; 
    margin-top: 10px;
}

/* --- 2. METHOD TIMELINE SECTION --- */
.method-timeline-section {
    padding: 140px 0 160px 0;
    background-color: #ffffff;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual Step Grid */
.method-step {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    align-items: flex-start;
}

/* Remove border from the last step */
.method-step:last-child {
    border-bottom: none;
}

/* Massive Editorial Step Numbers */
.step-number {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 2px #e5e3dc;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.4s ease;
}

/* Hover Effect: Number fills with solid purple */
.method-step:hover .step-number {
    color: #8B5CF6;
    -webkit-text-stroke: 2px #8B5CF6;
}

/* Step Text Content */
.step-content {
    padding-top: 10px;
}

.step-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0a0a0a;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.2;
}

.step-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #666666;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 900px) {
    .method-step {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 0;
    }
    
    .step-number {
        font-size: 4rem;
        color: #8B5CF6; /* Make it solid purple on mobile since hover isn't reliable */
        -webkit-text-stroke: 0;
        margin-bottom: 10px;
    }
}