/* ── Кнопки ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 0;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition:
    box-shadow 200ms var(--ease-out),
    filter 200ms var(--ease-out),
    transform 160ms var(--ease-out);
}

/* Главное действие страницы — единственная сплошная медовая заливка. */
.btn--honey {
  background: var(--honey-grad);
  color: var(--on-honey);
  box-shadow: 0 10px 30px -12px rgba(255, 166, 0, 0.9);
}

@media (hover: hover) and (pointer: fine) {
  .btn--honey:hover {
    filter: brightness(1.05);
    box-shadow: 0 14px 36px -12px rgba(255, 166, 0, 1);
  }
}

.btn--glass {
  color: var(--ink-0);
  background: var(--glass-sheen), var(--glass-tint);
  border: 1px solid var(--glass-edge);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
}

@media (hover: hover) and (pointer: fine) {
  .btn--glass:hover {
    border-color: #fff;
    box-shadow: 0 8px 26px rgba(20, 24, 33, 0.18);
  }
}

/* Нажатие — мгновенная тактильная отдача. */
.btn:active {
  transform: scale(var(--press-scale));
}

/* ── Финальный блок ──────────────────────────────────────────────────── */
.cta {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: clamp(20px, 3.4vw, 56px);
}

.cta__box {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(40px, 7vw, 88px) clamp(24px, 5vw, 72px);
  text-align: center;
}

.cta__box::after {
  content: "";
  position: absolute;
  inset: auto 0 -60% 0;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(60% 100% at 50% 100%, rgba(255, 166, 0, 0.28), transparent 70%);
}

.cta__box>* {
  position: relative;
  z-index: 1;
}

.cta__when {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--honey-deep);
  margin: 0 0 18px;
}

.cta__title {
  font-size: clamp(30px, 4.4vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink-0);
  margin: 0;
  text-wrap: balance;
}

.cta__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--ink-1);
  max-width: 54ch;
  margin: 18px auto 0;
  text-wrap: pretty;
}

.cta__perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  list-style: none;
  max-width: 720px;
  margin: 32px auto 0;
  padding: 0;
  text-align: left;
}

.cta__perks li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-1);
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--hairline);
}

.cta__perks li::before {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: var(--r-pill);
  background: var(--honey-grad);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='m6 12.5 4 4 8-9' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 15px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='m6 12.5 4 4 8-9' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 15px no-repeat;
}

.cta__act {
  margin-top: 32px;
}

.cta__fine {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--ink-2);
}
