/* ===========================================================
   VORS · Final CTA
   =========================================================== */
.vors-cta {
  position: relative;
  background: linear-gradient(135deg, var(--bg-invert) 0%, var(--brand-deep) 100%);
  color: #fff;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.vors-cta__drop {
  position: absolute;
  bottom: -180px;
  right: -200px;
  width: 600px;
  height: 600px;
  color: var(--brand-vivid);
  opacity: 0.12;
  pointer-events: none;
  animation: vors-cta-float 8s ease-in-out infinite;
}
@media (max-width: 767px) {
  .vors-cta__drop { width: 360px; height: 360px; bottom: -100px; right: -120px; }
}

@keyframes vors-cta-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(-20px, -30px) rotate(8deg); }
}

.vors-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.vors-cta__title {
  font-family: 'Space Grotesk', 'Inter Tight', sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.vors-cta__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.vors-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

/* Белая кнопка с тёмным текстом */
.vors-cta__primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fff;
  color: var(--ink);
  border-radius: var(--radius-pill);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--duration-base) var(--ease),
              box-shadow var(--duration-base) var(--ease);
  box-shadow: var(--shadow-brand);
}
.vors-cta__primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.4);
}

.vors-cta__phone {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--duration-base) var(--ease);
}
.vors-cta__phone:hover { color: #fff; }
