.page-contact {
  background: #14213D;
  color: #FFFFFF;
}

.page-contact .contact-hero {
  position: relative;
  overflow: hidden;
  padding-top: 32px;
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 210, 106, 0.16), transparent 32%),
    radial-gradient(circle at 14% 80%, rgba(255, 110, 0, 0.13), transparent 28%),
    linear-gradient(130deg, #0B0E14 0%, #14213D 55%, #1A2B4C 100%);
}

.page-contact .contact-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(11, 14, 20, 0.78));
  pointer-events: none;
  z-index: 0;
}

.page-contact .contact-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 20%;
  width: 420px;
  height: 140px;
  background: rgba(255, 110, 0, 0.12);
  transform: skewX(-18deg) rotate(-8deg);
  pointer-events: none;
}

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

.page-contact .contact-hero .speed-lines {
  opacity: 0.5;
}

.page-contact .contact-hero .breadcrumb {
  margin-bottom: 44px;
}

.page-contact .contact-hero-grid {
  display: grid;
  gap: 36px;
  padding-bottom: 76px;
}

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

.page-contact .contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #FFD500;
}

.page-contact .contact-eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: #FF6E00;
  transform: skewX(-20deg);
}

.page-contact .contact-hero h1 {
  margin: 16px 0 20px;
  font-family: "Archivo Black", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(30px, 6vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  transform: skewX(-3deg);
  color: #FFFFFF;
}

.page-contact .contact-hero-lead {
  max-width: 660px;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.page-contact .contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.page-contact .contact-hero-panel {
  padding: 26px;
  background: rgba(11, 14, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.page-contact .panel-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-contact .panel-signal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.page-contact .panel-signal svg {
  color: #00D26A;
}

.page-contact .contact-hero-status {
  display: grid;
  gap: 4px;
}

.page-contact .contact-hero-status .status-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-contact .contact-hero-status .status-item:last-child {
  border-bottom: none;
}

.page-contact .contact-hero-status .status-dot {
  margin-top: 6px;
  flex-shrink: 0;
}

.page-contact .status-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-contact .status-inner strong {
  font-size: 14px;
  color: #FFFFFF;
}

.page-contact .status-inner span {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.66);
}

.page-contact .contact-channels {
  position: relative;
  background: #14213D;
}

.page-contact .contact-channels::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00D26A, #FF6E00);
  opacity: 0.7;
}

.page-contact .contact-channels .section-header,
.page-contact .contact-hours .section-header,
.page-contact .contact-cooperation .section-header,
.page-contact .contact-location .section-header {
  margin-bottom: 40px;
}

.page-contact .channels-layout {
  display: grid;
  gap: 28px;
}

.page-contact .channel-stack {
  display: grid;
  gap: 18px;
}

.page-contact .channel-card {
  --channel-accent: #00D26A;
  position: relative;
  padding: 26px 28px 24px;
  background: rgba(11, 14, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.page-contact .channel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--channel-accent);
}

.page-contact .channel-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(11, 14, 20, 0.74);
}

.page-contact .channel-card--mail {
  --channel-accent: #FFD500;
}

.page-contact .channel-card--phone {
  --channel-accent: #FF6E00;
}

.page-contact .channel-card--address {
  --channel-accent: #00D26A;
}

.page-contact .channel-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.page-contact .channel-card--mail .channel-icon {
  color: #FFD500;
}

.page-contact .channel-card--phone .channel-icon {
  color: #FF6E00;
}

.page-contact .channel-card--address .channel-icon {
  color: #00D26A;
}

.page-contact .channel-card h3 {
  margin: 0 0 6px;
  font-family: "Archivo Black", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 20px;
  letter-spacing: 0.01em;
}

.page-contact .channel-desc {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.page-contact .channel-value {
  display: block;
  padding: 10px 12px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.45;
  word-break: break-all;
  color: #00D26A;
  background: rgba(0, 210, 106, 0.08);
  border-left: 2px solid rgba(0, 210, 106, 0.55);
  border-radius: 0 8px 8px 0;
  text-decoration: none;
}

.page-contact .channel-card--phone .channel-value {
  color: #FF6E00;
  background: rgba(255, 110, 0, 0.08);
  border-left-color: rgba(255, 110, 0, 0.55);
}

.page-contact .channel-card--address .channel-value--plain {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  border-left-color: rgba(0, 210, 106, 0.6);
  user-select: all;
  cursor: text;
}

.page-contact .channel-value:hover {
  background: rgba(0, 210, 106, 0.16);
}

.page-contact .channel-card--phone .channel-value:hover {
  background: rgba(255, 110, 0, 0.16);
}

.page-contact .channel-note {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
}

.page-contact .channel-visual {
  display: grid;
  gap: 18px;
  align-content: start;
}

.page-contact .channel-visual-image {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.page-contact .channel-visual-image img {
  display: block;
  width: 100%;
  height: auto;
}

.page-contact .channel-stat {
  padding: 24px 28px;
  background: #0B0E14;
  border: 1px solid rgba(0, 210, 106, 0.4);
}

.page-contact .channel-stat .stat-number {
  display: block;
  font-family: "Archivo Black", "Noto Sans SC", sans-serif;
  font-size: 44px;
  line-height: 1;
  color: #00D26A;
}

.page-contact .channel-stat .stat-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #FFFFFF;
}

.page-contact .channel-stat-note {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.page-contact .contact-hours,
.page-contact .contact-cooperation,
.page-contact .contact-location {
  position: relative;
}

.page-contact .contact-hours::before,
.page-contact .contact-cooperation::before,
.page-contact .contact-location::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FFD500, #FF6E00 50%, #00D26A);
  opacity: 0.7;
}

.page-contact .contact-hours {
  color: #FFFFFF;
}

.page-contact .contact-hours .section-title,
.page-contact .contact-cooperation .section-title,
.page-contact .contact-location .section-title {
  color: #FFFFFF;
}

.page-contact .contact-hours .section-subtitle,
.page-contact .contact-cooperation .section-subtitle,
.page-contact .contact-location .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.page-contact .hours-console {
  display: grid;
  gap: 0;
  background: rgba(11, 14, 20, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-contact .hours-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-contact .hours-row:last-child {
  border-bottom: none;
}

.page-contact .hours-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.page-contact .hours-value {
  font-family: "Archivo Black", "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: 20px;
  line-height: 1.3;
  color: #FFFFFF;
}

.page-contact .hours-footnote {
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

.page-contact .hours-footnote a,
.page-contact .cooperation-meta a {
  color: #00D26A;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-contact .contact-cooperation {
  color: #FFFFFF;
}

.page-contact .cooperation-layout {
  display: grid;
  gap: 28px;
}

.page-contact .cooperation-copy {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.page-contact .cooperation-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.page-contact .cooperation-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.page-contact .cooperation-panel {
  padding: 30px;
  background: rgba(11, 14, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.page-contact .cooperation-list {
  margin-top: 18px;
  gap: 6px;
}

.page-contact .cooperation-list .status-item {
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-contact .cooperation-list .status-item:last-child {
  border-bottom: none;
}

.page-contact .contact-location {
  color: #FFFFFF;
}

.page-contact .map-layout {
  display: grid;
  gap: 28px;
}

.page-contact .map-visual {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  aspect-ratio: 2 / 1;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0B0E14;
}

.page-contact .map-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-contact .map-visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-contact .map-overlay-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-contact .map-svg-grid-line {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1;
}

.page-contact .map-svg-river {
  fill: none;
  stroke: rgba(122, 192, 216, 0.5);
  stroke-width: 9;
  stroke-linecap: round;
}

.page-contact .map-svg-road {
  fill: none;
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 2.5;
}

.page-contact .map-svg-road--main {
  stroke: rgba(255, 213, 0, 0.28);
  stroke-width: 4;
}

.page-contact .map-svg-pin-halo {
  fill: rgba(255, 110, 0, 0.14);
  stroke: rgba(255, 110, 0, 0.4);
  stroke-width: 1.5;
}

.page-contact .map-svg-pin-pulse {
  fill: #0B0E14;
  stroke: rgba(255, 110, 0, 0.7);
  stroke-width: 2.5;
}

.page-contact .map-svg-pin-core {
  fill: #00D26A;
  stroke: #FFFFFF;
  stroke-width: 1.5;
}

.page-contact .map-svg-label-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 2;
  stroke-dasharray: 4 7;
}

.page-contact .map-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  background: rgba(11, 14, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
}

.page-contact .map-address-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  padding: 30px 28px;
  background: rgba(11, 14, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.page-contact .map-address-value {
  font-family: "Archivo Black", "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  user-select: all;
}

.page-contact .map-copy-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.page-contact .map-copy-hint::before {
  content: "";
  width: 16px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
}

.page-contact .map-address-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.64);
}

.page-contact .map-address-card .link-arrow {
  color: #FFD500;
}

@media (min-width: 700px) {
  .page-contact .hours-console {
    grid-template-columns: 1fr 1fr;
  }

  .page-contact .hours-row:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .page-contact .hours-row:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (min-width: 900px) {
  .page-contact .contact-hero {
    padding-top: 44px;
  }

  .page-contact .contact-hero-grid {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 56px;
    align-items: center;
    padding-bottom: 110px;
  }

  .page-contact .contact-hero h1 {
    font-size: 56px;
  }

  .page-contact .contact-hero-lead {
    font-size: 17px;
  }

  .page-contact .channels-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: start;
  }

  .page-contact .channel-stack {
    gap: 20px;
  }

  .page-contact .cooperation-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
  }

  .page-contact .map-layout {
    grid-template-columns: 1.55fr 0.85fr;
    gap: 32px;
    align-items: stretch;
  }

  .page-contact .map-address-value {
    font-size: 28px;
  }
}
