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

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

.hero-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(20, 30, 48, 0.85) 0%, rgba(36, 59, 85, 0.75) 100%);
    z-index: 2;
}

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

.hero-text {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 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);
}

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border: 2px solid transparent;
}

.hero-cta-button:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

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

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

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

/* Block 2 */
.futuristic-workflow {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f4c75 75%, #3282b8 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.futuristic-workflow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(50, 130, 184, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.workflow-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ff00);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease-in-out infinite;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.workflow-subtitle {
  font-size: 1.3rem;
  color: #b0c4de;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

.quantum-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.quantum-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 30px 60px rgba(0, 255, 255, 0.2);
}

.card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ff00);
  border-radius: 24px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
}

.quantum-card:hover .card-glow {
  opacity: 0.3;
  animation: rotate-border 3s linear infinite;
}

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

.quantum-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
  transition: all 0.5s ease;
}

.quantum-card:hover .quantum-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.8));
}

.quantum-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quantum-description {
  color: #b0c4de;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 300;
}

.performance-meter {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.meter-bar {
  flex: 1;
  height: 8px;
  background: linear-gradient(90deg, #00ffff 0%, #ff00ff 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.meter-bar::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: meter-pulse 2s ease-in-out infinite;
}

@keyframes meter-pulse {
  0% { left: -100%; }
  100% { left: 100%; }
}

.meter-label {
  color: #00ffff;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.innovation-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  padding: 40px 0;
  position: relative;
}

.innovation-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffff 0%, #ff00ff 50%, #ffff00 100%);
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.timeline-point::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1a1a2e;
  border: 3px solid #666;
  transition: all 0.3s ease;
}

.timeline-point.active::before {
  border-color: #00ffff;
  background: #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.timeline-year {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}

.timeline-desc {
  color: #b0c4de;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 300;
}

@media (max-width: 768px) {
  .workflow-title {
    font-size: 2.5rem;
  }
  
  .workflow-subtitle {
    font-size: 1.1rem;
  }
  
  .quantum-card {
    padding: 30px 20px;
  }
  
  .innovation-timeline {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .innovation-timeline::before {
    display: none;
  }
}

/* Block 3 */
.neural-analytics {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a0033 50%, #000011 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

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

.analytics-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00d4ff, #7c3aed, #ff006e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

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

.prediction-dashboard {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brain-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(48%) sepia(96%) saturate(6455%) hue-rotate(273deg) brightness(106%) contrast(107%);
}

.dashboard-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #7c3aed;
}

.prediction-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
}

.prediction-item:hover {
    background: rgba(124, 58, 237, 0.1);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.neural-graph {
    width: 60px;
    height: 40px;
    position: relative;
}

.graph-line {
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    margin: 4px 0;
    border-radius: 1px;
    animation: dataFlow 2s ease-in-out infinite;
}

.graph-line:nth-child(1) {
    width: 80%;
    animation-delay: 0s;
}

.graph-line:nth-child(2) {
    width: 100%;
    animation-delay: 0.3s;
}

.graph-line:nth-child(3) {
    width: 60%;
    animation-delay: 0.6s;
}

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

.prediction-format {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.prediction-confidence {
    font-size: 0.9rem;
    color: #00d4ff;
    margin-bottom: 10px;
}

.prediction-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.prediction-tags span {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tag-optimal { background: rgba(16, 185, 129, 0.2); color: #10b981; }
.tag-green { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
.tag-secure { background: rgba(239, 68, 68, 0.2); color: #ef4444; }
.tag-fast { background: rgba(245, 158, 11, 0.2); color: #f59e0b; }
.tag-immersive { background: rgba(168, 85, 247, 0.2); color: #a855f7; }
.tag-adaptive { background: rgba(6, 182, 212, 0.2); color: #06b6d4; }

.intelligence-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-block {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    filter: hue-rotate(200deg) saturate(1.5) brightness(1.2);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.synapse-indicator, .quantum-readout, .molecule-chain {
    display: flex;
    align-items: center;
    gap: 12px;
}

.synapse-pulse {
    width: 12px;
    height: 12px;
    background: #00d4ff;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

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

.synapse-count, .quantum-state, .efficiency-label {
    font-size: 0.9rem;
    color: #00d4ff;
    font-weight: 500;
}

.qubit-visualization {
    display: flex;
    gap: 8px;
}

.qubit {
    width: 10px;
    height: 10px;
    border: 2px solid #7c3aed;
    border-radius: 50%;
    background: transparent;
}

.qubit.active {
    background: #7c3aed;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.6);
}

.molecule-chain {
    display: flex;
    align-items: center;
}

.atom {
    width: 8px;
    height: 8px;
    background: #ff006e;
    border-radius: 50%;
    margin-right: 4px;
    box-shadow: 0 0 8px rgba(255, 0, 110, 0.5);
}

.atom:not(:last-of-type)::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 2px;
    background: rgba(255, 0, 110, 0.4);
    margin-left: 4px;
}

.neural-network-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.1;
}

.network-node {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    animation: networkPulse 3s ease-in-out infinite;
}

.network-node:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.network-node:nth-child(2) { top: 40%; right: 15%; animation-delay: 0.5s; }
.network-node:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 1s; }
.network-node:nth-child(4) { bottom: 20%; right: 25%; animation-delay: 1.5s; }
.network-node:nth-child(5) { top: 60%; left: 50%; animation-delay: 2s; }

@keyframes networkPulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.5); }
}

.network-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, #7c3aed, transparent);
    animation: connectionFlow 4s ease-in-out infinite;
}

.network-connection:nth-child(6) {
    top: 25%;
    left: 10%;
    width: 200px;
    transform: rotate(30deg);
}

.network-connection:nth-child(7) {
    bottom: 35%;
    right: 20%;
    width: 150px;
    transform: rotate(-45deg);
}

.network-connection:nth-child(8) {
    top: 50%;
    left: 30%;
    width: 180px;
    transform: rotate(15deg);
}

@keyframes connectionFlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.6; }
}

@media (max-width: 768px) {
    .analytics-title {
        font-size: 2.5rem;
    }
    
    .analytics-subtitle {
        font-size: 1.1rem;
    }
    
    .neural-analytics {
        padding: 80px 0;
    }
    
    .analytics-header {
        margin-bottom: 50px;
    }
    
    .intelligence-features {
        gap: 30px;
    }
    
    .prediction-item {
        flex-direction: column;
        text-align: center;
    }
}

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

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

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

.quantum-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px #00ffff);
  animation: quantumFloat 3s ease-in-out infinite;
}

.form-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

.form-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 0;
}

.holographic-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.panel-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ffff);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
  filter: blur(10px);
  animation: panelPulse 3s ease-in-out infinite;
}

