/* ═══ Контакты ═══ */

/* Секция после hero-заливки не должна прилипать к его нижнему краю
   (.section даёт только margin-bottom, без padding-top). */
body[data-page="contacts"] .section {
  padding-top: var(--section-y);
}

/* ── hero ── */
.contacts-hero {
  padding: 152px 0 64px;
  background: var(--brand-gradient-hero, linear-gradient(180deg, rgb(62,180,240) 0%, rgb(102,89,220) 57%, rgb(116,66,200) 100%));
  color: #fff;
}
.contacts-hero .eyebrow { color: rgba(255,255,255,0.82); }
.contacts-hero .lead { color: rgba(255,255,255,0.9); max-width: 620px; }

/* ─────────────────────────────────────────────
   КАРТОЧКИ КОНТАКТОВ
   ───────────────────────────────────────────── */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 30px 30px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgb(236, 232, 248);
  box-shadow: 0 12px 40px rgba(58, 31, 185, 0.08);
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgb(240, 236, 252);
  color: rgb(116, 66, 200);
}
.contact-card__icon svg { display: block; }

.contact-card__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgb(120, 114, 138);
}
.contact-card__value {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: rgb(24, 20, 38);
  text-decoration: none;
}
a.contact-card__value:hover { color: rgb(116, 66, 200); }

.contact-card__note {
  font-size: 15px;
  line-height: 1.5;
  color: rgb(120, 114, 138);
}
.contact-card__link {
  margin-top: 2px;
  font-size: 15px;
  font-weight: 600;
  color: rgb(116, 66, 200);
  text-decoration: none;
}
.contact-card__link:hover { text-decoration: underline; }

/* ─────────────────────────────────────────────
   РЕКВИЗИТЫ
   ───────────────────────────────────────────── */
.contacts-legal {
  margin-top: 28px;
  padding: 28px 32px;
  border-radius: 24px;
  background: rgb(245, 242, 253);
  border: 1px solid rgb(236, 232, 248);
}
.contacts-legal h2 {
  font-size: 20px;
  margin: 0 0 16px;
  color: rgb(24, 20, 38);
}
.contacts-legal__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px 32px;
  margin: 0;
}
.contacts-legal__list div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contacts-legal__list dt {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgb(120, 114, 138);
}
.contacts-legal__list dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgb(38, 34, 54);
}

/* ── адаптив ── */
@media (max-width: 768px) {
  .contacts-hero { padding: 120px 0 52px; }
  .contacts-grid { grid-template-columns: 1fr; gap: 18px; }
  .contact-card { padding: 24px 22px 26px; }
  .contact-card__value { font-size: 20px; }
  .contacts-legal { padding: 24px 22px; }
}
