/* /contacts/ - редизайн страницы контактов */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Onest:wght@400;500;600;700&display=swap");

.main--contacts-hub {
  margin-bottom: 0;
}

.main--contacts-hub .page-top {
  margin-bottom: 0;
}

.main--contacts-hub .breadcrumbs {
  margin-bottom: 0;
}

.contacts-hub {
  --ch-ink: #14161d;
  --ch-ink-70: #3d4250;
  --ch-ink-50: #6b7280;
  --ch-surface: #f3f5f8;
  --ch-line: #e4e8ee;
  --ch-accent: #15a05a;
  --ch-accent-700: #0f7d45;
  --ch-accent-50: #e9f6ef;
  --ch-navy: #0f1320;
  --ch-r: 16px;
  --ch-r-sm: 10px;
  --ch-font-display: "Manrope", sans-serif;
  --ch-font-body: "Onest", sans-serif;
  color: var(--ch-ink);
  font-family: var(--ch-font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.contacts-hub__hero {
  padding: 8px 0 12px;
  position: relative;
  overflow: hidden;
}

.contacts-hub__hero::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(21, 160, 90, 0.12) 0%, transparent 68%);
  pointer-events: none;
}

.contacts-hub__intro {
  max-width: 720px;
  position: relative;
}

.contacts-hub__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: var(--ch-accent-50);
  color: var(--ch-accent-700);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.contacts-hub__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ch-accent);
  box-shadow: 0 0 0 0 rgba(21, 160, 90, 0.5);
  animation: contacts-hub-pulse 2.2s infinite;
}

@keyframes contacts-hub-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 160, 90, 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(21, 160, 90, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(21, 160, 90, 0);
  }
}

.contacts-hub__title {
  font-family: var(--ch-font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.8vw, 50px);
  line-height: 1.06;
  letter-spacing: -1.4px;
  margin: 0 0 18px;
}

.contacts-hub__title em {
  font-style: normal;
  color: var(--ch-accent);
}

.contacts-hub__lead {
  color: var(--ch-ink-70);
  font-size: 17px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
}

.contacts-hub__block {
  padding: 36px 0 72px;
}

.contacts-hub__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.contacts-hub__methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contacts-hub__card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--ch-line);
  border-radius: var(--ch-r);
  padding: 20px 22px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.contacts-hub__card:hover {
  border-color: var(--ch-accent);
  box-shadow: 0 12px 30px rgba(21, 160, 90, 0.1);
  transform: translateY(-2px);
  color: inherit;
}

.contacts-hub__ic {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--ch-accent-50);
  color: var(--ch-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contacts-hub__ic svg {
  width: 24px;
  height: 24px;
}

.contacts-hub__card-label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ch-ink-50);
  margin-bottom: 3px;
}

.contacts-hub__card-val {
  font-family: var(--ch-font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
  color: var(--ch-ink);
}

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

.contacts-hub__card-sub {
  font-size: 13px;
  color: var(--ch-ink-50);
  margin-top: 2px;
}

.contacts-hub__info {
  background: var(--ch-navy);
  border-radius: var(--ch-r);
  padding: 26px;
  margin-top: 4px;
}

.contacts-hub__info h3 {
  font-family: var(--ch-font-display);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contacts-hub__info-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(21, 160, 90, 0.2);
  color: #4fd18a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts-hub__info-icon svg {
  width: 18px;
  height: 18px;
}

.contacts-hub__info p {
  color: #9aa3b6;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.contacts-hub__hours {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13.5px;
  color: #cdd3df;
}

.contacts-hub__hours b {
  color: #fff;
  font-weight: 700;
}

.contacts-hub__details {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contacts-hub__details-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9aa3b6;
  margin-bottom: 10px;
}

.contacts-hub__details .contacts-details__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contacts-hub__details .contacts-details__item {
  font-size: 13px;
  color: #cdd3df;
  line-height: 1.45;
}

.contacts-hub__details .contacts-details__item.hidden {
  display: none;
}

.contacts-hub__about {
  background: #fff;
  border: 1px solid var(--ch-line);
  border-radius: var(--ch-r);
  padding: 20px 22px;
  margin-top: 14px;
}

.contacts-hub__about-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ch-ink-70);
}

.contacts-hub__about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ch-accent-700);
  text-decoration: none;
  transition: color 0.2s;
}

.contacts-hub__about-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.contacts-hub__about-link:hover {
  color: var(--ch-accent);
}

.contacts-hub__form-wrap img[alt="Карта"] {
  margin-top: 20px;
  border-radius: var(--ch-r);
  width: 100%;
  height: auto;
  display: block;
}

