.info-banner {
  margin: 0 auto;
  background: linear-gradient(270deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 30px;
  padding: 60px 50px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.info-banner-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.info-banner-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 25px;
}

.info-banner-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.info-banner-description strong {
  font-weight: 700;
  color: white;
}

.info-banner-graphic {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  opacity: 0.25;
}

.tech-circuit-board {
  width: 100%;
  height: 100%;
  position: relative;
}

.tech-circuit-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  animation: tech-pulse 3s ease-in-out infinite;
}

.tech-circuit-line.tech-horizontal {
  height: 3px;
  width: 0;
  animation: tech-expandWidth 2s ease-out forwards;
}

.tech-circuit-line.tech-vertical {
  width: 3px;
  height: 0;
  animation: tech-expandHeight 2s ease-out forwards;
}

.tech-circuit-node {
  position: absolute;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: tech-glow 2s ease-in-out infinite;
}

.tech-circuit-chip {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  animation: tech-rotate 20s linear infinite;
}

.tech-circuit-chip::before,
.tech-circuit-chip::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
}

.tech-circuit-chip::before {
  width: 20px;
  height: 3px;
  top: 50%;
  left: -23px;
  transform: translateY(-50%);
}

.tech-circuit-chip::after {
  width: 20px;
  height: 3px;
  top: 50%;
  right: -23px;
  transform: translateY(-50%);
}

.tech-code-brackets {
  position: absolute;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  animation: tech-float 4s ease-in-out infinite;
}

@keyframes tech-expandWidth {
  to {
    width: 100%;
  }
}

@keyframes tech-expandHeight {
  to {
    height: 100%;
  }
}

@keyframes tech-pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes tech-glow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
  }
}

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

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

@media (max-width: 1024px) {
  .info-banner-graphic {
    width: 300px;
    height: 300px;
    right: 40px;
  }

  .tech-code-brackets {
    font-size: 80px;
  }

  .tech-circuit-chip {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .info-banner {
    padding: 30px;
    margin-bottom: 40px;
  }

  .info-banner-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .info-banner-description {
    font-size: 0.9rem;
  }

  .info-banner-graphic {
    opacity: 0.15;
    width: 200px;
    height: 200px;
    right: 20px;
  }

  .tech-code-brackets {
    font-size: 60px;
  }

  .tech-circuit-chip {
    width: 30px;
    height: 30px;
  }
}
