
/* Block 1 */
.hero-banner {
    position: relative;
    height: 75vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(108, 117, 125, 0.75) 50%, rgba(33, 37, 41, 0.85) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: #f8f9fa;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
    border: 2px solid transparent;
}

.hero-cta-button:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
    background: linear-gradient(135deg, #0b5ed7 0%, #5a0fc8 100%);
}

@media (max-width: 768px) {
    .hero-banner {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Block 2 */
.quantum-mesh-showcase {
            padding: 120px 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: #ffffff;
            overflow: hidden;
            position: relative;
        }
        
        .quantum-mesh-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                              radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .quantum-content {
            position: relative;
            z-index: 2;
        }
        
        .quantum-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(120, 119, 198, 0.2);
            border: 1px solid rgba(120, 119, 198, 0.4);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: #7877c6;
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
        }
        
        .quantum-title {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff 0%, #7877c6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .quantum-description {
            font-size: 1.2rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 32px;
        }
        
        .quantum-features {
            list-style: none;
            padding: 0;
            margin: 0 0 40px 0;
        }
        
        .quantum-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .quantum-features li i {
            color: #7877c6;
            font-size: 1.2rem;
            width: 20px;
        }
        
        .quantum-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .quantum-btn-primary,
        .quantum-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .quantum-btn-primary {
            background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
            color: #ffffff;
        }
        
        .quantum-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(120, 119, 198, 0.4);
            color: #ffffff;
        }
        
        .quantum-btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }
        
        .quantum-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            color: #ffffff;
        }
        
        .quantum-visual {
            position: relative;
            z-index: 2;
        }
        
        .quantum-main-image {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease;
        }
        
        .quantum-main-image:hover {
            transform: scale(1.02);
        }
        
        .quantum-stats-overlay {
            position: absolute;
            top: -20px;
            right: -20px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid rgba(120, 119, 198, 0.3);
        }
        
        .quantum-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 16px;
        }
        
        .quantum-stat:last-child {
            margin-bottom: 0;
        }
        
        .quantum-stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: #7877c6;
            line-height: 1;
        }
        
        .quantum-stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 4px;
        }
        
        .quantum-partners {
            margin-top: 80px;
            padding-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .quantum-partners-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
        }
        
        .quantum-partners-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .quantum-partner-logo {
            height: 60px;
            width: auto;
            opacity: 0.6;
            transition: all 0.3s ease;
            filter: brightness(0) invert(1);
        }
        
        .quantum-partner-logo:hover {
            opacity: 1;
            transform: scale(1.1);
        }
        
        @media (max-width: 768px) {
            .quantum-mesh-showcase {
                padding: 80px 0;
            }
            
            .quantum-title {
                font-size: 2.2rem;
            }
            
            .quantum-description {
                font-size: 1.1rem;
            }
            
            .quantum-actions {
                flex-direction: column;
            }
            
            .quantum-btn-primary,
            .quantum-btn-secondary {
                justify-content: center;
                width: 100%;
            }
            
            .quantum-stats-overlay {
                position: relative;
                top: 20px;
                right: 0;
                margin-top: 20px;
            }
            
            .quantum-partners-logos {
                gap: 24px;
            }
            
            .quantum-partner-logo {
                height: 45px;
            }
        }

/* Block 3 */
.neural-diagnostics-platform {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b69 100%);
    color: #ffffff;
    overflow: hidden;
}

.neural-category-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00d4ff, #7c3aed);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.neural-main-title {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.2;
}

.neural-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.neural-features-grid {
    margin-bottom: 80px;
}

.neural-feature-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(167,139,250,0.1) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.neural-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,212,255,0.5);
    box-shadow: 0 20px 40px rgba(0,212,255,0.2);
}

.neural-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #7c3aed, #00d4ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.neural-feature-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.neural-feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.neural-feature-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.neural-metrics {
    margin-top: 20px;
}

.neural-metric {
    display: inline-block;
    background: rgba(0,212,255,0.2);
    color: #00d4ff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.neural-dashboard-preview {
    margin-bottom: 80px;
}

.neural-dashboard-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.neural-dashboard-image {
    width: 100%;
    height: auto;
    display: block;
}

.neural-live-indicators {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(15,15,35,0.95);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.neural-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.neural-indicator-dot {
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.neural-indicator-text {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.9rem;
}

.neural-data-stream {
    margin-top: 15px;
}

.neural-stream-item {
    color: #cbd5e1;
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
}

.neural-cta-section {
    text-align: center;
}

.neural-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.neural-cta-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.neural-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.neural-btn-primary,
.neural-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.neural-btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #00d4ff 100%);
    color: #ffffff;
    border: none;
}

.neural-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(124,58,237,0.4);
    color: #ffffff;
}

.neural-btn-outline {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.neural-btn-outline:hover {
    background: #00d4ff;
    color: #0f0f23;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .neural-main-title {
        font-size: 2.5rem;
    }
    
    .neural-subtitle {
        font-size: 1.1rem;
    }
    
    .neural-cta-title {
        font-size: 2rem;
    }
    
    .neural-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .neural-btn-primary,
    .neural-btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .neural-live-indicators {
        position: static;
        margin-top: 20px;
    }
}

/* Block 4 */
.order-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    background: url('network-pattern-overlay.png') repeat;
    opacity: 0.1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.order-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.order-header {
    text-align: center;
    margin-bottom: 40px;
}

.order-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.order-icon-wrapper i {
    font-size: 32px;
    color: white;
}

.order-title {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
    line-height: 1.2;
}

.order-subtitle {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

.order-form {
    max-width: 100%;
}

.form-floating-group {
    margin-bottom: 32px;
}

.floating-input-wrapper {
    position: relative;
}

.floating-input {
    width: 100%;
    padding: 20px 16px 8px 50px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.floating-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.floating-input:focus ~ .input-focus-border {
    transform: scaleX(1);
}

.floating-input:focus ~ .floating-label,
.floating-input:valid ~ .floating-label {
    transform: translateY(-12px) scale(0.85);
    color: #667eea;
}

.floating-label {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #94a3b8;
    pointer-events: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-label i {
    position: absolute;
    left: -34px;
    font-size: 18px;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.floating-input:focus ~ .floating-label i {
    color: #667eea;
}

.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 0 0 12px 12px;
}

.order-benefits {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    padding: 24px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
}

.benefit-text {
    font-size: 14px;
    color: #4a5568;
    font-weight: 600;
}

.order-submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.order-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.order-submit-btn:active {
    transform: translateY(-1px);
}

.btn-shine {
    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.6s ease;
}

.order-submit-btn:hover .btn-shine {
    left: 100%;
}

.btn-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.order-submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

.order-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    text-align: center;
}

.guarantee-badge {
    width: 50px;
    height: 50px;
}

.guarantee-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .order-form-card {
        padding: 40px 24px;
        margin: 20px;
        border-radius: 20px;
    }
    
    .order-title {
        font-size: 28px;
    }
    
    .order-benefits {
        flex-direction: column;
        gap: 20px;
    }
    
    .benefit-item {
        flex-direction: row;
        text-align: left;
        gap: 12px;
    }
    
    .benefit-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0;
    }
    
    .floating-input {
        padding: 18px 16px 8px 45px;
    }
    
    .floating-label {
        left: 45px;
    }
    
    .floating-label i {
        left: -29px;
    }
}

@media (max-width: 480px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .order-form-card {
        margin: 15px;
        padding: 30px 20px;
    }
    
    .order-title {
        font-size: 24px;
    }
    
    .order-subtitle {
        font-size: 15px;
    }
}
