.full-width-bar-cta-section {
  position: relative;
  min-height: 120px;
  padding: 24px 40px;
  border-radius: 28px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.full-width-bar-cta-section__glass-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
  opacity: 1;
  z-index: 1;
  animation: aura-drift 8s infinite alternate ease-in-out;
}
.full-width-bar-cta-section__neural-path {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  border-radius: 28px;
}
.full-width-bar-cta-section__neural-path::before, .full-width-bar-cta-section__neural-path::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  filter: blur(2px);
  opacity: 0;
}
.full-width-bar-cta-section__neural-path--top::before {
  top: 0;
  left: -100%;
  width: 150px;
  height: 1.5px;
  animation: neural-flow-top 8s infinite linear;
  animation-delay: 1s;
}
.full-width-bar-cta-section__neural-path--bottom::after {
  bottom: 0;
  right: -100%;
  width: 200px;
  height: 1.5px;
  animation: neural-flow-bottom 10s infinite linear;
  animation-delay: 3s;
}
.full-width-bar-cta-section__neural-path--right::before {
  top: -100%;
  right: 0;
  width: 1.5px;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--primary), transparent);
  animation: neural-flow-right 7s infinite linear;
  animation-delay: 5s;
}
.full-width-bar-cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-25deg);
  animation: shimmer 12s infinite;
  z-index: 3;
}
.full-width-bar-cta-section .size-64 {
  background: rgba(var(--primary-rgb), 0.08) !important;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.1);
  animation: breathing-icon 4s infinite ease-in-out;
}
.full-width-bar-cta-section .size-64 .icons {
  color: var(--primary) !important;
  filter: drop-shadow(0 2px 4px rgba(var(--primary-rgb), 0.2));
}
.full-width-bar-cta-section .size-64 .icons.text-white {
  color: var(--primary) !important;
}
.full-width-bar-cta-section h3 {
  font-weight: 800 !important;
  letter-spacing: -0.5px;
  color: #1e293b !important;
  font-size: 22px !important;
  line-height: 1.2;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  position: relative;
  z-index: 4;
}
.full-width-bar-cta-section:hover h3 {
  transform: translateX(6px);
  color: var(--primary) !important;
}
.full-width-bar-cta-section p {
  font-weight: 500;
  opacity: 0.8 !important;
  letter-spacing: 0px;
  color: #64748b !important;
  font-size: 15px !important;
  position: relative;
  z-index: 4;
}
@keyframes neural-flow-top {
  0% {
    left: -20%;
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  50% {
    left: 120%;
    opacity: 0;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}
@keyframes neural-flow-bottom {
  0% {
    right: -20%;
    opacity: 0;
  }
  30% {
    opacity: 0.6;
  }
  70% {
    right: 120%;
    opacity: 0;
  }
  100% {
    right: 120%;
    opacity: 0;
  }
}
@keyframes neural-flow-right {
  0% {
    top: -20%;
    opacity: 0;
  }
  20% {
    opacity: 0.7;
  }
  60% {
    top: 120%;
    opacity: 0;
  }
  100% {
    top: 120%;
    opacity: 0;
  }
}
@keyframes aura-drift {
  0% {
    transform: translate(0, 0) scale(1.1);
  }
  100% {
    transform: translate(5%, 5%) scale(1.2);
  }
}
@keyframes breathing-icon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 15px rgba(var(--primary-rgb), 0.05);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(var(--primary-rgb), 0.12);
  }
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  20%, 100% {
    left: 200%;
  }
}
.full-width-bar-cta-section .btn {
  background: #1e1b4b !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-radius: 14px;
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06), inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}
.full-width-bar-cta-section .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #312e81 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.full-width-bar-cta-section .btn .btn-flip-effect__text {
  font-weight: 700 !important;
  letter-spacing: 1.2px;
}
.full-width-bar-cta-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(30, 27, 75, 0.3), 0 8px 15px -5px rgba(30, 27, 75, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.full-width-bar-cta-section .btn:hover::before {
  opacity: 1;
}
.full-width-bar-cta-section .btn:active {
  transform: translateY(-1px);
}
@media (max-width: 991px) {
  .full-width-bar-cta-section {
    height: auto;
  }
}
