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

        .hero-background {
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

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

        .hero-overlay {
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(13, 27, 42, 0.85) 0%, rgba(27, 38, 59, 0.75) 100%);
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            color: white;
            padding: 2rem 0;
            z-index: 1;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-description {
            font-size: 1.25rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-hero {
            display: inline-block;
            background: linear-gradient(135deg, #007bff 0%, #0056b3 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 4px 15px rgba(0, 123, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-hero:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
            color: white;
            background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
        }

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

        @media (max-width: 576px) {
            .hero-banner {
                min-height: 50vh;
            }
            
            .hero-title {
                margin-bottom: 1rem;
            }
            
            .hero-description {
                margin-bottom: 1.5rem;
            }
        }

/* Block 2 */
.quantum-cloud-services {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.quantum-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.quantum-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.quantum-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-item i {
    font-size: 24px;
    color: #ffd700;
    margin-top: 4px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.quantum-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-quantum-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-quantum-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    color: white;
}

.btn-quantum-secondary {
    background: transparent;
    color: white;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-quantum-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.quantum-visual {
    position: relative;
}

.quantum-dashboard {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dashboard-main {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.floating-metrics {
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.metric-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-card img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.metric-data {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.metric-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.metric-1 {
    margin-left: 20px;
}

.metric-2 {
    margin-left: 40px;
}

.metric-3 {
    margin-left: 10px;
}

.quantum-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 8px;
}

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

@media (max-width: 768px) {
    .quantum-cloud-services {
        padding: 80px 0;
    }
    
    .quantum-title {
        font-size: 2.5rem;
    }
    
    .quantum-cta {
        justify-content: center;
    }
    
    .floating-metrics {
        margin-top: -30px;
    }
    
    .metric-1, .metric-2, .metric-3 {
        margin-left: 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .quantum-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .quantum-stats {
        grid-template-columns: 1fr;
    }
}

/* Block 3 */
.neural-workflow-automation {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #e8f4fd 100%);
    position: relative;
    overflow: hidden;
}

.neural-workflow-automation::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.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.neural-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.neural-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.workflow-canvas {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.workflow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    padding: 30px 20px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    position: relative;
    min-width: 180px;
    transition: all 0.3s ease;
}

.workflow-node:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.workflow-node img {
    width: 48px;
    height: 48px;
}

.node-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    text-align: center;
}

.node-content p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
    text-align: center;
}

.node-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #667eea;
    border-radius: 16px;
    opacity: 0;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 0.3; }
    100% { transform: scale(1.1); opacity: 0; }
}

.workflow-connector {
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    flex: 1;
    margin: 0 20px;
    position: relative;
    overflow: hidden;
}

.workflow-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
    animation: flow 2s infinite linear;
}

@keyframes flow {
    0% { left: -100%; }
    100% { left: 100%; }
}

.workflow-data-stream {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    opacity: 0;
    animation: particle-flow 4s infinite linear;
}

.data-particle:nth-child(1) { animation-delay: 0s; top: 30%; }
.data-particle:nth-child(2) { animation-delay: 1.3s; top: 50%; }
.data-particle:nth-child(3) { animation-delay: 2.6s; top: 70%; }

@keyframes particle-flow {
    0% { left: 10%; opacity: 0; transform: scale(0); }
    10% { opacity: 1; transform: scale(1); }
    90% { opacity: 1; transform: scale(1); }
    100% { left: 90%; opacity: 0; transform: scale(0); }
}

.automation-features {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.auto-feature {
    text-align: center;
    padding: 20px;
}

.auto-feature img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.auto-feature h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.auto-feature p {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.5;
    margin: 0;
}

.neural-dashboard {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    height: fit-content;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.dashboard-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #48bb78;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #48bb78;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.metric-display {
    margin-bottom: 30px;
}

.live-metric {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f7fafc;
}

.live-metric:last-child {
    border-bottom: none;
}

.metric-icon img {
    width: 32px;
    height: 32px;
}

.metric-info {
    flex: 1;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.metric-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

.metric-unit {
    font-size: 0.85rem;
    color: #718096;
}

.metric-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.metric-change.positive {
    color: #48bb78;
    background: rgba(72, 187, 120, 0.1);
}

.neural-activity {
    margin-bottom: 30px;
}

.neural-activity h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.activity-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f7fafc;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-time {
    font-size: 0.8rem;
    color: #a0aec0;
    min-width: 40px;
}

.activity-desc {
    font-size: 0.9rem;
    color: #4a5568;
}

.neural-cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
}

.neural-cta-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.neural-cta-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-neural {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-neural:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: #667eea;
    text-decoration: none;
}

@media (max-width: 992px) {
    .neural-title {
        font-size: 2.5rem;
    }
    
    .workflow-canvas {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .workflow-connector {
        width: 3px;
        height: 40px;
        margin: 0;
        background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    }
    
    .workflow-connector::after {
        width: 100%;
        height: 100%;
        top: -100%;
        left: 0;
        background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
    }
    
    @keyframes flow {
        0% { top: -100%; }
        100% { top: 100%; }
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .neural-title {
        font-size: 2rem;
    }
    
    .neural-subtitle {
        font-size: 1.1rem;
    }
    
    .workflow-node {
        min-width: 140px;
        padding: 20px 15px;
    }
    
    .neural-workflow-automation {
        padding: 60px 0;
    }
}

/* Block 4 */
.contact-order-form {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.contact-order-form::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.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

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

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

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

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

.form-subtitle {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.consultation-form {
    max-width: 450px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    z-index: 2;
}

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

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

.form-input::placeholder {
    color: #a0aec0;
}

.form-benefits {
    margin: 40px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 16px;
    border-left: 4px solid #667eea;
}

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

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item img {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    filter: hue-rotate(120deg) brightness(1.2);
}

.benefit-item span {
    font-size: 1rem;
    color: #2d3748;
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    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;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

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

.btn-arrow {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.form-footer {
    margin-top: 40px;
    text-align: center;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.trust-indicators img {
    height: 32px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trust-indicators img:hover {
    opacity: 1;
}

.privacy-text {
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-order-form {
        padding: 60px 0;
    }
    
    .form-wrapper {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .trust-indicators {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .submit-btn {
        font-size: 1rem;
        padding: 18px;
    }
}