.neural-form {
  position: relative;
}

.input-matrix {
  margin-bottom: 30px;
}

.form-field {
  position: relative;
  margin-bottom: 25px;
}

.field-label {
  display: block;
  color: #00ffff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quantum-input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.quantum-input:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  transform: translateY(-2px);
}

.field-scanner {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  animation: scanLine 2s ease-in-out infinite;
  opacity: 0;
}

.quantum-input:focus + .field-scanner {
  opacity: 1;
}

.validation-indicator {
  position: absolute;
  top: 50%;
  right: 45px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff00ff;
  opacity: 0;
  animation: validationPulse 1.5s ease-in-out infinite;
}

.quantum-input:valid + .field-scanner + .validation-indicator {
  opacity: 1;
  background: #00ff00;
}

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

.submit-portal:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 0, 255, 0.4);
}

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

.portal-energy {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: energyFlow 3s ease-in-out infinite;
}

.security-badges {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 20px;
  font-size: 0.8rem;
}

.badge-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(50%) sepia(96%) saturate(507%) hue-rotate(79deg) brightness(118%) contrast(119%);
}

.badge-text {
  color: #00ff00;
  font-weight: 600;
}

.contact-intelligence {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
}

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

.ai-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #00ffff;
  filter: drop-shadow(0 0 10px #00ffff);
}

.assistant-name {
  color: #00ffff;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.assistant-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b0b0b0;
  font-size: 0.9rem;
}

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

.response-metrics {
  margin-bottom: 30px;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.metric-visual {
  position: relative;
  width: 40px;
  height: 40px;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #00ffff;
  border-radius: 50%;
  animation: pulseRing 2s ease-in-out infinite;
}

.pulse-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #00ffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.satisfaction-bar {
  width: 40px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

.satisfaction-fill {
  width: 99.7%;
  height: 100%;
  background: linear-gradient(90deg, #00ff00, #ffff00);
  border-radius: 3px;
  animation: satisfactionGlow 3s ease-in-out infinite;
}

.neural-activity {
  display: flex;
  gap: 3px;
  align-items: end;
  height: 40px;
}

.activity-wave {
  width: 4px;
  background: #ff00ff;
  border-radius: 2px;
  animation: waveActivity 1.5s ease-in-out infinite;
}

.activity-wave:nth-child(2) {
  animation-delay: 0.3s;
}

.activity-wave:nth-child(3) {
  animation-delay: 0.6s;
}

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

.metric-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00ffff;
}

.metric-label {
  font-size: 0.8rem;
  color: #b0b0b0;
}

.capabilities-title {
  color: #ff00ff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.capability-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 0, 255, 0.1);
  border: 1px solid rgba(255, 0, 255, 0.3);
  border-radius: 8px;
  font-size: 0.8rem;
}

.capability-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7151%) hue-rotate(292deg) brightness(95%) contrast(125%);
}

.capability-text {
  color: #ff00ff;
  font-weight: 600;
}

.quantum-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

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

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { left: 80%; animation-delay: 4s; }
.particle:nth-child(6) { left: 90%; animation-delay: 5s; }

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

@keyframes titleGlow {
  0% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
  100% { text-shadow: 0 0 40px rgba(255, 0, 255, 0.8); }
}

@keyframes panelPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@keyframes scanLine {
  0% { transform: translateX(-100px); }
  100% { transform: translateX(100px); }
}

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

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

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

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

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

@keyframes waveActivity {
  0%, 100% { height: 10px; }
  50% { height: 30px; }
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

@media (max-width: 768px) {
  .form-title {
    font-size: 2.5rem;
  }
  
  .holographic-panel {
    padding: 30px 20px;
  }
  
  .security-badges {
    flex-direction: column;
  }
  
  .capability-grid {
    grid-template-columns: 1fr;
  }
  
  .intelligence-header {
    flex-direction: column;
    text-align: center;
  }
}
