/* ============================================================
   ФИНАЛЬНЫЙ CTA — СТИЛЬ АФОР
   ============================================================ */

.atelier-cta {
  background: linear-gradient(135deg, var(--afor-charcoal) 0%, #1a1f2e 100%);
  padding: 110px 24px;
  position: relative;
  overflow: hidden;
}

/* Декоративный элемент фона */
.atelier-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.atelier-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.atelier-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* ---------- ЗАГОЛОВОК ---------- */
.atelier-cta__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.3;
  color: #ffffff;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- ОПИСАНИЕ ---------- */
.atelier-cta__desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- КНОПКИ ---------- */
.atelier-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.atelier-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  background: #ffffff;
  color: var(--afor-charcoal);
  min-width: 140px;
  text-align: center;
}

.atelier-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.atelier-cta__btn:active {
  transform: translateY(0);
}

/* Вариации кнопок */
.atelier-cta__btn--whatsapp:hover {
  background: #25D366;
  color: #ffffff;
}

.atelier-cta__btn--telegram:hover {
  background: #0088cc;
  color: #ffffff;
}

.atelier-cta__btn--max:hover {
  background: #FF6B35;
  color: #ffffff;
}

.atelier-cta__btn--vk:hover {
  background: #0077FF;
  color: #ffffff;
}

.atelier-cta__btn svg {
  width: 20px;
  height: 20px;
}

/* ---------- ПОЛИТИКА ---------- */
.atelier-cta__policy {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.atelier-cta__policy a {
  color: var(--afor-gold);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.atelier-cta__policy a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/* ---------- АДАПТИВ ---------- */
@media (max-width: 768px) {
  .atelier-cta {
    padding: 80px 20px;
  }

  .atelier-cta__title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .atelier-cta__desc {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .atelier-cta__buttons {
    gap: 10px;
  }

  .atelier-cta__btn {
    padding: 10px 16px;
    font-size: 12px;
    min-width: 120px;
  }

  .atelier-cta__btn svg {
    width: 18px;
    height: 18px;
  }

  .atelier-cta::before {
    width: 400px;
    height: 400px;
    right: -20%;
    top: -40%;
  }

  .atelier-cta::after {
    width: 300px;
    height: 300px;
    left: -15%;
    bottom: -20%;
  }
}

@media (max-width: 480px) {
  .atelier-cta {
    padding: 60px 16px;
  }

  .atelier-cta__title {
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: 0;
  }

  .atelier-cta__desc {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .atelier-cta__buttons {
    gap: 8px;
  }

  .atelier-cta__btn {
    padding: 9px 12px;
    font-size: 11px;
    min-width: 100px;
    flex: 1;
  }

  .atelier-cta__btn span {
    display: none;
  }

  .atelier-cta__policy {
    font-size: 12px;
  }
}
