/* Блок контактов справа: иконки сверху, телефон снизу */
.header-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.header-messengers {
  display: flex;
  align-items: center;
  gap: 7px;
}

.msg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.msg-btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.msg-btn svg {
  display: block;
  width: 18px;
  height: 18px;
}

.msg-wa { background: #25d366; }
.msg-tg { background: #2aabee; }

.msg-max {
  background: #1a1a2e;
}
.msg-max svg {
  width: 20px;
  height: 20px;
}

/* Телефон под иконками */
.header-contacts .header-phone {
  font-weight: 600;
  color: var(--color-primary, #1a365d);
  font-size: 0.78rem;
  white-space: nowrap;
  letter-spacing: 0.01em;
  line-height: 1.2;
  transition: color 0.2s;
}

.header-contacts .header-phone:hover {
  color: var(--color-accent, #e67e22);
}

.footer-messengers {
  margin-top: 8px;
  font-size: 0.88rem;
}

.footer-messengers a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.footer-messengers a:hover {
  color: var(--color-accent, #e67e22);
}

/* Согласие 152-ФЗ */
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 8px;
  font-size: 0.85rem;
  color: var(--color-text-light, #718096);
  line-height: 1.45;
  cursor: pointer;
}

.consent-check input {
  margin-top: 3px;
  flex-shrink: 0;
  width: auto;
}

.consent-check a {
  color: var(--color-primary, #1a365d);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .header-contacts {
    order: 3;
  }
}

@media (max-width: 480px) {
  .msg-btn {
    width: 30px;
    height: 30px;
  }
  .msg-btn svg {
    width: 16px;
    height: 16px;
  }
  .msg-max svg {
    width: 18px;
    height: 18px;
  }
  .header-contacts .header-phone {
    font-size: 0.7rem;
  }
}
