/* ── Contact hero ── */
.contact-hero {
  padding: 80px var(--site-padding) 72px;
  text-align: center;
}

.contact-hero__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #0d1b2e;
  line-height: 1.25;
  max-width: 780px;
  margin: 0 auto;
}

.contact-hero__title--grad {
  background: linear-gradient(to right, #5BC4F5, #7B5CF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Contact info cards ── */
.contact-info {
  padding: 0 var(--site-padding) 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-info__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 36px;
  border: 1px solid #eef0f6;
  border-radius: 16px;
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
}

.contact-info__card:hover {
  box-shadow: 0 12px 40px rgba(91, 196, 245, 0.12);
  transform: translateY(-4px);
}

.contact-info__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(91,196,245,0.12), rgba(123,92,245,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(71%) sepia(57%) saturate(600%) hue-rotate(163deg) brightness(102%) contrast(95%);
}

.contact-info__label {
  font-size: 18px;
  font-weight: 700;
  color: #0d1b2e;
}

.contact-info__text {
  font-size: 15px;
  color: #777;
  line-height: 1.8;
}

.contact-info__link {
  color: #5BC4F5;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-info__link:hover {
  color: #7B5CF5;
}

@media (max-width: 900px) {
  .contact-info {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}
