.contact-page {
  color: var(--ink);
  background: var(--blue-50);
}

.contact-header,
.checklist-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.checklist-header-inner,
.checklist-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.contact-hero {
  padding: 70px 0 60px;
  background:
    radial-gradient(circle at 82% 12%, rgba(22, 191, 122, 0.14), transparent 26%),
    linear-gradient(135deg, #fff 0%, #f3f9ff 100%);
}

.contact-intro {
  max-width: 850px;
  text-align: center;
}

.contact-intro h1 {
  color: var(--blue-900);
  font-size: clamp(35px, 5vw, 56px);
}

.contact-intro p:last-child {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
}

.contact-form-section {
  padding: 78px 0 88px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 44px;
  align-items: start;
}

.contact-guide {
  padding-top: 18px;
}

.contact-guide h2 {
  margin: 0;
  color: var(--blue-900);
}

.contact-guide > p:not(.section-label) {
  color: var(--muted);
}

.contact-guide-card {
  margin-top: 24px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green-600);
  border-radius: var(--radius);
}

.contact-guide-card strong {
  color: var(--blue-900);
}

.contact-guide-card ol {
  margin: 12px 0 0;
  padding-left: 22px;
  color: #314158;
}

.contact-form {
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label span small {
  color: var(--muted);
  font-size: 11px;
}

.contact-form textarea {
  resize: vertical;
}

.checklist-footer {
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.checklist-footer-inner {
  min-height: 64px;
  font-size: 13px;
}

.checklist-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.checklist-footer a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .checklist-header-inner {
    min-height: 64px;
  }

  .contact-header .brand {
    min-width: 0;
  }

  .contact-header .brand-logo {
    width: 38px;
    height: 38px;
  }

  .contact-header .brand strong {
    font-size: 15px;
  }

  .contact-header .brand small {
    display: none;
  }

  .contact-header .btn {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .contact-hero {
    padding: 50px 0 46px;
  }

  .contact-intro {
    text-align: left;
  }

  .contact-intro h1 {
    font-size: 34px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-form-section {
    padding: 54px 0 64px;
  }

  .checklist-footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 14px 0;
  }
}
