
/* Block 1 */
.neural-hero-banner {
    position: relative;
    min-height: 100vh;
    background-image: url('neural-circuit-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.neural-hero-overlay {
    background: linear-gradient(135deg, rgba(6, 20, 46, 0.85) 0%, rgba(45, 8, 84, 0.75) 50%, rgba(12, 34, 63, 0.9) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.neural-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.neural-hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00f5ff 0%, #8a2be2 50%, #ff1493 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
    animation: neural-title-pulse 3s ease-in-out infinite alternate;
}

.neural-hero-description {
    font-size: 1.3rem;
    color: #e8f4fd;
    margin-bottom: 3rem;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.neural-hero-button {
    position: relative;
    background: linear-gradient(135deg, #00f5ff 0%, #8a2be2 100%);
    border: none;
    border-radius: 50px;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

.neural-hero-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.5);
}

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

.neural-button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
    border-radius: 50%;
}

.neural-hero-button:hover .neural-button-glow {
    transform: scale(1);
}

.neural-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.neural-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00f5ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f5ff, 0 0 20px #00f5ff, 0 0 30px #00f5ff;
    animation: neural-float 6s ease-in-out infinite;
}

.neural-particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: -0.5s;
    animation-duration: 8s;
}

.neural-particle-2 {
    top: 60%;
    left: 85%;
    animation-delay: -1.2s;
    animation-duration: 7s;
    background: #8a2be2;
    box-shadow: 0 0 10px #8a2be2, 0 0 20px #8a2be2, 0 0 30px #8a2be2;
}

.neural-particle-3 {
    top: 80%;
    left: 25%;
    animation-delay: -2s;
    animation-duration: 9s;
    background: #ff1493;
    box-shadow: 0 0 10px #ff1493, 0 0 20px #ff1493, 0 0 30px #ff1493;
}

.neural-particle-4 {
    top: 30%;
    left: 70%;
    animation-delay: -3s;
    animation-duration: 6s;
}

.neural-particle-5 {
    top: 50%;
    left: 5%;
    animation-delay: -4s;
    animation-duration: 10s;
    background: #8a2be2;
    box-shadow: 0 0 10px #8a2be2, 0 0 20px #8a2be2, 0 0 30px #8a2be2;
}

@keyframes neural-title-pulse {
    0% { text-shadow: 0 0 30px rgba(0, 245, 255, 0.3); }
    100% { text-shadow: 0 0 50px rgba(138, 43, 226, 0.6), 0 0 80px rgba(255, 20, 147, 0.4); }
}

@keyframes neural-float {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.7; }
    25% { transform: translateY(-20px) translateX(15px) scale(1.2); opacity: 1; }
    50% { transform: translateY(-40px) translateX(-10px) scale(0.8); opacity: 0.5; }
    75% { transform: translateY(-20px) translateX(20px) scale(1.1); opacity: 0.9; }
}

@media (max-width: 768px) {
    .neural-hero-title {
        font-size: 2.5rem;
    }
    
    .neural-hero-description {
        font-size: 1.1rem;
    }
    
    .neural-hero-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .neural-hero-banner {
        background-attachment: scroll;
    }
    
    .neural-hero-title {
        font-size: 2rem;
    }
}

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

.quantum-architecture::before {
    content: '';
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.quantum-content {
    z-index: 2;
    position: relative;
}

.quantum-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00ffff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.quantum-description {
    font-size: 1.2rem;
    color: #b8b8d4;
    line-height: 1.7;
    margin-bottom: 3rem;
}

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

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

.quantum-feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.2);
}

.quantum-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quantum-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.quantum-feature-content h4 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quantum-feature-content p {
    color: #b8b8d4;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.quantum-visual {
    position: relative;
    z-index: 2;
}

.quantum-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.quantum-overlay {
    position: relative;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.quantum-pulse {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: quantumPulse 3s ease-in-out infinite;
}

.pulse-1 {
    position: relative;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.pulse-2 {
    position: relative;
    top: -10%;
    left: 70%;
    animation-delay: 1s;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.6) 0%, transparent 70%);
}

.pulse-3 {
    position: relative;
    top: -40%;
    left: 40%;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.6) 0%, transparent 70%);
}

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

.quantum-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    z-index: 2;
    position: relative;
}

.quantum-stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

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

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

.quantum-stat-label {
    color: #b8b8d4;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .quantum-architecture {
        padding: 80px 0;
    }
    
    .quantum-title {
        font-size: 2.5rem;
    }
    
    .quantum-description {
        font-size: 1.1rem;
    }
    
    .quantum-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quantum-stat-number {
        font-size: 2.2rem;
    }
}

/* Block 3 */
.bio-adaptive-security {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 50%, #2a2f3e 100%);
  position: relative;
  overflow: hidden;
}

.bio-adaptive-security::before {
  content: '';
  background: radial-gradient(ellipse at center, rgba(0, 255, 157, 0.1) 0%, transparent 70%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.bio-security-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.bio-main-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 255, 157, 0.2);
  filter: brightness(1.1) contrast(1.2);
}

.bio-security-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  z-index: 3;
}

