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

.hero-background {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(30, 64, 175, 0.9) 100%);
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
    left: 0;
}

.hero-content {
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    margin-top: -70vh;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #e0f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

.btn-icon {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.hero-cta-btn:hover .btn-icon {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 60vh;
    }
    
    .hero-bg-image {
        height: 60vh;
    }
    
    .hero-content {
        margin-top: -60vh;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Block 2 */
.network-statistics {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: white;
  overflow: hidden;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
}

.stats-header {
  text-align: center;
  margin-bottom: 3rem;
}

.stats-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #60a5fa, #34d399, #fbbf24);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  hover: transform scale(1.02);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 20px 40px rgba(96, 165, 250, 0.1);
}

.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #60a5fa, #34d399);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 1.1rem;
  text-align: center;
  color: #e2e8f0;
  margin-bottom: 1rem;
  font-weight: 500;
}

.stat-trend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.trend-indicator {
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.trend-indicator.positive {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.trend-indicator.negative {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.trend-text {
  font-size: 0.9rem;
  color: #94a3b8;
}

.stats-visual {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.network-pulse {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.network-map {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

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

.pulse-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.pulse-primary {
  top: 30%;
  left: 25%;
  background: #60a5fa;
  animation-delay: 0s;
}

.pulse-secondary {
  top: 60%;
  right: 30%;
  background: #34d399;
  animation-delay: 0.7s;
}

.pulse-tertiary {
  bottom: 25%;
  left: 60%;
  background: #fbbf24;
  animation-delay: 1.4s;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 currentColor;
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 20px transparent;
    opacity: 0;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
    opacity: 0;
  }
}

.metrics-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.metric-label {
  font-size: 1rem;
  color: #cbd5e1;
  font-weight: 500;
}

.metric-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, #60a5fa, #34d399);
  border-radius: 4px;
  transition: width 2s ease-in-out;
  animation: fillBar 2s ease-in-out;
}

.metric-fill[data-percentage="78"] {
  width: 78%;
}

.metric-fill[data-percentage="92"] {
  width: 92%;
}

.metric-fill[data-percentage="85"] {
  width: 85%;
}

@keyframes fillBar {
  from {
    width: 0%;
  }
}

.metric-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #60a5fa;
  align-self: flex-end;
}

@media (max-width: 768px) {
  .network-statistics {
    padding: 3rem 1rem;
  }
  
  .stats-title {
    font-size: 2rem;
  }
  
  .stats-subtitle {
    font-size: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .stat-card {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stats-visual {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .network-map {
    height: 200px;
  }
  
  .metrics-panel {
    gap: 1.5rem;
  }
}

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

/* Block 3 */
.neural-connectivity {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  overflow: hidden;
}

.neural-connectivity::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.neural-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.neural-header {
  text-align: center;
  margin-bottom: 4rem;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.badge-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(84%) saturate(2500%) hue-rotate(210deg);
}

.badge-text {
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.9rem;
}

.neural-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.neural-description {
  font-size: 1.25rem;
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.neural-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.neural-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card.featured {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.feature-visual {
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.feature-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  padding: 1rem;
}

.feature-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.feature-desc {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-metrics {
  display: flex;
  gap: 2rem;
}

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

.metric-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
}

.metric-unit {
  font-size: 0.875rem;
  color: #94a3b8;
}

.feature-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.status-indicator.active {
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.status-indicator.growing {
  background: #f59e0b;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
  animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.status-text {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
}

.neural-visualization {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.brain-network {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.brain-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  filter: brightness(1.2) contrast(1.1);
}

.network-nodes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.node {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.node-primary {
  background: #3b82f6;
  top: 30%;
  left: 45%;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.7);
}

.node-secondary {
  background: #8b5cf6;
  top: 50%;
  right: 25%;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.7);
}

.node-tertiary {
  background: #10b981;
  bottom: 30%;
  left: 35%;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.7);
}

.node-quaternary {
  background: #f59e0b;
  top: 20%;
  right: 40%;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.7);
}

.node:hover {
  transform: scale(1.5);
}

.neural-stats {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.stat-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  text-align: center;
}

.stat-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bar-label {
  color: #cbd5e1;
  font-size: 0.9rem;
  min-width: 120px;
}

.bar-container {
  flex: 1;
  height: 8px;
  background: rgba(71, 85, 105, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 10px;
  width: 0;
  animation: fill-bar 2s ease-out forwards;
}

@keyframes fill-bar {
  to { width: var(--fill-width, 0%); }
}

.bar-fill[data-width="94"] { --fill-width: 94%; }
.bar-fill[data-width="87"] { --fill-width: 87%; }
.bar-fill[data-width="91"] { --fill-width: 91%; }

.bar-value {
  color: white;
  font-weight: 600;
  min-width: 40px;
  text-align: right;
}

.neural-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.control-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.control-btn.primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
}

.control-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.control-btn.secondary {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.control-btn.secondary:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px) {
  .neural-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .neural-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .neural-connectivity {
    padding: 3rem 0;
  }
  
  .neural-title {
    font-size: 2rem;
  }
  
  .neural-description {
    font-size: 1.1rem;
  }
  
  .feature-metrics {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  
  .bar-label, .bar-value {
    min-width: unset;
    text-align: left;
  }
}

/* Block 4 */
.quantum-order-form {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0f0f23 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: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.form-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 4rem;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2) 0%, rgba(147, 51, 234, 0.2) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
}

.badge-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

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

.form-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.form-visual {
    position: relative;
}

.hologram-display {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.hologram-bg {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    opacity: 0.7;
    filter: hue-rotate(200deg) brightness(1.2);
}

.floating-elements {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    pointer-events: none;
}

.data-cube {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.6), rgba(147, 51, 234, 0.6));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    animation: float 4s ease-in-out infinite;
}

.cube-primary {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.cube-secondary {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

.cube-tertiary {
    bottom: 25%;
    left: 60%;
    animation-delay: 3s;
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 2px,
        rgba(59, 130, 246, 0.1) 2px,
        rgba(59, 130, 246, 0.1) 3px
    );
    animation: scanMove 3s linear infinite;
}

.security-indicators {
    margin-top: 2rem;
    space-y: 1rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    padding: 1rem;
}

.security-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.security-text {
    flex: 1;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
}

.security-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.security-status.active {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.security-status.scanning {
    background: #f59e0b;
    animation: pulse 1s ease-in-out infinite;
}

.security-status.verified {
    background: #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.order-form-wrapper {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.7) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(15px);
}

.quantum-form {
    space-y: 2rem;
}

.form-grid {
    display: grid;
    gap: 2rem;
}

.input-group {
    position: relative;
}

.input-label {
    display: block;
    color: #60a5fa;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    z-index: 3;
}

.quantum-input {
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 15px;
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.quantum-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    background: rgba(15, 23, 42, 0.9);
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

.quantum-input:focus + .input-highlight {
    width: 100%;
}

.validation-feedback {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quantum-input:valid ~ .validation-feedback {
    opacity: 1;
}

.feedback-icon {
    width: 16px;
    height: 16px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
}

.feedback-icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
}

.feedback-text {
    color: #10b981;
    font-size: 0.8rem;
}

.form-features {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
}

.feature-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-name {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-desc {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.submit-section {
    margin-top: 3rem;
    text-align: center;
}

.quantum-submit-btn {
    position: relative;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border: none;
    border-radius: 15px;
    padding: 1.5rem 3rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.quantum-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.btn-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

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

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

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 70%;
    left: 80%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 60%;
    animation-delay: 2s;
}

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

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

.submit-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

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

.info-text {
    color: #94a3b8;
    font-size: 0.9rem;
    max-width: 400px;
}

.processing-status {
    margin-top: 4rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.status-title {
    color: #60a5fa;
    font-size: 1.1rem;
    font-weight: 600;
}

.status-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.status-indicator.standby {
    background: #64748b;
    animation: pulse 2s ease-in-out infinite;
}

.status-metrics {
    display: grid;
    gap: 1.5rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.metric-name {
    color: #cbd5e1;
    font-size: 0.9rem;
    width: 140px;
    flex-shrink: 0;
}

.metric-progress {
    flex: 1;
    height: 8px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
    width: 85%;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

.metric-value {
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
    width: 120px;
    text-align: right;
}

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

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

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

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

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

@media (max-width: 1024px) {
    .form-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .order-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .quantum-order-form {
        padding: 3rem 1rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-description {
        font-size: 1rem;
    }
    
    .order-form-wrapper {
        padding: 1.5rem;
    }
    
    .btn-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .quantum-submit-btn {
        padding: 1.25rem 2rem;
    }
    
    .status-metrics {
        gap: 1rem;
    }
    
    .metric-item {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .metric-name,
    .metric-value {
        width: auto;
        text-align: left;
    }
}
