
/* Block 1 */
.hero-banner {
  position: relative;
  overflow: hidden;
  color: white;
}

.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(16, 20, 43, 0.85) 0%, rgba(30, 41, 82, 0.75) 100%);
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 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: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
  align-self: flex-start;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(79, 70, 229, 0.4);
  color: white;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #4ade80;
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.compatibility-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #1e293b;
  padding: 12px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: float 3s ease-in-out infinite;
}

.compatibility-card:nth-child(1) {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.compatibility-card:nth-child(2) {
  top: 50%;
  left: -15%;
  animation-delay: 1s;
}

.compatibility-card:nth-child(3) {
  bottom: 20%;
  right: -5%;
  animation-delay: 2s;
}

.compatibility-card i {
  color: #10b981;
  font-size: 1.1rem;
}

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

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .compatibility-card {
    position: relative;
    margin: 10px;
    animation: none;
  }
  
  .floating-cards {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .btn-hero-primary {
    align-self: center;
  }
}

/* Block 2 */
.neural-compatibility-engine {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }
        
        .neural-compatibility-engine::before {
            content: '';
            background: url('neural-pattern-bg.png') repeat;
            opacity: 0.05;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }
        
        .neural-compatibility-engine .container {
            position: relative;
            z-index: 2;
        }
        
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
        }
        
        .engine-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 24px;
            line-height: 1.1;
            background: linear-gradient(135deg, #1e293b 0%, #4a5568 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .engine-description {
            font-size: 18px;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 40px;
        }
        
        .compatibility-metrics {
            margin-bottom: 40px;
        }
        
        .metric-row {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 24px;
            background: white;
            border-radius: 16px;
            margin-bottom: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .metric-row:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
        }
        
        .metric-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .metric-details {
            flex: 1;
        }
        
        .metric-details h4 {
            font-size: 18px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 4px;
        }
        
        .metric-details p {
            color: #64748b;
            margin: 0;
            font-size: 14px;
        }
        
        .metric-score {
            text-align: right;
        }
        
        .score-value {
            display: block;
            font-size: 24px;
            font-weight: 800;
            color: #059669;
        }
        
        .score-label {
            display: block;
            font-size: 12px;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .engine-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .btn-engine-primary, .btn-engine-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn-engine-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 6px 30px rgba(102, 126, 234, 0.4);
        }
        
        .btn-engine-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(102, 126, 234, 0.5);
            color: white;
        }
        
        .btn-engine-secondary {
            background: white;
            color: #667eea;
            border: 2px solid #667eea;
        }
        
        .btn-engine-secondary:hover {
            background: #667eea;
            color: white;
            transform: translateY(-3px);
        }
        
        .engine-visualization {
            position: relative;
        }
        
        .neural-network-display {
            position: relative;
            background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }
        
        .network-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 16px;
            opacity: 0.3;
        }
        
        .processing-nodes {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .node-cluster {
            position: absolute;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .input-nodes {
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .processing-layer {
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
        
        .output-nodes {
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .processing-node {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
            animation: pulse 2s infinite;
        }
        
        .processing-node img {
            width: 30px;
            height: 30px;
            object-fit: contain;
        }
        
        .neural-hub {
            position: relative;
            width: 80px;
            height: 80px;
        }
        
        .hub-core {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            z-index: 3;
        }
        
        .processing-rings {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .ring {
            position: absolute;
            border: 2px solid #667eea;
            border-radius: 50%;
            animation: rotate 3s linear infinite;
        }
        
        .ring-1 {
            width: 60px;
            height: 60px;
            top: 10px;
            left: 10px;
            opacity: 0.8;
        }
        
        .ring-2 {
            width: 70px;
            height: 70px;
            top: 5px;
            left: 5px;
            opacity: 0.5;
            animation-delay: -1s;
        }
        
        .ring-3 {
            width: 80px;
            height: 80px;
            top: 0;
            left: 0;
            opacity: 0.3;
            animation-delay: -2s;
        }
        
        .compatibility-result {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.9);
            padding: 12px 16px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .compatibility-result.success {
            color: #059669;
        }
        
        .compatibility-result.warning {
            color: #d97706;
        }
        
        .compatibility-result.info {
            color: #0284c7;
        }
        
        .data-streams {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .stream {
            position: absolute;
            width: 2px;
            height: 40px;
            background: linear-gradient(to bottom, transparent, #667eea, transparent);
            animation: dataFlow 2s linear infinite;
        }
        
        .stream-1 {
            left: 35%;
            animation-delay: 0s;
        }
        
        .stream-2 {
            left: 45%;
            animation-delay: -0.5s;
        }
        
        .stream-3 {
            left: 55%;
            animation-delay: -1s;
        }
        
        .stream-4 {
            left: 65%;
            animation-delay: -1.5s;
        }
        
        .engine-stats-overlay {
            position: absolute;
            bottom: -30px;
            left: 20px;
            right: 20px;
            display: flex;
            gap: 16px;
            justify-content: center;
        }
        
        .stat-card {
            background: white;
            padding: 20px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            flex: 1;
        }
        
        .stat-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .stat-number {
            display: block;
            font-size: 20px;
            font-weight: 800;
            color: #1e293b;
        }
        
        .stat-label {
            display: block;
            font-size: 12px;
            color: #64748b;
        }
        
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.05);
            }
        }
        
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        @keyframes dataFlow {
            0% {
                top: -40px;
                opacity: 0;
            }
            20% {
                opacity: 1;
            }
            80% {
                opacity: 1;
            }
            100% {
                top: 100%;
                opacity: 0;
            }
        }
        
        @media (max-width: 768px) {
            .engine-title {
                font-size: 2.5rem;
            }
            
            .metric-row {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
            
            .metric-score {
                text-align: center;
            }
            
            .engine-actions {
                justify-content: center;
            }
            
            .engine-stats-overlay {
                flex-direction: column;
                position: static;
                margin-top: 30px;
            }
            
            .neural-network-display {
                padding: 20px;
            }
            
            .input-nodes, .output-nodes {
                display: none;
            }
        }

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

.quantum-ecosystem-platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(72, 202, 228, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ecosystem-header {
    margin-bottom: 60px;
}

.quantum-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.6), 0 0 80px rgba(118, 75, 162, 0.3); }
}

.ecosystem-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #48cae4 50%, #8a2be2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.ecosystem-grid {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    place-items: center;
}

.ecosystem-central-hub {
    position: relative;
    z-index: 10;
}

.quantum-core {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 20px;
    background: radial-gradient(circle, rgba(72, 202, 228, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
    border: 3px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: quantumRotate 20s linear infinite;
}

@keyframes quantumRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.core-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

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

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #48cae4, #8a2be2);
    border-radius: 50%;
    animation: particleOrbit 15s linear infinite;
}

.particle-1 { animation-delay: 0s; }
.particle-2 { animation-delay: -2.5s; }
.particle-3 { animation-delay: -5s; }
.particle-4 { animation-delay: -7.5s; }
.particle-5 { animation-delay: -10s; }
.particle-6 { animation-delay: -12.5s; }

@keyframes particleOrbit {
    0% { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

.core-status {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff88;
    animation: statusBlink 2s ease-in-out infinite;
}

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

.ecosystem-devices {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    pointer-events: none;
}

.device-cluster {
    position: absolute;
}

.cluster-mobile {
    top: 20px;
    right: 20px;
}

.cluster-computing {
    bottom: 20px;
    right: 20px;
}

.cluster-iot {
    bottom: 20px;
    left: 20px;
}

.device-node {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
    transition: all 0.3s ease;
    position: relative;
}

.device-node:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.device-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 12px;
}

.device-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.device-name {
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.device-count {
    color: #48cae4;
    font-size: 14px;
    font-weight: 600;
}

.sync-indicator {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ff88;
    animation: syncPulse 1.5s ease-in-out infinite;
}

@keyframes syncPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

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

.connection-beam {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, #48cae4 50%, transparent 100%);
    height: 2px;
    animation: beamFlow 4s linear infinite;
}

.beam-1 {
    top: 25%;
    left: 40%;
    right: 20%;
    animation-delay: 0s;
}

.beam-2 {
    top: 35%;
    left: 20%;
    right: 40%;
    animation-delay: -0.5s;
}

.beam-3 {
    top: 45%;
    left: 30%;
    right: 30%;
    animation-delay: -1s;
}

.beam-4 {
    top: 55%;
    left: 35%;
    right: 25%;
    animation-delay: -1.5s;
}

.beam-5 {
    top: 65%;
    left: 25%;
    right: 35%;
    animation-delay: -2s;
}

.beam-6 {
    top: 75%;
    left: 40%;
    right: 20%;
    animation-delay: -2.5s;
}

@keyframes beamFlow {
    0% { opacity: 0; transform: translateX(-100px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(100px); }
}

.quantum-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    height: 100%;
}

.quantum-feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    color: white;
}

.feature-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-description {
    color: #b8c5d6;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

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

.metric-value {
    display: block;
    color: #48cae4;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.metric-label {
    color: #888;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.ecosystem-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.btn-quantum-primary,
.btn-quantum-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.btn-quantum-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-quantum-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-quantum-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.platform-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    color: #48cae4;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
}

.stat-description {
    color: #b8c5d6;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .ecosystem-devices {
        width: 600px;
        height: 600px;
    }
    
    .ecosystem-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .ecosystem-devices {
        width: 400px;
        height: 400px;
    }
    
    .ecosystem-title {
        font-size: 2.2rem;
    }
    
    .quantum-core {
        width: 150px;
        height: 150px;
    }
    
    .core-image {
        width: 90px;
        height: 90px;
    }
    
    .device-node {
        min-width: 160px;
        padding: 16px;
    }
    
    .platform-stats {
        gap: 30px;
    }
    
    .btn-quantum-primary,
    .btn-quantum-secondary {
        padding: 14px 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .platform-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .ecosystem-actions > div {
        flex-direction: column;
    }
}

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

.holographic-order-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    animation: backgroundShift 8s ease-in-out infinite alternate;
}

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

.form-container {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 60px;
    position: relative;
    z-index: 2;
}

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

.hologram-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: holoGlow 2s ease-in-out infinite alternate;
}

@keyframes holoGlow {
    0% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
    100% { box-shadow: 0 0 30px rgba(255, 0, 255, 0.7); }
}

.form-title {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 50%, #ffff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: titleShimmer 3s ease-in-out infinite;
}

@keyframes titleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.holographic-form-wrapper {
    position: relative;
    margin-bottom: 50px;
}

.hologram-projection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
}

.hologram-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.quantum-field-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
                               rgba(0, 255, 255, 0.05) 0%, 
                               rgba(255, 0, 255, 0.05) 50%, 
                               rgba(255, 255, 0, 0.05) 100%);
    animation: quantumField 4s ease-in-out infinite;
}

@keyframes quantumField {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.compatibility-form {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.form-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 50px;
}

.input-group-holo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.input-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
    animation: iconPulse 2s ease-in-out infinite alternate;
}

@keyframes iconPulse {
    0% { transform: scale(1); box-shadow: 0 0 15px rgba(0, 255, 255, 0.3); }
    100% { transform: scale(1.1); box-shadow: 0 0 25px rgba(255, 0, 255, 0.5); }
}

.floating-label-container {
    flex: 1;
    position: relative;
}

.holo-input {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.holo-input:focus {
    border-bottom-color: #00ffff;
}

.floating-label {
    position: absolute;
    left: 0;
    top: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.holo-input:focus + .floating-label,
.holo-input:valid + .floating-label {
    top: -10px;
    font-size: 12px;
    color: #00ffff;
    transform: translateY(-5px);
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.holo-input:focus ~ .input-underline {
    transform: scaleX(1);
}

.field-particles {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

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

.particle.p1 {
    top: -10px;
    animation-delay: 0s;
}

.particle.p2 {
    top: 0px;
    animation-delay: 1s;
    background: #ff00ff;
}

.particle.p3 {
    top: 10px;
    animation-delay: 2s;
    background: #ffff00;
}

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

.form-submit-section {
    text-align: center;
    position: relative;
}

.holo-submit-btn {
    position: relative;
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.holo-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-hologram {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    animation: btnHoloSpin 2s linear infinite;
}

@keyframes btnHoloSpin {
    from { transform: translateY(-50%) rotateY(0deg); }
    to { transform: translateY(-50%) rotateY(360deg); }
}

.btn-energy-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.holo-submit-btn:hover .btn-energy-field {
    transform: translateX(100%);
}

.processing-indicator {
    margin-top: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.quantum-spinner {
    position: relative;
    width: 40px;
    height: 40px;
}

.spinner-ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.ring-1 {
    width: 40px;
    height: 40px;
    border-top-color: #00ffff;
    animation-duration: 1s;
}

.ring-2 {
    width: 30px;
    height: 30px;
    top: 5px;
    left: 5px;
    border-right-color: #ff00ff;
    animation-duration: 1.5s;
    animation-direction: reverse;
}

.ring-3 {
    width: 20px;
    height: 20px;
    top: 10px;
    left: 10px;
    border-bottom-color: #ffff00;
    animation-duration: 2s;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.processing-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    animation: textPulse 1.5s ease-in-out infinite alternate;
}

@keyframes textPulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.feature-hologram {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    animation: featureGlow 3s ease-in-out infinite alternate;
}

@keyframes featureGlow {
    0% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.3); }
    100% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.5); }
}

.feature-hologram img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.feature-content h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .form-container {
        padding: 40px 30px;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .compatibility-form {
        padding: 20px;
    }
    
    .input-group-holo {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .field-particles {
        position: static;
        transform: none;
        margin-top: 10px;
    }
    
    .form-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}
