.contact-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 140px);
  padding: 80px 0 60px;
}

.contact-hero {
  text-align: center;
  max-width: 600px;
}

.contact-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(45, 208, 95, 0.12), rgba(22, 187, 72, 0.10));
  color: #16a63c;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.contact-hero h1 {
  margin: 32px 0 0;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.contact-hero p {
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.52;
  letter-spacing: -0.02em;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 780px;
  margin-top: 56px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 28px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow:
    0 1px 2px rgba(10, 20, 8, 0.04),
    0 12px 32px rgba(10, 20, 8, 0.06);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 2px rgba(10, 20, 8, 0.04),
    0 20px 48px rgba(10, 20, 8, 0.10);
  border-color: rgba(45, 208, 95, 0.3);
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 16px;
  background: linear-gradient(180deg, #dbf5d5 0%, #d5f0ce 100%);
}

.contact-card-icon img {
  width: 24px;
  height: 24px;
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.contact-card-body strong {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.contact-card-value {
  font-size: clamp(0.98rem, 1.8vw, 1.18rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  overflow-wrap: break-word;
}

.contact-card-hint {
  margin-top: 4px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

.contact-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: rgba(237, 246, 178, 0.5);
  margin-top: 6px;
  transition: background 200ms ease;
}

.contact-card:hover .contact-card-arrow {
  background: var(--accent-soft);
}

.contact-card-arrow img {
  width: 18px;
  height: 18px;
}

.contact-footer-note {
  margin-top: 48px;
  text-align: center;
}

.contact-footer-note p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

@media (max-width: 760px) {
  .contact-page {
    justify-content: center;
    min-height: calc(100dvh - 100px);
    padding: 24px 0 20px;
  }

  .contact-badge {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .contact-hero h1 {
    margin-top: 20px;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .contact-hero p {
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .contact-card {
    gap: 14px;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .contact-card-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
  }

  .contact-card-icon img {
    width: 20px;
    height: 20px;
  }

  .contact-card-body strong {
    font-size: 0.74rem;
  }

  .contact-card-value {
    font-size: 0.95rem;
  }

  .contact-card-hint {
    font-size: 0.8rem;
    margin-top: 2px;
  }

  .contact-card-arrow {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    margin-top: 4px;
  }

  .contact-card-arrow img {
    width: 15px;
    height: 15px;
  }

  .contact-footer-note {
    margin-top: 24px;
  }

  .contact-footer-note p {
    font-size: 0.82rem;
  }
}
