.hc {
  background: var(--v-paper);
  color: var(--v-ink);
  padding: 1.5rem 0 3rem;
}

.hc__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hc-hero {
  background: var(--v-white);
  border-radius: 16px;
  padding: 2rem 1.25rem;
  text-align: center;
  border: 1px solid var(--v-line);
}

.hc-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--v-ink);
}

.hc-hero p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--v-ink-600);
  max-width: 42rem;
  margin-inline: auto;
}

.hc-faqs h2 {
  text-align: center;
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.hc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.hc-tab {
  border: 1px solid var(--v-line);
  background: var(--v-white);
  color: var(--v-ink-700);
  border-radius: 8px;
  padding: 0.5rem 0.85rem;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.hc-tab--active {
  background: var(--v-teal);
  border-color: var(--v-teal);
  color: #fff;
}

.hc-faq {
  background: var(--v-white);
  border: 1px solid var(--v-line);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 0.65rem;
}

.hc-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: var(--v-ink);
}

.hc-faq__chev {
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid var(--v-ink-500);
  border-bottom: 2px solid var(--v-ink-500);
  transform: rotate(45deg);
  transition: transform 0.15s ease;
  flex-shrink: 0;
}

.hc-faq--open .hc-faq__chev {
  transform: rotate(-135deg);
}

.hc-faq__a {
  padding: 0 1.1rem 1rem;
  color: var(--v-ink-600);
  line-height: 1.6;
}

.hc-contact-card {
  background: var(--v-white);
  border: 1px solid var(--v-line);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}

.hc-contact-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.hc-contact-card p {
  margin: 0 0 1rem;
  color: var(--v-ink-600);
}

.hc-btn {
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 0.7rem 1.25rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.hc-btn--primary {
  background: var(--v-teal);
  color: #fff;
  border-color: var(--v-teal);
}

.hc-btn--primary:disabled {
  opacity: 0.6;
  cursor: wait;
}

.hc-btn--ghost {
  background: var(--v-paper);
  color: var(--v-ink-700);
  border-color: var(--v-line);
}

.hc-dialog {
  border: 0;
  padding: 0;
  background: transparent;
  width: min(44rem, calc(100vw - 2rem));
  max-width: min(44rem, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  overflow: visible;
}

.hc-dialog[open] {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.hc-dialog::backdrop {
  background: rgba(0, 0, 0, 0.55);
}

.hc-dialog__panel {
  margin: 0;
  background: var(--v-white);
  color: var(--v-ink);
  border-radius: 14px;
  padding: 1.25rem;
  width: 100%;
  box-sizing: border-box;
}

.hc-dialog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--v-line);
}

.hc-dialog__head h2 {
  margin: 0;
  font-size: 1.2rem;
}

.hc-dialog__close {
  border: 0;
  background: var(--v-paper);
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.hc-form-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

@media (min-width: 720px) {
  .hc-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hc-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.hc-field--full {
  margin-top: 0.85rem;
}

.hc-field input,
.hc-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--v-line);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: var(--v-white);
  color: var(--v-ink);
}

.hc-field input:focus,
.hc-field textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--v-teal) 35%, transparent);
  border-color: var(--v-teal);
}

.hc-field input:-webkit-autofill,
.hc-field textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--v-white) inset;
  -webkit-text-fill-color: var(--v-ink);
}

.hc-field--error input,
.hc-field--error textarea {
  border-color: #c0392b;
}

.hc-field__error {
  color: #c0392b;
  font-size: 0.8rem;
}

.hc-form-note {
  margin: 0.85rem 0 0;
  color: var(--v-ink-600);
  font-size: 0.9rem;
}

.hc-form-status {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.hc-form-status--err {
  color: #c0392b;
}

.hc-dialog__foot {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 1rem;
}

.hc-toast {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.hc-toast[hidden] {
  display: none;
}

.hc-toast__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(15, 23, 28, 0.52);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.hc-toast__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  margin: 0;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--v-white);
  color: var(--v-ink);
  border: 1px solid var(--v-line);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.hc-toast__title {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--v-ink);
}

.hc-toast__desc {
  margin: 0;
  color: var(--v-ink-600);
  font-size: 1rem;
  line-height: 1.55;
}

.hc-toast__dismiss {
  width: 100%;
  margin-top: 1.35rem;
  min-height: 2.75rem;
}
