/* Contact — /contact */

.ct-support {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 22px;
  padding: 28px 28px 26px;
  border-radius: 18px;
  border: 1px solid var(--hc-line);
  background: #fff;
}

.ct-support-copy h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 800;
}

.ct-support-copy > p {
  margin: 0 0 20px;
  color: var(--hc-muted);
  line-height: 1.65;
}

.ct-support-visual {
  margin: 0;
  display: flex;
  justify-content: center;
}

.ct-support-visual img {
  width: min(100%, 300px);
  height: auto;
}

.ct-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 1.15rem;
}

.ct-icon--sm {
  width: 42px;
  height: 42px;
  margin-bottom: 0;
  flex-shrink: 0;
  font-size: 1rem;
}

.ct-channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.ct-channels li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ct-channels i {
  margin-top: 3px;
  color: #2563eb;
  width: 1.1em;
  text-align: center;
}

.ct-channels strong {
  display: block;
  font-size: 0.98rem;
  color: var(--hc-ink);
}

.ct-channels span {
  display: block;
  margin-top: 2px;
  font-size: 0.88rem;
  color: var(--hc-muted);
}

.ct-callback {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 22px 24px;
  border-radius: 16px;
  border: 1.5px dashed rgba(37, 99, 235, 0.35);
  background: #f8fafc;
}

.ct-callback-copy {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 44rem;
}

.ct-callback h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 800;
}

.ct-callback p {
  margin: 0;
  color: var(--hc-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.ct-dual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ct-dual article {
  padding: 24px 22px;
  border-radius: 16px;
  border: 1px solid var(--hc-line);
  background: #fff;
}

.ct-dual h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 800;
}

.ct-dual p {
  margin: 0;
  color: var(--hc-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.ct-hint {
  margin-top: 14px !important;
  padding: 12px 14px;
  border-radius: 10px;
  background: #eff6ff;
  color: #1e40af !important;
  font-size: 0.9rem !important;
}

.ct-address {
  color: var(--hc-ink) !important;
}

.ct-address strong {
  color: var(--hc-ink);
}

.ct-partners {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.ct-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--hc-line);
  background: #fff;
}

.ct-partner img {
  max-width: 100%;
  max-height: 34px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.8;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.ct-partner:hover img {
  filter: none;
  opacity: 1;
}

@media (max-width: 900px) {
  .ct-support,
  .ct-dual {
    grid-template-columns: 1fr;
  }

  .ct-support-visual {
    order: -1;
  }

  .ct-partners {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .ct-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
