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

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(13, 110, 253, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

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

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
    color: white;
    text-decoration: none;
}

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

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

/* Block 2 */
.ai-revolution-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b69 100%);
            color: white;
            overflow: hidden;
            position: relative;
        }
        
        .ai-revolution-section::before {
            content: '';
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="80" r="1" fill="rgba(255,255,255,0.12)"/></svg>');
            opacity: 0.3;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            z-index: 1;
        }
        
        .ai-revolution-section .container {
            position: relative;
            z-index: 2;
        }
        
        .section-badge {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(90deg, #ff6b6b, #ffd93d);
            color: #1a1a3e;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        
        .section-title {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff, #a8edea, #fed6e3);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-description {
            font-size: 1.2rem;
            line-height: 1.7;
            color: #b8c6db;
            margin-bottom: 40px;
            max-width: 520px;
        }
        
        .features-grid {
            margin-bottom: 40px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .feature-icon i {
            font-size: 20px;
            color: white;
        }
        
        .feature-content h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: white;
        }
        
        .feature-content p {
            font-size: 0.95rem;
            color: #b8c6db;
            margin: 0;
            line-height: 1.5;
        }
        
        .cta-button-primary {
            display: inline-flex;
            align-items: center;
            padding: 16px 32px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .cta-button-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
            color: white;
        }
        
        .image-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .main-image {
            width: 100%;
            max-width: 500px;
            border-radius: 24px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }
        
        .main-image:hover {
            transform: scale(1.02);
        }
        
        .floating-stats {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-left: -60px;
            margin-top: 40px;
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.95);
            padding: 20px;
            border-radius: 16px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            min-width: 120px;
        }
        
        .stat-card:hover {
            transform: translateX(10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .stat-number {
            display: block;
            font-size: 1.8rem;
            font-weight: 800;
            color: #1a1a3e;
            line-height: 1;
        }
        
        .stat-label {
            display: block;
            font-size: 0.85rem;
            color: #666;
            font-weight: 600;
            margin-top: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        @media (max-width: 991px) {
            .ai-revolution-section {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .floating-stats {
                flex-direction: row;
                justify-content: center;
                margin-left: 0;
                margin-top: 30px;
                flex-wrap: wrap;
            }
            
            .image-container {
                margin-top: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .ai-revolution-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-description {
                font-size: 1.1rem;
            }
            
            .features-grid {
                margin-bottom: 30px;
            }
            
            .feature-item {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .floating-stats {
                gap: 15px;
            }
            
            .stat-card {
                padding: 15px;
                min-width: 100px;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
        }

/* Block 3 */
.quantum-computing-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 50%, #2d1b69 100%);
    color: white;
    overflow: hidden;
    min-height: 100vh;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.innovation-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff 0%, #5a67d8 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

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

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

.quantum-visual-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.quantum-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.quantum-visual-wrapper:hover .quantum-main-image {
    transform: scale(1.05);
}

.quantum-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    border-radius: 50%;
    animation: quantumFloat 4s ease-in-out infinite;
    box-shadow: 0 0 20px #00d4ff;
}

.particle-1 { top: 20%; left: 15%; animation-delay: 0s; }
.particle-2 { top: 40%; right: 20%; animation-delay: 1s; }
.particle-3 { bottom: 30%; left: 25%; animation-delay: 2s; }
.particle-4 { top: 60%; left: 70%; animation-delay: 1.5s; }
.particle-5 { bottom: 15%; right: 15%; animation-delay: 3s; }

@keyframes quantumFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

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

.quantum-metric {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 120px;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 5px;
}

.metric-unit {
    font-size: 0.9rem;
    color: #b8c5d1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantum-capabilities {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.capability-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s ease;
}

.capability-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.15);
}

.capability-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.capability-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00d4ff 0%, #5a67d8 100%);
    padding: 8px;
}

.capability-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.capability-description {
    color: #b8c5d1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.capability-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.stat-item {
    font-size: 0.9rem;
    color: #00d4ff;
    font-weight: 600;
}

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

.quantum-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff 0%, #5a67d8 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.quantum-cta-button:hover {
    background: linear-gradient(135deg, #0099cc 0%, #4c51bf 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
    color: white;
}

.quantum-partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

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

.partner-logos {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

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

.partner-logo:hover {
    opacity: 1;
}

@media (max-width: 1200px) {
    .quantum-title {
        font-size: 3rem;
    }
    
    .quantum-computing-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .quantum-title {
        font-size: 2.2rem;
    }
    
    .quantum-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .quantum-stats-overlay {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        gap: 10px;
    }
    
    .quantum-metric {
        min-width: 100px;
        padding: 12px 15px;
    }
    
    .metric-value {
        font-size: 1.4rem;
    }
    
    .capability-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .capability-stats {
        justify-content: center;
    }
    
    .partner-logos {
        gap: 20px;
    }
    
    .partner-logo {
        height: 28px;
    }
}

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

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.form-content {
    padding-right: 40px;
}

.form-badge {
    display: inline-block;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    filter: hue-rotate(220deg) saturate(1.5);
}

.benefit-text {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.trust-indicators {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-badge {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

.order-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8ecef;
}

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

.form-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.form-card-subtitle {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.input-group-wrapper {
    margin-bottom: 30px;
}

.input-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.input-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    font-size: 1rem;
    background: #fafbfc;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0.6;
    margin-top: 14px;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.button-arrow {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.privacy-notice {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

.privacy-notice a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

.success-indicators {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e8ecef;
}

.indicator-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.indicator-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    opacity: 0.7;
}

.indicator-text {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 991px) {
    .form-wrapper {
        padding: 40px 30px;
    }
    
    .form-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .trust-indicators {
        justify-content: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .order-form-container {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .trust-indicators {
        gap: 20px;
    }
}
