.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: var(--slate); max-width: 480px; line-height: 1.65; }

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

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 32px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.info-item:last-child { border-bottom: none; }

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--under-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon i { font-size: 20px; color: var(--under); }

.info-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--slate);
  margin-bottom: 3px;
}
.info-value { font-size: 15px; color: var(--ink); }

textarea.hs-form-input { resize: vertical; min-height: 120px; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 13px 20px;
  background: var(--action);
  color: #fff;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity .15s;
  margin-top: 4px;
}
.btn-submit:hover { opacity: .87; }

.success-msg {
  display: none;
  background: var(--under-bg);
  color: var(--under);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  align-items: center;
  gap: 8px;
}
.success-msg.show { display: flex; }

@media (max-width: 767px) {
  .contact-section { padding: 40px 0; }
  .contact-card { padding: 24px 20px; }
}
