/* CTA v6 — gradient band, copy + actions in a row */

.cta-v6 {
  padding: 0;
  overflow: hidden;
}

.cta-v6 .cta-v6__band {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 4vw, 2rem);
  background: linear-gradient(
    105deg,
    color-mix(in srgb, var(--cta-accent) 18%, var(--cta-bg)) 0%,
    var(--cta-bg) 45%,
    color-mix(in srgb, var(--cta-accent) 10%, var(--cta-bg)) 100%
  );
  border-top: 1px solid color-mix(in srgb, var(--cta-accent) 25%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--cta-accent) 20%, transparent);
}

.cta-v6 .cta-v6__band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 120% at 100% 50%, color-mix(in srgb, var(--cta-accent) 15%, transparent), transparent 55%);
}

.cta-v6 .cta-v6__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 1.75rem);
  max-width: 64rem;
  margin: 0 auto;
}

.cta-v6 .cta-v6__copy {
  flex: 1 1 280px;
  min-width: 0;
}

.cta-v6 .cta-v6__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.25rem, 3.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-v6 .cta-v6__sub {
  margin: 0;
  font-size: clamp(0.88rem, 2vw, 1rem);
  line-height: 1.5;
  opacity: 0.88;
}

.cta-v6 .cta-v6__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .cta-v6 .cta-v6__actions {
    width: 100%;
  }

  .cta-v6 .cta-v6__actions .cta-btn {
    flex: 1 1 auto;
    justify-content: center;
    min-width: calc(50% - 0.375rem);
  }
}
