/* Shared components (multi-page) */

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--blue) 0%, var(--navy-2) 100%);
  padding: 80px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
}

.cta-inner h3 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 12px;
}

.cta-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-phone {
  text-align: right;
}

.cta-phone-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-bottom: 6px;
}

.cta-phone-num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: #fff;
  text-decoration: none;
}

.cta-phone-num:hover,
.cta-phone-num:focus-visible {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .cta-phone {
    text-align: center;
  }
}

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

  .cta-inner h3 {
    font-size: 26px;
  }

  .cta-phone-num {
    font-size: 34px;
  }
}
