/* ============================================
   METHODOLOGY SECTION - ULTRA BRUTALIST SELLING
   Maximum Impact, Zero Fluff, Pure Conversion
   ============================================ */

/* Methodology Section - The Selling Point */
.methodology-section {
    display: none;
}

.methodology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 170, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 170, 0.06) 0%, transparent 50%);
    z-index: 1;
}


.methodology-content {
    position: relative;
    z-index: 2;
}


/* Header - Ultra Impact */
.methodology-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
}

.methodology-section h2 {
    font-size: clamp(var(--text-4xl), 6vw, var(--text-5xl));
    font-weight: var(--font-black);
    line-height: 0.95;
    letter-spacing: var(--tracking-tight);
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    background: linear-gradient(
        180deg, 
        var(--white) 0%, 
        rgba(255, 255, 255, 0.85) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.methodology-section h2 .accent {
    background: linear-gradient(
        45deg, 
        var(--neon-green) 0%, 
        #00FFD4 50%,
        var(--neon-green) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 170, 0.3);
}

/* Process Steps - Raw Brutalist Layout */
.methodology-process {
    margin-bottom: var(--spacing-4xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    display: flex;
    gap: var(--spacing-2xl);
    align-items: flex-start;
    margin-bottom: var(--spacing-3xl);
    padding: var(--spacing-xl) 0;
    border-left: 3px solid rgba(0, 255, 170, 0.1);
    padding-left: var(--spacing-xl);
    position: relative;
    transition: all var(--transition-base);
}

.process-step::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    width: 3px;
    height: 0%;
    background: var(--neon-green);
    transition: height 0.6s ease;
}

.process-step:hover::before {
    height: 100%;
}

.process-step:hover {
    border-left-color: var(--neon-green);
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Step Numbers - Monospace Impact */
.step-number {
    font-family: var(--font-mono);
    font-size: var(--text-4xl);
    font-weight: var(--font-black);
    color: var(--neon-green);
    line-height: 1;
    min-width: 80px;
    text-align: right;
    position: relative;
}

.step-number::after {
    content: '/';
    position: absolute;
    right: -15px;
    color: rgba(0, 255, 170, 0.3);
    font-weight: normal;
}

/* Step Content - Direct Selling */
.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: var(--spacing-md);
    line-height: var(--leading-tight);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.step-content p {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--gray-light);
    margin: 0;
}

.step-content p strong {
    color: var(--neon-green);
    font-weight: var(--font-semibold);
    font-style: italic;
}

/* Results Section - Impact Grid */
.methodology-results {
    margin-bottom: var(--spacing-4xl);
    text-align: center;
}

.results-header {
    margin-bottom: var(--spacing-2xl);
}

.results-header h3 {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    margin: 0;
}

/* Results Grid - Brutal Metrics Display */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.result-item {
    text-align: center;
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 255, 170, 0.02);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.result-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 255, 170, 0.1) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
}

.result-item:hover::before {
    left: 100%;
}

.result-item:hover {
    border-color: rgba(0, 255, 170, 0.3);
    background: rgba(0, 255, 170, 0.05);
    transform: translateY(-5px);
}

/* Result Metrics - Monospace Power */
.result-metric {
    display: block;
    font-family: var(--font-mono);
    font-size: var(--text-4xl);
    font-weight: var(--font-black);
    color: var(--neon-green);
    line-height: 1;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

.result-item p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--gray-light);
    margin: 0;
    font-weight: var(--font-medium);
}

/* Final CTA - Mega Button */
.methodology-cta {
    text-align: center;
    padding: var(--spacing-3xl) 0;
    border-top: 2px solid rgba(0, 255, 170, 0.1);
    margin-top: var(--spacing-2xl);
}

.mega-cta-button {
    background: var(--neon-green);
    color: var(--bg-primary);
    border: none;
    padding: var(--spacing-xl) var(--spacing-3xl);
    font-weight: var(--font-black);
    font-size: var(--text-2xl);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 255, 170, 0.4),
        0 0 50px rgba(0, 255, 170, 0.2);
    margin-bottom: var(--spacing-lg);
}

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

.mega-cta-button:hover::before {
    left: 100%;
}

.mega-cta-button:hover {
    background: #00CC66;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(0, 255, 170, 0.35),
        0 0 40px rgba(0, 255, 170, 0.15);
}

.mega-cta-button:active {
    transform: translateY(-3px);
}

