/* ============================================
   LIMBIC CTA BANNER - Gold Standard Styles
   ============================================ */
.limbic-cta-banner {
  position: relative;
  background: var(--cta-bg);
  padding: var(--cta-padding-top) 0 var(--cta-padding-bottom);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.limbic-cta-banner .section-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.limbic-cta-banner .container {
  position: relative;
  z-index: 10;
}

.limbic-cta-banner .cta-wrapper {
  max-width: 900px;
}

.limbic-cta-banner .cta-wrapper.center {
  margin: 0 auto;
  text-align: center;
}

.limbic-cta-banner .cta-wrapper.left {
  margin: 0 auto 0 0;
  text-align: left;
}

.limbic-cta-banner .cta-wrapper.right {
  margin: 0 0 0 auto;
  text-align: right;
}

/* Eyebrow */
.limbic-cta-banner .eyebrow-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.limbic-cta-banner .cta-wrapper.center .eyebrow-wrapper {
  justify-content: center;
}

.limbic-cta-banner .eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--cta-accent);
}

.limbic-cta-banner .cta-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cta-accent);
  margin: 0;
}

/* Heading */
.limbic-cta-banner .cta-heading {
  font-family: var(--font-primary);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cta-text);
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

/* Subheading */
.limbic-cta-banner .cta-subheading {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--cta-text);
  opacity: 0.85;
  margin-bottom: 32px;
}

.limbic-cta-banner .cta-subheading ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.limbic-cta-banner .cta-subheading li {
  margin-bottom: 0.5rem;
}

/* CTA Button - Gold Standard Pill Style */
.limbic-cta-banner .cta-actions {
  display: flex;
  gap: 20px;
}

.limbic-cta-banner .cta-wrapper.center .cta-actions {
  justify-content: center;
}

.limbic-cta-banner .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 8px 8px 8px 30px;
  background: var(--cta-text);
  color: var(--cta-bg);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.limbic-cta-banner .btn-pill {
  border-radius: 50px;
}

.limbic-cta-banner .btn-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.limbic-cta-banner .btn-icon {
  width: 44px;
  height: 44px;
  background: var(--cta-bg);
  color: var(--cta-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.limbic-cta-banner .btn-cta:hover {
  padding-right: 12px;
}

.limbic-cta-banner .btn-cta:hover .btn-icon {
  transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 768px) {
  .limbic-cta-banner {
    padding: 60px 0;
  }
  
  .limbic-cta-banner .eyebrow-line {
    width: 25px;
  }
}

