.cs-cta-banner {
  position: relative;
  background: #F5F7FA;
  background: var(--bg-light, #F5F7FA);
  padding: 88px 0;
  overflow: hidden;
}

/* ── Background ── */
.cs-cta-banner__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.cs-cta-banner__bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.cs-cta-banner__bg-glow--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,194,168,0.12) 0%, transparent 70%);
  top: -160px; left: -100px;
  animation: ctaGlow 8s ease-in-out infinite alternate;
}
.cs-cta-banner__bg-glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(11,31,58,0.06) 0%, transparent 70%);
  bottom: -120px; right: -80px;
  animation: ctaGlow 10s ease-in-out infinite alternate-reverse;
}
@keyframes ctaGlow {
  from { opacity: 0.5; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.2); }
}
.cs-cta-banner__bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,194,168,0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.55;
}

/* ── Inner layout ── */
.cs-cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================================
   LEFT — ICON
============================================================ */
.cs-cta-banner__icon-wrap {
  position: relative;
  width: 100px; height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cs-cta-banner__icon-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(0,194,168,0.25);
  animation: ctaRingSpin 20s linear infinite;
}
.cs-cta-banner__icon-ring--outer {
  inset: 0;
}
.cs-cta-banner__icon-ring--inner {
  inset: 14px;
  border-color: rgba(0,194,168,0.15);
  animation-direction: reverse;
  animation-duration: 14s;
}
@keyframes ctaRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.cs-cta-banner__icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #00C2A8, #009e8a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(0,194,168,0.35);
  position: relative;
  z-index: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cs-cta-banner__icon-wrap:hover .cs-cta-banner__icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 14px 36px rgba(0,194,168,0.45);
}

/*CENTER — CONTENT*/
.cs-cta-banner__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

/* Offer pill */
.cs-cta-banner__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,194,168,0.1);
  border: 1px solid rgba(0,194,168,0.25);
  color: #00C2A8;
  color: var(--secondary, #00C2A8);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  width: fit-content;
}
.cs-cta-banner__pill-dot {
  width: 6px; height: 6px;
  background: #00C2A8;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(0,194,168,0.8);
  animation: ctaDotPulse 2s ease-in-out infinite;
}
@keyframes ctaDotPulse {
  0%,100% { box-shadow: 0 0 4px rgba(0,194,168,0.8); }
  50%      { box-shadow: 0 0 12px rgba(0,194,168,1), 0 0 24px rgba(0,194,168,0.3); }
}

/* Heading */
.cs-cta-banner__heading {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 800;
  color: #0B1F3A;
  color: var(--primary, #0B1F3A);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}
.cs-cta-banner__heading-accent {
  color: #00C2A8;
  color: var(--secondary, #00C2A8);
}

/* Description */
.cs-cta-banner__desc {
  font-size: 15px;
  color: #6B7280;
  color: var(--text-light, #6B7280);
  line-height: 1.75;
  margin: 0;
  max-width: 540px;
}
.cs-cta-banner__desc strong {
  color: #0B1F3A;
  color: var(--primary, #0B1F3A);
  font-weight: 600;
}

/* Trust items */
.cs-cta-banner__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cs-cta-banner__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #0B1F3A;
  color: var(--primary, #0B1F3A);
}
.cs-cta-banner__trust-item svg {
  color: #00C2A8;
  background: rgba(0,194,168,0.1);
  border-radius: 50%;
  padding: 2px;
  width: 20px; height: 20px;
  flex-shrink: 0;
}

/* Action buttons */
.cs-cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cs-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.cs-cta-banner__btn--primary {
  background: #00C2A8;
  background: var(--secondary, #00C2A8);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0,194,168,0.3);
}
.cs-cta-banner__btn--primary:hover {
  background: #00a891;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,194,168,0.4);
}
.cs-cta-banner__btn--primary svg { transition: transform 0.2s; }
.cs-cta-banner__btn--primary:hover svg { transform: translateX(4px); }

.cs-cta-banner__btn--ghost {
  background: transparent;
  color: #0B1F3A;
  color: var(--primary, #0B1F3A);
  border: 2px solid rgba(11,31,58,0.15);
}
.cs-cta-banner__btn--ghost:hover {
  border-color: #00C2A8;
  color: #00C2A8;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .cs-cta-banner {
    padding: 72px 0;
  }

  .cs-cta-banner__inner {
    flex-direction: column;
    gap: 36px;
    text-align: center;
  }

  .cs-cta-banner__icon-wrap {
    display: none;
  }

  .cs-cta-banner__content {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .cs-cta-banner {
    padding: 56px 0;
  }

  .cs-cta-banner__actions {
    flex-direction: column;
    width: 100%;
  }

  .cs-cta-banner__btn {
    justify-content: center;
  }

  .cs-cta-banner__trust {
    gap: 10px;
    justify-content: center;
  }
}