/* ==========================================================================
   Lead-Capture CTA Strip
   ==========================================================================
   Sits just above the site footer on content pages. Drives outbound
   click-throughs to Indigo Ink's quote form. Track via [data-cta] hook.
   ========================================================================== */

.cta-strip {
  position: relative;
  width: 100%;
  padding: 64px 24px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #022662 0%, #034694 100%);
}

.cta-strip::before {
  position: absolute;
  background-image:
    radial-gradient(circle at 20% 30%, rgb(246, 139, 31, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgb(255, 255, 255, 0.08) 0%, transparent 50%);
  content: "";
  inset: 0;
  pointer-events: none;
}

.cta-strip__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-strip__copy {
  max-width: 720px;
}

.cta-strip__heading {
  margin: 0 0 12px;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.cta-strip__body {
  margin: 0;
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.55;
  color: rgb(255, 255, 255, 0.92);
}

.cta-strip__actions {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 12px;
}

.cta-strip__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  padding: 14px 28px;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cta-strip__btn--primary {
  color: #fff;
  background: #f68b1f;
  box-shadow: 0 4px 14px rgb(246, 139, 31, 0.35);
}

.cta-strip__btn--primary:hover,
.cta-strip__btn--primary:focus-visible {
  background: #ff9a35;
  box-shadow: 0 8px 22px rgb(246, 139, 31, 0.5);
  transform: translateY(-2px);
}

.cta-strip__btn--secondary {
  color: #fff;
  background: transparent;
  border: 2px solid rgb(255, 255, 255, 0.6);
}

.cta-strip__btn--secondary:hover,
.cta-strip__btn--secondary:focus-visible {
  background: rgb(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-strip {
    padding: 48px 20px;
  }

  .cta-strip__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .cta-strip__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-strip__btn {
    width: 100%;
    min-width: 0;
  }
}
