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

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

    .hero-bg-image {
        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(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        color: white;
        padding: 40px 0;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
        background: linear-gradient(135deg, #ffffff 0%, #e0e6ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

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

    .hero-cta-button {
        display: inline-flex;
        align-items: center;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 18px 36px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
        border: 2px solid transparent;
    }

    .hero-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6);
        color: white;
        background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    }

    .hero-cta-button:active {
        transform: translateY(-1px);
    }

    @media (max-width: 768px) {
        .hero-banner {
            min-height: 80vh;
        }
        
        .hero-content {
            padding: 20px 0;
        }
        
        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }
        
        .hero-cta-button {
            padding: 16px 28px;
            font-size: 1rem;
        }
    }

    @media (max-width: 576px) {
        .hero-banner {
            min-height: 70vh;
        }
        
        .hero-cta-button {
            padding: 14px 24px;
            font-size: 0.95rem;
        }
    }

/* Block 2 */
.quantum-cleaning-tech {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.quantum-cleaning-tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(0, 255, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.tech-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #0f0f23;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
    100% { box-shadow: 0 0 30px rgba(255, 0, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.3); }
}

.tech-title {
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #ffffff, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-description {
    color: #b8b8d1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(255, 0, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.feature-item i {
    font-size: 2rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.feature-text h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-text p {
    color: #b8b8d1;
    margin: 0;
    font-size: 0.95rem;
}

.tech-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.tech-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: brightness(1.1) contrast(1.2);
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}

.hologram-effect {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 25px;
    border-radius: 50px;
    border: 2px solid #00ffff;
    animation: hologram 3s infinite;
}

@keyframes hologram {
    0%, 100% { 
        border-color: #00ffff;
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    }
    50% { 
        border-color: #ff00ff;
        box-shadow: 0 0 25px rgba(255, 0, 255, 0.7);
    }
}

.hologram-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.stat-card {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.stat-icon {
    margin-bottom: 20px;
}

.stat-icon i {
    font-size: 3rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #b8b8d1;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .quantum-cleaning-tech {
        padding: 80px 0;
    }
    
    .tech-title {
        font-size: 2.2rem;
    }
    
    .tech-features {
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-item:hover {
        transform: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 60px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Block 3 */
.bio-adaptive-surfaces {
            padding: 120px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }

        .innovation-badge {
            display: inline-block;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }

        .innovation-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 3s infinite;
        }

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

        .section-title {
            font-size: 3.2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: #7f8c8d;
            line-height: 1.6;
        }

        .adaptive-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 100px;
            align-items: start;
        }

        .primary-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            transform: translateY(0);
            transition: all 0.4s ease;
        }

        .primary-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0,0,0,0.15);
        }

        .card-visual {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .surface-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .nano-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: radial-gradient(circle, #00d4ff, #0099cc);
            border-radius: 50%;
            opacity: 0.8;
            animation: float 4s infinite ease-in-out;
        }

        .particle-1 { top: 20%; left: 15%; animation-delay: 0s; }
        .particle-2 { top: 60%; left: 80%; animation-delay: 1s; }
        .particle-3 { top: 40%; left: 30%; animation-delay: 2s; }
        .particle-4 { top: 80%; left: 60%; animation-delay: 3s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-20px) scale(1.2); }
        }

        .card-content {
            padding: 40px;
        }

        .card-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .card-description {
            font-size: 1.1rem;
            color: #7f8c8d;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .tech-specs {
            display: flex;
            gap: 40px;
        }

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

        .spec-value {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: #667eea;
        }

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

        .adaptive-features {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .feature-row {
            display: flex;
            gap: 30px;
        }

        .feature-card {
            flex: 1;
            background: white;
            border-radius: 20px;
            padding: 35px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            border-color: #667eea;
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .icon-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .feature-desc {
            font-size: 1rem;
            color: #7f8c8d;
            line-height: 1.5;
        }

        .ecosystem-showcase {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .ecosystem-visual {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(0,0,0,0.15);
        }

        .ecosystem-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .ecosystem-layers {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .layer-indicator {
            position: absolute;
            background: rgba(102, 126, 234, 0.9);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            animation: pulse 2s infinite ease-in-out;
        }

        .layer-1 { top: 15%; right: 20%; animation-delay: 0s; }
        .layer-2 { top: 50%; left: 15%; animation-delay: 0.7s; }
        .layer-3 { bottom: 20%; right: 25%; animation-delay: 1.4s; }

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

        .ecosystem-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .ecosystem-description {
            font-size: 1.2rem;
            color: #7f8c8d;
            line-height: 1.7;
            margin-bottom: 40px;
        }

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

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #2c3e50;
        }

        .benefit-item i {
            color: #667eea;
            font-size: 1.3rem;
            width: 25px;
        }

        .bio-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .bio-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
            color: white;
        }

        .bio-cta-button i {
            transition: transform 0.3s ease;
        }

        .bio-cta-button:hover i {
            transform: translateX(5px);
        }

        @media (max-width: 1200px) {
            .adaptive-grid {
                gap: 40px;
            }
            
            .ecosystem-showcase {
                gap: 50px;
            }
        }

        @media (max-width: 992px) {
            .adaptive-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .ecosystem-showcase {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .ecosystem-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .bio-adaptive-surfaces {
                padding: 80px 0;
            }
            
            .feature-row {
                flex-direction: column;
                gap: 20px;
            }
            
            .tech-specs {
                justify-content: center;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .card-content {
                padding: 30px;
            }
        }

/* Block 4 */
.quantum-order-form {
padding: 100px 0;
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
position: relative;
overflow: hidden;
}

.quantum-order-form::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"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="20" r="0.5" fill="%2300ffff" opacity="0.3"/><circle cx="30" cy="80" r="1.5" fill="%23ff006e" opacity="0.2"/><circle cx="70" cy="60" r="0.8" fill="%23ffbe0b" opacity="0.25"/></svg>') repeat;
animation: starfield 20s linear infinite;
}

@keyframes starfield {
0% { transform: translateY(0); }
100% { transform: translateY(-100px); }
}

.form-wrapper {
position: relative;
z-index: 2;
}

.form-header {
text-align: center;
margin-bottom: 60px;
position: relative;
}

.neural-pattern {
position: relative;
width: 150px;
height: 80px;
margin: 0 auto 30px;
}

.neural-node {
width: 12px;
height: 12px;
border-radius: 50%;
position: absolute;
animation: nodePulse 2s ease-in-out infinite;
}

.node-1 {
background: #00ffff;
top: 10px;
left: 20px;
animation-delay: 0s;
}

.node-2 {
background: #ff006e;
top: 50px;
left: 70px;
animation-delay: 0.7s;
}

.node-3 {
background: #ffbe0b;
top: 20px;
right: 20px;
animation-delay: 1.4s;
}

.connection-line {
position: absolute;
height: 2px;
background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
animation: dataFlow 3s linear infinite;
}

.line-1 {
top: 35px;
left: 30px;
width: 50px;
transform: rotate(25deg);
}

.line-2 {
top: 45px;
right: 35px;
width: 40px;
transform: rotate(-35deg);
animation-delay: 1.5s;
}

@keyframes nodePulse {
0%, 100% { transform: scale(1); box-shadow: 0 0 10px currentColor; }
50% { transform: scale(1.3); box-shadow: 0 0 20px currentColor; }
}

@keyframes dataFlow {
0% { opacity: 0; transform: scaleX(0); }
50% { opacity: 1; transform: scaleX(1); }
100% { opacity: 0; transform: scaleX(0); }
}

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

.form-title {
font-size: 3.5rem;
font-weight: 800;
color: white;
margin-bottom: 20px;
background: linear-gradient(135deg, #00ffff 0%, #ff006e 50%, #ffbe0b 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.form-subtitle {
font-size: 1.2rem;
color: #b0b0b0;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}

.form-container {
display: grid;
grid-template-columns: 1fr 2fr 1fr;
gap: 50px;
align-items: start;
max-width: 1400px;
margin: 0 auto;
}

.ai-avatar {
position: relative;
text-align: center;
}

.ai-image {
width: 120px;
height: 120px;
border-radius: 50%;
border: 3px solid #00ffff;
filter: hue-rotate(180deg);
}

.pulse-ring {
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%);
width: 140px;
height: 140px;
border: 2px solid #00ffff;
border-radius: 50%;
animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
0% { transform: translateX(-50%) scale(1); opacity: 1; }
100% { transform: translateX(-50%) scale(1.3); opacity: 0; }
}

.ai-status {
margin-top: 15px;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
color: #00ffff;
font-size: 14px;
font-weight: 600;
}

.quantum-form {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 40px;
}

.input-matrix {
display: flex;
flex-direction: column;
gap: 25px;
margin-bottom: 30px;
}

.input-group {
display: flex;
align-items: center;
gap: 15px;
}

.input-wrapper {
flex: 1;
position: relative;
}

.quantum-input {
width: 100%;
padding: 15px 20px;
background: rgba(0, 255, 255, 0.1);
border: 2px solid transparent;
border-radius: 12px;
color: white;
font-size: 16px;
transition: all 0.3s ease;
}

.quantum-input:focus {
outline: none;
border-color: #00ffff;
background: rgba(0, 255, 255, 0.15);
}

.quantum-input:focus + .quantum-label,
.quantum-input:valid + .quantum-label {
transform: translateY(-35px) scale(0.9);
color: #00ffff;
}

.quantum-label {
position: absolute;
top: 15px;
left: 20px;
color: #888;
font-size: 16px;
pointer-events: none;
transition: all 0.3s ease;
}

.input-glow {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 12px;
background: linear-gradient(45deg, #00ffff, #ff006e);
opacity: 0;
transition: opacity 0.3s ease;
z-index: -1;
}

.quantum-input:focus ~ .input-glow {
opacity: 0.3;
}

.molecular-scanner {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
border-radius: 12px;
pointer-events: none;
}

.scanner-line {
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 255, 0.8) 50%, transparent 100%);
animation: scannerMove 3s ease-in-out infinite;
}

.quantum-input:focus ~ .molecular-scanner .scanner-line {
animation-duration: 1s;
}

@keyframes scannerMove {
0% { left: -100%; }
50% { left: 100%; }
100% { left: -100%; }
}

.validation-indicator {
width: 24px;
height: 24px;
color: #4ade80;
opacity: 0;
transform: scale(0);
transition: all 0.3s ease;
}

.quantum-input:valid ~ .validation-indicator {
opacity: 1;
transform: scale(1);
}

.form-features {
display: flex;
justify-content: space-between;
margin-bottom: 30px;
flex-wrap: wrap;
gap: 10px;
}

.feature-badge {
display: flex;
align-items: center;
gap: 8px;
background: rgba(255, 255, 255, 0.1);
padding: 8px 15px;
border-radius: 20px;
color: white;
font-size: 12px;
font-weight: 500;
}

.feature-badge i {
color: #00ffff;
}

.quantum-submit-btn {
width: 100%;
padding: 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border: none;
border-radius: 15px;
position: relative;
overflow: hidden;
cursor: pointer;
transition: transform 0.3s ease;
}

.quantum-submit-btn:hover {
transform: translateY(-2px);
}

.btn-content {
position: relative;
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
padding: 20px;
color: white;
font-size: 18px;
font-weight: 700;
}

.btn-icon {
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
}

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

.particle {
position: absolute;
width: 4px;
height: 4px;
background: white;
border-radius: 50%;
animation: particleFloat 3s ease-in-out infinite;
}

.p1 {
top: 20%;
left: 20%;
animation-delay: 0s;
}

.p2 {
top: 60%;
right: 25%;
animation-delay: 1s;
}

.p3 {
bottom: 30%;
left: 50%;
animation-delay: 2s;
}

@keyframes particleFloat {
0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
50% { transform: translate(10px, -15px) scale(1.2); opacity: 1; }
}

.energy-wave {
position: absolute;
bottom: 0;
left: -100%;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent 0%, #00ffff 50%, transparent 100%);
animation: energyFlow 2s ease-in-out infinite;
}

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

.ai-promise {
display: flex;
align-items: center;
gap: 20px;
margin-top: 25px;
padding: 20px;
background: rgba(0, 255, 255, 0.1);
border-radius: 12px;
border: 1px solid rgba(0, 255, 255, 0.3);
}

.seal-image {
width: 50px;
height: 50px;
filter: hue-rotate(180deg);
}

.promise-text h4 {
color: #00ffff;
font-size: 16px;
margin-bottom: 5px;
}

.promise-text p {
color: #b0b0b0;
font-size: 14px;
margin: 0;
}

.promise-text strong {
color: #ffbe0b;
}

.tech-visualization {
display: flex;
flex-direction: column;
gap: 30px;
}

.holographic-display {
position: relative;
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 20px;
border: 1px solid rgba(255, 255, 255, 0.1);
}

.simulation-image {
width: 100%;
border-radius: 10px;
filter: hue-rotate(200deg) brightness(1.2);
}

.data-streams {
margin-top: 20px;
display: flex;
flex-direction: column;
gap: 15px;
}

.stream {
display: flex;
align-items: center;
justify-content: space-between;
color: white;
font-size: 12px;
}

.data-label {
font-weight: 600;
}

.progress-line {
width: 60px;
height: 2px;
background: rgba(255, 255, 255, 0.3);
border-radius: 1px;
position: relative;
overflow: hidden;
}

.progress-line::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, #00ffff, #ff006e);
animation: progressMove 2s ease-in-out infinite;
}

.stream-2 .progress-line::before {
animation-delay: 0.5s;
}

.stream-3 .progress-line::before {
animation-delay: 1s;
}

@keyframes progressMove {
0% { left: -100%; }
50% { left: 0%; }
100% { left: 100%; }
}

.quantum-stats {
display: flex;
flex-direction: column;
gap: 20px;
}

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

.stat-display h4 {
color: #00ffff;
font-size: 14px;
margin-bottom: 10px;
}

.counter {
color: #ffbe0b;
font-size: 2rem;
font-weight: 800;
}

.pulse-dot {
width: 8px;
height: 8px;
background: #4ade80;
border-radius: 50%;
animation: pulse 1s ease-in-out infinite;
margin-right: 8px;
}

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

@media (max-width: 1200px) {
.form-container {
grid-template-columns: 1fr;
gap: 30px;
text-align: center;
}

.form-title {
font-size: 2.5rem;
}
}

@media (max-width: 768px) {
.quantum-order-form {
padding: 60px 0;
}

.form-title {
font-size: 2rem;
}

.form-subtitle {
font-size: 1rem;
}

.quantum-form {
padding: 25px;
}

.form-features {
justify-content: center;
}

.ai-promise {
flex-direction: column;
text-align: center;
gap: 15px;
}
}
