
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(13, 27, 62, 0.85) 0%, rgba(27, 38, 79, 0.75) 50%, rgba(65, 88, 208, 0.65) 100%);
    z-index: -1;
    width: 100%;
    height: 100%;
}

.hero-overlay,
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    padding: 3rem 0;
    z-index: 10;
}

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

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
}

/* Block 2 */
.ai-showcase-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    overflow: hidden;
}

.showcase-content {
    padding-right: 30px;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.showcase-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b8c5d6;
    margin-bottom: 2.5rem;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #0a0a0a;
    font-size: 1.2rem;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: white;
}

.feature-text p {
    font-size: 0.9rem;
    color: #8a9ba8;
    margin: 0;
}

.showcase-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.showcase-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
}

.data-point {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00d4ff;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

.data-point-1 {
    top: 20%;
    right: 20%;
}

.data-point-2 {
    bottom: 30%;
    left: 15%;
}

.data-point-3 {
    top: 50%;
    right: 10%;
}

.data-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 0.2rem;
}

.data-label {
    display: block;
    font-size: 0.8rem;
    color: #b8c5d6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (max-width: 991.98px) {
    .ai-showcase-section {
        padding: 60px 0;
    }
    
    .showcase-content {
        padding-right: 0;
        text-align: center;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .feature-item {
        text-align: left;
    }
    
    .data-point-1 {
        top: 10%;
        right: 10%;
    }
    
    .data-point-2 {
        bottom: 20%;
        left: 10%;
    }
    
    .data-point-3 {
        top: 40%;
        right: 5%;
    }
}

@media (max-width: 575.98px) {
    .showcase-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .data-point {
        padding: 0.5rem 0.7rem;
    }
    
    .data-value {
        font-size: 1rem;
    }
    
    .data-label {
        font-size: 0.7rem;
    }
}

/* Block 3 */
.quantum-lab-section {
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2d1b69 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .quantum-lab-section::before {
            content: '';
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(100,200,255,0.3)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,100,200,0.2)"/><circle cx="30" cy="80" r="1" fill="rgba(200,255,100,0.3)"/></svg>') repeat;
            background-size: 200px 200px;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.5;
            animation: quantumFloat 20s linear infinite;
        }

        @keyframes quantumFloat {
            0% { transform: translateY(0px) translateX(0px); }
            50% { transform: translateY(-20px) translateX(10px); }
            100% { transform: translateY(0px) translateX(0px); }
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .header-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(100, 200, 255, 0.1);
            border: 1px solid rgba(100, 200, 255, 0.3);
            border-radius: 50px;
            padding: 12px 24px;
            margin-bottom: 24px;
            color: #64c8ff;
            font-weight: 500;
            backdrop-filter: blur(10px);
        }

        .header-badge i {
            margin-right: 8px;
            font-size: 18px;
        }

        .section-title {
            color: #ffffff;
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 24px;
            text-shadow: 0 0 30px rgba(100, 200, 255, 0.3);
        }

        .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .lab-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .lab-experiment {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            padding: 40px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(100, 200, 255, 0.2);
            transition: all 0.4s ease;
        }

        .lab-experiment:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(100, 200, 255, 0.2);
            border-color: rgba(100, 200, 255, 0.4);
        }

        .lab-experiment:nth-child(2) {
            grid-template-columns: 1fr 1fr;
        }

        .lab-experiment:nth-child(2) .experiment-visual {
            order: 2;
        }

        .lab-experiment:nth-child(2) .experiment-details {
            order: 1;
        }

        .experiment-visual {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
        }

        .experiment-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 16px;
            transition: transform 0.4s ease;
        }

        .lab-experiment:hover .experiment-image {
            transform: scale(1.05);
        }

        .quantum-overlay {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .qubit-indicator {
            background: rgba(0, 0, 0, 0.7);
            border-radius: 12px;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #64c8ff;
            font-size: 14px;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .qubit-circle {
            width: 12px;
            height: 12px;
            background: #64c8ff;
            border-radius: 50%;
            animation: quantumPulse 2s infinite;
        }

        @keyframes quantumPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.2); }
        }

        .coherence-meter {
            background: rgba(0, 0, 0, 0.7);
            border-radius: 12px;
            padding: 12px 16px;
            color: #ffffff;
            font-size: 12px;
            backdrop-filter: blur(10px);
        }

        .coherence-bar {
            width: 80px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            margin-bottom: 8px;
            overflow: hidden;
        }

        .coherence-fill {
            height: 100%;
            width: 87%;
            background: linear-gradient(90deg, #64c8ff, #ff64c8);
            border-radius: 2px;
            animation: coherenceFlow 3s ease-in-out infinite;
        }

        @keyframes coherenceFlow {
            0%, 100% { width: 87%; }
            50% { width: 92%; }
        }

        .temperature-gauge {
            background: rgba(0, 0, 0, 0.7);
            border-radius: 12px;
            padding: 12px 16px;
            color: #64c8ff;
            font-size: 14px;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .fidelity-display {
            background: rgba(0, 0, 0, 0.7);
            border-radius: 12px;
            padding: 12px 16px;
            color: #c8ff64;
            font-size: 12px;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .experiment-details h3 {
            color: #ffffff;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .experiment-details p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 32px;
        }

        .progress-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background: rgba(100, 200, 255, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(100, 200, 255, 0.2);
        }

        .stat-number {
            display: block;
            color: #64c8ff;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .quantum-metrics {
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .metric-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            border: 1px solid rgba(100, 200, 255, 0.15);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .metric-card:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-4px);
            border-color: rgba(100, 200, 255, 0.3);
        }

        .metric-icon {
            width: 60px;
            height: 60px;
            background: rgba(100, 200, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .metric-icon i {
            font-size: 24px;
            color: #64c8ff;
        }

        .metric-content h4 {
            color: #ffffff;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .metric-value {
            color: #64c8ff;
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .metric-trend {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .metric-trend.positive {
            color: #c8ff64;
        }

        .metric-trend.neutral {
            color: rgba(255, 255, 255, 0.6);
        }

        .lab-footer {
            position: relative;
            z-index: 2;
        }

        .partnership-logos {
            text-align: center;
            padding: 40px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .partnership-text {
            display: block;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .logo-strip {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .partner-logo {
            height: 32px;
            opacity: 0.6;
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }

        .partner-logo:hover {
            opacity: 1;
            filter: brightness(0) invert(1) sepia(1) hue-rotate(180deg);
        }

        @media (max-width: 992px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .lab-experiment {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .lab-experiment:nth-child(2) .experiment-visual {
                order: 1;
            }
            
            .lab-experiment:nth-child(2) .experiment-details {
                order: 2;
            }
            
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .quantum-lab-section {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .metrics-grid {
                grid-template-columns: 1fr;
            }
            
            .progress-stats {
                grid-template-columns: 1fr;
            }
            
            .logo-strip {
                gap: 24px;
            }
        }

/* Block 4 */
.premium-order-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0c29 0%, #24243e 50%, #302b63 100%);
    position: relative;
    overflow: hidden;
}

.premium-order-section::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -50px); }
}

.order-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.order-visual {
    position: relative;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.order-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.order-visual:hover .order-image {
    transform: scale(1.05);
}

.visual-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #2c1810;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.tech-highlights {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
}

.highlight-item {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    flex: 1;
    text-align: center;
    justify-content: center;
}

.highlight-icon {
    color: #00d4ff;
    font-size: 16px;
}

.order-content {
    padding: 60px 50px;
}

.header-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.order-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.2;
}

.order-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.program-features {
    margin-bottom: 35px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.5;
}

.feature-check {
    color: #28a745;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-info {
    background: linear-gradient(135deg, #f8f9ff, #e3e9ff);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 35px;
    border: 2px solid #e1e7ff;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 10px;
}

.price-old {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
}

.price-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.form-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.order-input {
    width: 100%;
    padding: 16px 45px 16px 16px;
    border: 2px solid #e1e7ff;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafbff;
}

.order-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    outline: none;
    background: white;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    margin-top: 12px;
}

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

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

.btn-glow {
    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-glow {
    left: 100%;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

.trust-item i {
    color: #28a745;
    font-size: 16px;
}

@media (max-width: 991px) {
    .order-content {
        padding: 40px 30px;
    }
    
    .order-title {
        font-size: 2rem;
    }
    
    .tech-highlights {
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .premium-order-section {
        padding: 60px 0;
    }
    
    .price-container {
        flex-direction: column;
        gap: 5px;
    }
    
    .price-current {
        font-size: 2rem;
    }
}
