/* Revolutionary Technology Section Styles */

.tech-breakthrough-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, rgba(0, 255, 143, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.tech-breakthrough-section h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ff41;
    margin-bottom: 2rem;
    text-align: center;
}

/* Innovation Grid */
.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.innovation-card {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.innovation-card:hover {
    transform: translateY(-5px);
    border-color: #00ff41;
    box-shadow: 0 8px 24px rgba(0, 255, 65, 0.2);
}

.innovation-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.innovation-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ff41;
    margin-bottom: 1rem;
}

.innovation-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.innovation-formula {
    background: rgba(0, 255, 65, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid #00ff41;
}

.innovation-formula span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #00ff8f;
}

/* Mathematical Proof Section */
.math-proof-container {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 143, 0.2);
}

.math-proof-container h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff8f;
    margin-bottom: 2rem;
    text-align: center;
}

.proof-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.proof-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00ff41 0%, #00ff8f 100%);
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: rgba(10, 10, 15, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.step-content h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00ff41;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 0.95rem;
    color: #c0c0c0;
    margin-bottom: 1rem;
}

.formula-box {
    background: rgba(0, 255, 65, 0.05);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 65, 0.3);
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    margin-top: 0.5rem;
}

.formula-box span {
    display: block;
    font-size: 0.9rem;
    color: #00ff8f;
    line-height: 1.8;
}

/* Achievement Showcase */
.achievement-showcase {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 143, 0.1) 0%, rgba(0, 255, 65, 0.1) 100%);
    border-radius: 12px;
    border: 2px solid #00ff41;
}

.achievement-showcase h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff41;
    margin-bottom: 2rem;
    text-align: center;
}

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.achievement-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff41;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.achievement-note {
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 255, 65, 0.05);
    border-radius: 8px;
}

.achievement-note strong {
    color: #00ff41;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tech-breakthrough-section {
        padding: 1.5rem;
    }
    
    .tech-breakthrough-section h4 {
        font-size: 1.4rem;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .innovation-card {
        padding: 1.25rem;
    }
    
    .proof-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-number {
        min-width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .achievement-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .achievement-note {
        font-size: 0.9rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .tech-breakthrough-section h4 {
        font-size: 1.2rem;
    }
    
    .innovation-card h5 {
        font-size: 1.1rem;
    }
    
    .innovation-card p {
        font-size: 0.85rem;
    }
    
    .math-proof-container h5 {
        font-size: 1.2rem;
    }
    
    .step-content h6 {
        font-size: 1rem;
    }
    
    .achievement-showcase h5 {
        font-size: 1.2rem;
    }
}