.cta-arrow {
    font-size: 1.5rem;
    transition: transform var(--transition-base);
}

.mega-cta-button:hover .cta-arrow {
    transform: translateX(8px);
}

.cta-subtitle {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-mono);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .methodology-section {
        padding: var(--spacing-xl) 0;
    }
    
    .methodology-section h2 {
        font-size: clamp(var(--text-4xl), 7vw, var(--text-5xl));
    }
    
    .process-step {
        gap: var(--spacing-xl);
        padding-left: var(--spacing-lg);
    }
    
    .step-number {
        font-size: var(--text-3xl);
        min-width: 60px;
    }
    
    .step-content h3 {
        font-size: var(--text-xl);
    }
    
    .step-content p {
        font-size: var(--text-base);
    }
    
    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: var(--spacing-lg);
    }
    
    .result-metric {
        font-size: var(--text-3xl);
    }
    
    .mega-cta-button {
        font-size: var(--text-xl);
        padding: var(--spacing-lg) var(--spacing-2xl);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .methodology-section {
        padding: var(--spacing-lg) 0;
    }
    
    .methodology-header {
        margin-bottom: var(--spacing-3xl);
    }
    
    .methodology-section h2 {
        font-size: clamp(var(--text-3xl), 8vw, var(--text-4xl));
        line-height: 1.1;
    }
    
    .methodology-process {
        margin-bottom: var(--spacing-3xl);
    }
    
    .process-step {
        flex-direction: column;
        text-align: left;
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-2xl);
        padding: var(--spacing-lg) 0;
        padding-left: var(--spacing-md);
    }
    
    .step-number {
        font-size: var(--text-2xl);
        min-width: auto;
        text-align: left;
    }
    
    .step-number::after {
        right: -10px;
    }
    
    .step-content h3 {
        font-size: var(--text-xl);
        margin-bottom: var(--spacing-sm);
        color: rgba(255, 255, 255, 0.95);
    }
    
    .step-content p {
        font-size: var(--text-base);
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        font-weight: var(--font-normal);
    }
    
    .results-header h3 {
        font-size: var(--text-2xl);
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        max-width: 400px;
        margin: 0 auto;
    }
    
    .result-item {
        padding: var(--spacing-xl) var(--spacing-lg);
        text-align: center;
        border: 2px solid rgba(0, 255, 170, 0.15);
        background: rgba(0, 255, 170, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .result-metric {
        font-size: var(--text-5xl) !important;
        margin-bottom: var(--spacing-lg);
        text-shadow: 0 0 20px rgba(0, 255, 170, 0.5);
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        font-family: var(--font-mono) !important;
        font-weight: var(--font-black) !important;
        color: var(--neon-green) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .result-item p {
        font-size: var(--text-base);
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
        font-weight: var(--font-medium);
    }
    
    .methodology-cta {
        padding: var(--spacing-2xl) var(--spacing-md);
    }
    
    .mega-cta-button {
        font-size: var(--text-lg);
        padding: var(--spacing-md) var(--spacing-xl);
        width: 100%;
        justify-content: center;
    }
    
    .cta-subtitle {
        font-size: var(--text-xs);
        padding: 0 var(--spacing-md);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .process-step {
        margin-bottom: var(--spacing-xl);
    }
    
    .step-number {
        font-size: var(--text-xl);
    }
    
    .step-content h3 {
        font-size: var(--text-lg);
        color: rgba(255, 255, 255, 0.95);
    }
    
    .step-content p {
        font-size: var(--text-sm);
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        font-weight: var(--font-normal);
    }
    
    .result-metric {
        font-size: var(--text-xl);
    }
    
    .mega-cta-button {
        font-size: var(--text-base);
        padding: var(--spacing-sm) var(--spacing-lg);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .process-step::before,
    .result-item::before,
    .mega-cta-button::before,
    .result-item,
    .mega-cta-button,
    .cta-arrow {
        transition: none;
        animation: none;
    }
    
    .mega-cta-button:hover,
    .result-item:hover {
        transform: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .methodology-section {
        border-top-width: 3px;
    }
    
    .process-step {
        border-left-width: 4px;
    }
    
    .result-item {
        border-width: 2px;
    }
    
    .methodology-cta {
        border-top-width: 3px;
    }
    
    .mega-cta-button {
        border: 3px solid var(--bg-primary);
    }
}

/* Focus states for accessibility */
.mega-cta-button:focus-visible {
    outline: 3px solid var(--neon-green);
    outline-offset: 3px;
}