.page-contact {
  --contact-hero-glow: rgba(59, 123, 191, 0.35);
  --contact-card-gap: 20px;
  background: var(--bg-mist);
  color: var(--ink);
  overflow-x: clip;
  font-family: var(--font-body);
}

.page-contact .contact-hero {
  position: relative;
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-royal) 55%, var(--brand-glow) 100%);
  color: var(--white);
  padding: calc(var(--header-h) + 28px) 0 48px;
  overflow: hidden;
}

.page-contact .contact-hero__glow {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--contact-hero-glow), transparent 68%);
  pointer-events: none;
}

.page-contact .contact-hero__inner {
  position: relative;
  z-index: 1;
}

.page-contact .contact-hero__layout {
  display: grid;
  gap: 32px;
  margin-top: 40px;
}

.page-contact .contact-hero__copy {
  position: relative;
  z-index: 2;
}

.page-contact .contact-hero h1 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
}

.page-contact .contact-hero__lead {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
}

.page-contact .contact-hero__trust {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: var(--accent-gold);
}

.page-contact .contact-hero__art {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 220px;
}

.page-contact .contact-hero__img {
  width: min(100%, 300px);
  height: auto;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  background: var(--info-blue);
  object-fit: cover;
}

.page-contact .contact-hero__ring {
  position: absolute;
  right: -8px;
  top: -24px;
  width: 190px;
  height: 190px;
  z-index: 0;
}

.page-contact .contact-hero .section-label {
  color: var(--accent-gold);
}

.page-contact .contact-hero .section-label::before {
  background: var(--accent-gold);
}

.page-contact .site-crumbs {
  color: rgba(255, 255, 255, 0.72);
}

.page-contact .site-crumbs a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.page-contact .site-crumbs a:hover {
  color: var(--accent-gold);
}

.page-contact .contact-channels {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
}

.page-contact .contact-channels::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 120px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(245, 185, 66, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.page-contact .contact-section-head {
  margin-bottom: 40px;
  max-width: 720px;
}

.page-contact .contact-section-head h2 {
  font-family: var(--font-title);
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.15;
  margin: 10px 0 12px;
  color: var(--brand-deep);
}

.page-contact .contact-section-head__desc {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.page-contact .contact-channel-grid {
  position: relative;
  display: grid;
  gap: var(--contact-card-gap);
}

.page-contact .channel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: 3px solid var(--accent-gold);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-contact .channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(10, 46, 92, 0.16);
}

.page-contact .channel-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: var(--info-blue);
  color: var(--brand-deep);
  margin-bottom: 18px;
  overflow: hidden;
}

.page-contact .channel-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.page-contact .channel-card__icon-svg {
  width: 40px;
  height: 40px;
}

.page-contact .channel-card__label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.page-contact .channel-card__value {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-deep);
  text-decoration: none;
  word-break: break-word;
}

.page-contact a.channel-card__value:hover {
  color: var(--accent);
}

.page-contact .channel-card__value--text {
  font-size: 18px;
  line-height: 1.45;
}

.page-contact .channel-card__note {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.page-contact .address-map {
  position: relative;
  margin: 16px 0 8px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--info-blue), rgba(214, 228, 240, 0.5));
  color: var(--brand-deep);
  overflow: hidden;
}

.page-contact .address-map svg {
  display: block;
  width: 100%;
  height: auto;
}

.page-contact .address-map__label {
  position: absolute;
  left: 12px;
  bottom: 10px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-deep);
}

.page-contact .contact-support {
  position: relative;
  background: linear-gradient(145deg, var(--brand-deep) 0%, #1A3A66 60%, var(--brand-royal) 100%);
  color: var(--white);
  padding: 64px 0 40px;
  overflow: hidden;
}

.page-contact .contact-support::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(245, 185, 66, 0.25);
  border-radius: 50%;
}

.page-contact .contact-support__panel {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.page-contact .contact-support h2 {
  font-family: var(--font-title);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.2;
  margin: 10px 0 12px;
}

.page-contact .contact-support__lead {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.page-contact .section-label--light {
  color: var(--accent-gold);
}

.page-contact .section-label--light::before {
  background: var(--accent-gold);
}

.page-contact .support-facts {
  display: grid;
  gap: 16px;
  margin: 0;
}

.page-contact .support-fact {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.page-contact .support-fact dt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.page-contact .support-fact dd {
  margin: 0;
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-gold);
}

.page-contact .contact-support__trust {
  position: relative;
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.page-contact .contact-help-links {
  position: relative;
  padding: 64px 0 72px;
  overflow: hidden;
}

.page-contact .contact-help-links::after {
  content: "→";
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-size: 180px;
  font-weight: 800;
  line-height: 1;
  color: rgba(10, 46, 92, 0.06);
  pointer-events: none;
}

.page-contact .help-link-grid {
  position: relative;
  display: grid;
  gap: var(--contact-card-gap);
}

.page-contact .help-link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-contact .help-link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(10, 46, 92, 0.18);
}

.page-contact .help-link-card__no {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 18px;
  color: rgba(10, 46, 92, 0.14);
}

.page-contact .help-link-card--primary {
  background: var(--accent);
  color: var(--white);
}

.page-contact .help-link-card--primary .help-link-card__no {
  color: rgba(255, 255, 255, 0.35);
}

.page-contact .help-link-card h3 {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--brand-deep);
}

.page-contact .help-link-card--primary h3 {
  color: var(--white);
}

.page-contact .help-link-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.page-contact .help-link-card--primary p {
  color: rgba(255, 255, 255, 0.9);
}

.page-contact .help-link-card__go {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-contact .help-link-card__go::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

.page-contact .help-link-card:hover .help-link-card__go::after {
  transform: translateX(4px);
}

.page-contact .help-link-card--primary .help-link-card__go {
  color: var(--white);
}

.page-contact .contact-trust-line {
  margin-top: 32px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  border-top: 1px solid rgba(10, 46, 92, 0.12);
  padding-top: 24px;
}

@media (min-width: 768px) {
  .page-contact .contact-hero {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 64px;
  }

  .page-contact .contact-hero__layout {
    grid-template-columns: 7fr 5fr;
    align-items: center;
    gap: 40px;
  }

  .page-contact .contact-hero__art {
    min-height: auto;
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .page-contact .contact-channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-contact .channel-card--address {
    grid-column: span 2;
  }
}

@media (min-width: 900px) {
  .page-contact .contact-channels {
    padding: 80px 0 64px;
  }

  .page-contact .contact-channel-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .page-contact .channel-card--phone {
    grid-column: span 5;
  }

  .page-contact .channel-card--mail {
    grid-column: span 3;
  }

  .page-contact .channel-card--address {
    grid-column: span 4;
  }

  .page-contact .contact-support {
    padding: 80px 0 48px;
  }

  .page-contact .contact-support__panel {
    grid-template-columns: 7fr 5fr;
    gap: 40px;
    padding: 40px;
  }

  .page-contact .support-facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
  }

  .page-contact .contact-help-links {
    padding: 80px 0 88px;
  }

  .page-contact .help-link-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
