/* ========== CTA section ========== */
.cta-section {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(120deg, #133066 0%, #0e1e3f 55%, #0a132a 100%);
  overflow: hidden;
  isolation: isolate;
}
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top right,
    rgba(59, 130, 246, 0.18),
    transparent 55%
  );
  z-index: -1;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}
.cta-section .title-rule {
  margin: 0 0 1.1rem;
}
.cta-section p {
  color: var(--off);
  max-width: 42ch;
  font-size: 0.95rem;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.phone-link {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.phone-link svg {
  color: var(--blue);
  width: 16px;
  height: 16px;
}
