/* Port of FinalCTA.astro scoped styles (section wrapper + CTA banner) */

.final-cta-section {
  background-color: var(--surface, #f5f7fa);
  border-top: 1px solid var(--border);
}

.cta-banner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 24px;
  background: var(--primary-light, rgba(27, 84, 216, 0.05));
  border: 1px solid rgba(27, 84, 216, 0.14);
  border-radius: 20px;
  background-image: radial-gradient(ellipse at 30% 20%, rgba(27, 84, 216, 0.08) 0%, transparent 60%);
}

@media (min-width: 768px) {
  .cta-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px 48px;
    border-radius: 28px;
  }
}

.cta-banner-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-banner-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--heading);
  line-height: 1.2;
}

.cta-banner-title .accent {
  color: var(--primary, #1B54D8);
}

.cta-banner-desc {
  margin: 0;
  font-size: var(--fs-body, 1rem);
  line-height: 1.65;
  color: var(--text);
  max-width: 48ch;
}

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

@media (min-width: 480px) {
  .cta-banner-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.cta-banner-btn {
  width: 100%;
}

@media (min-width: 480px) {
  .cta-banner-btn {
    width: auto;
  }
}