.bio-scan-ring {
  position: absolute;
  border: 2px solid rgba(0, 255, 157, 0.6);
  border-radius: 50%;
  animation: bioScanRotate 4s linear infinite;
}

.bio-ring-outer {
  width: 200px;
  height: 200px;
  top: 0;
  left: 0;
  border-top-color: #00ff9d;
  animation-duration: 3s;
}

.bio-ring-middle {
  width: 140px;
  height: 140px;
  top: 30px;
  left: 30px;
  border-right-color: #00ff9d;
  animation-duration: 2.5s;
  animation-direction: reverse;
}

.bio-ring-inner {
  width: 80px;
  height: 80px;
  top: 60px;
  left: 60px;
  border-bottom-color: #00ff9d;
  animation-duration: 2s;
}

.bio-security-pulse {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 255, 157, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  animation: bioPulse 2s ease-in-out infinite;
}

.bio-security-indicators {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.bio-indicator {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(10, 15, 28, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 157, 0.3);
  border-radius: 20px;
  font-size: 12px;
  color: #00ff9d;
  animation: bioIndicatorFloat 3s ease-in-out infinite;
}

.bio-indicator-1 {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.bio-indicator-2 {
  bottom: 30%;
  left: -15%;
  animation-delay: 1s;
}

.bio-indicator-3 {
  top: 60%;
  right: -5%;
  animation-delay: 2s;
}

.bio-indicator-dot {
  width: 8px;
  height: 8px;
  background: #00ff9d;
  border-radius: 50%;
  animation: bioDotBlink 2s ease-in-out infinite;
}

.bio-security-content {
  color: #ffffff;
  z-index: 2;
  position: relative;
}

.bio-security-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #00ff9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.bio-security-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: #b0c4de;
}

.bio-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.bio-security-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 157, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.bio-security-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 157, 0.5);
  box-shadow: 0 15px 30px rgba(0, 255, 157, 0.1);
}

.bio-card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 255, 157, 0.2), rgba(0, 255, 157, 0.1));
  border-radius: 12px;
  color: #00ff9d;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bio-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.bio-card-text {
  font-size: 0.9rem;
  color: #b0c4de;
  margin: 0;
  line-height: 1.5;
}

.bio-security-metrics {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

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

.bio-metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00ff9d;
  margin-bottom: 0.5rem;
}

.bio-metric-label {
  font-size: 0.9rem;
  color: #b0c4de;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

@keyframes bioPulse {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.5); }
}

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

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

@media (max-width: 768px) {
  .bio-adaptive-security {
    padding: 80px 0;
  }
  
  .bio-security-title {
    font-size: 2.2rem;
  }
  
  .bio-security-grid {
    grid-template-columns: 1fr;
  }
  
  .bio-security-metrics {
    flex-direction: column;
    gap: 1rem;
  }
  
  .bio-security-overlay {
    width: 150px;
    height: 150px;
  }
  
  .bio-ring-outer {
    width: 150px;
    height: 150px;
  }
  
  .bio-ring-middle {
    width: 105px;
    height: 105px;
    top: 22.5px;
    left: 22.5px;
  }
  
  .bio-ring-inner {
    width: 60px;
    height: 60px;
    top: 45px;
    left: 45px;
  }
}

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

.quantum-order-form::before {
    content: '';
    background: radial-gradient(circle at 30% 40%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.quantum-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 60px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(0, 255, 255, 0.1);
}

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

.quantum-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;
    letter-spacing: -0.02em;
}

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

.quantum-contact-form {
    margin-bottom: 40px;
}

.quantum-form-grid {
    display: grid;
    gap: 35px;
    margin-bottom: 45px;
}

.quantum-input-group {
    position: relative;
}

.quantum-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #00ffff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.quantum-input {
    width: 100%;
    padding: 18px 25px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.quantum-input:focus {
    outline: none;
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.quantum-input-effect {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    z-index: 3;
}

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

.quantum-submit-button {
    width: 100%;
    padding: 25px;
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    border: none;
    border-radius: 16px;
    color: #0a0a0f;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quantum-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.4);
}

.quantum-submit-text {
    position: relative;
    z-index: 3;
}

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

.quantum-particle-submit {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: quantumParticleFloat 3s infinite ease-in-out;
}

.quantum-particle-submit-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.quantum-particle-submit-2 {
    top: 60%;
    left: 70%;
    animation-delay: 1s;
}

.quantum-particle-submit-3 {
    top: 40%;
    left: 90%;
    animation-delay: 2s;
}

.quantum-submit-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #00ffff, #ff00ff, #ffff00);
    border-radius: 18px;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.quantum-submit-button:hover .quantum-submit-glow {
    opacity: 1;
}

.quantum-form-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.quantum-feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 25px;
    color: #00ffff;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quantum-feature-badge:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

@keyframes quantumParticleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .quantum-order-form {
        padding: 80px 0;
    }
    
    .quantum-form-wrapper {
        padding: 40px 30px;
    }
    
    .quantum-form-title {
        font-size: 2.2rem;
    }
    
    .quantum-form-subtitle {
        font-size: 1rem;
    }
    
    .quantum-form-features {
        gap: 15px;
    }
    
    .quantum-feature-badge {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
}
