.contacts-page {
  background: linear-gradient(180deg, #eef4fc 0%, #f8fafc 28%, #fff 100%);
}

.contacts-page-hero {
  padding: 2rem 0 3rem;
}

.contacts-page-hero__title {
  font-size: clamp(3.2rem, 4vw, 4.8rem);
  font-weight: 600;
  color: #082d7c;
  margin: 0 0 1rem;
}

.contacts-page-hero__text {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #444651;
  margin: 0;
  max-width: 60rem;
}

.contacts-cards {
  padding: 2rem 0 4rem;
}

.contacts-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 900px) {
  .contacts-cards__grid {
    grid-template-columns: 1fr;
  }
}

.contacts-card {
  padding: 2.4rem;
  border-radius: 1.6rem;
  background: #fff;
  border: 0.1rem solid #ced9f2;
  min-height: 14rem;
  display: flex;
  flex-direction: column;
}

.contacts-card__label {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #54b7eb;
  margin: 0 0 0.8rem;
}

.contacts-card__value {
  font-size: 1.8rem;
  font-weight: 600;
  color: #082d7c;
  margin: 0;
  line-height: 1.4;
}

.contacts-card__value a {
  color: inherit;
  text-decoration: none;
}

.contacts-card__value a:hover {
  text-decoration: underline;
}

.contacts-card__hint {
  display: block;
  margin-top: 0.6rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #666;
}

.contacts-card__messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.contacts-messenger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  border: 0.2rem solid #082d7c;
  transition: background 0.2s ease, color 0.2s ease;
}

.contacts-messenger--wa {
  color: #082d7c;
  background: #fff;
}

.contacts-messenger--wa:hover {
  background: #eef4fc;
}

.contacts-messenger--tg {
  color: #fff;
  background: #082d7c;
  border-color: #082d7c;
}

.contacts-messenger--tg:hover {
  background: #0a3d9e;
}

.contacts-hours {
  padding: 0 0 2rem;
  font-size: 1.5rem;
  color: #444;
}

.contacts-hours strong {
  color: #082d7c;
}