.contacts-hub__card-val .contacts-box__link {
  color: inherit;
  text-decoration: none;
  font-family: var(--ch-font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
}

.contacts-hub__details-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contacts-hub__details-list li {
  font-size: 13px;
  color: #cdd3df;
  line-height: 1.45;
}

.contacts-hub__form-wrap {
  background: #fff;
  border: 1px solid var(--ch-line);
  border-radius: var(--ch-r);
  padding: 30px;
  box-shadow: 0 24px 60px rgba(20, 22, 29, 0.08);
}

.contacts-hub__form-wrap .callback-form {
  margin: 0;
}

.contacts-hub__form-wrap .callback-form__header {
  margin-bottom: 6px;
}

.contacts-hub__form-wrap .callback-form__title {
  font-family: var(--ch-font-display);
  font-size: clamp(22px, 3.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0 0 6px;
  color: var(--ch-ink);
}

.contacts-hub__form-wrap .callback-form__service {
  font-size: 13px;
  font-weight: 600;
  color: var(--ch-accent-700);
  background: var(--ch-accent-50);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  margin: 0 0 10px;
}

.contacts-hub__form-sub {
  color: var(--ch-ink-70);
  font-size: 14.5px;
  margin: 0 0 24px;
}

.contacts-hub__form-wrap .callback-form__item-input,
.contacts-hub__form-wrap .callback-form__item-textarea {
  width: 100%;
  font-family: var(--ch-font-body);
  font-size: 15px;
  color: var(--ch-ink);
  background: var(--ch-surface);
  border: 1px solid var(--ch-line);
  border-radius: var(--ch-r-sm);
  padding: 13px 15px;
  transition: border-color 0.18s, background 0.18s;
}

.contacts-hub__form-wrap .callback-form__item-input:focus,
.contacts-hub__form-wrap .callback-form__item-textarea:focus {
  outline: none;
  border-color: var(--ch-accent);
  background: #fff;
}

.contacts-hub__form-wrap .callback-form__item-textarea {
  resize: vertical;
  min-height: 96px;
}

.contacts-hub__form-wrap .callback-form__contact-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ch-ink-70);
  margin-bottom: 7px;
}

.contacts-hub__form-wrap .callback-form__contact-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.contacts-hub__form-wrap .callback-form__contact-item {
  flex: 1;
  min-width: 90px;
  margin: 0;
  padding: 11px;
  border: 1px solid var(--ch-line);
  border-radius: var(--ch-r-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ch-ink-70);
  background: var(--ch-surface);
  transition: all 0.18s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.contacts-hub__form-wrap .callback-form__contact-item.active {
  border-color: var(--ch-accent);
  background: var(--ch-accent-50);
  color: var(--ch-accent-700);
}

.contacts-hub__form-wrap .callback-form__contact-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contacts-hub__form-wrap .callback-form__submit {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  background: var(--ch-accent);
  border: none;
  border-radius: var(--ch-r-sm);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.contacts-hub__form-wrap .callback-form__submit:hover {
  background: var(--ch-accent-700);
}

.contacts-hub__form-wrap .callback-form__check-desc {
  font-size: 12.5px;
  color: var(--ch-ink-50);
  line-height: 1.5;
}

.contacts-hub__map {
  margin-top: 20px;
  border-radius: var(--ch-r);
  overflow: hidden;
  display: block;
  width: 100%;
  height: auto;
}

.contacts-hub__cta {
  --ch-navy: #0f1320;
  --ch-r-sm: 10px;
  background: #0f1320;
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  margin: 0;
}

.contacts-hub__cta::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(21, 160, 90, 0.4) 0%, transparent 65%);
  pointer-events: none;
}

.contacts-hub__cta .container {
  text-align: center;
  position: relative;
}

.contacts-hub__cta-title {
  font-family: var(--ch-font-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.9px;
  margin: 0 0 12px;
  color: #fff;
  position: relative;
}

.contacts-hub__cta-text {
  color: #9aa3b6;
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
  position: relative;
}

.contacts-hub__cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.contacts-hub__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--ch-r-sm);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.contacts-hub__btn--white {
  background: #fff;
  color: var(--ch-ink);
}

.contacts-hub__btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  color: var(--ch-ink);
}

.contacts-hub__btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.contacts-hub__btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

@media (min-width: 880px) {
  .contacts-hub__layout {
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .contacts-hub__block {
    padding-bottom: 48px;
  }

  .contacts-hub__form-wrap {
    padding: 22px 18px;
  }
}
