/* HikerWolf — Lead form styles */
.hw-wrap {
  --hw-navy: #940060;
  --hw-navy-2: #6e0049;
  --hw-lime: #ffffff;
  --hw-lime-2: #f4e3ee;
  --hw-ink: #1a1f2b;
  --hw-muted: #6b7280;
  --hw-line: #e6e9ec;
  --hw-red: #dc2626;
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  padding: 34px 30px 30px;
  box-shadow: 0 24px 60px -20px rgba(11,30,57,.25);
  border: 1px solid var(--hw-line);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  box-sizing: border-box;
}
.hw-wrap * { box-sizing: border-box; }

.hw-eyebrow {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--hw-navy); font-weight: 700; opacity: .55; margin-bottom: 8px;
}
.hw-title {
  font-size: 26px; line-height: 1.28; color: var(--hw-navy); font-weight: 800; margin: 0 0 14px;
}
.hw-title em { font-style: italic; color: #4a5a72; font-weight: 600; }
.hw-accent { width: 46px; height: 4px; background: var(--hw-navy); border-radius: 4px; margin-bottom: 22px; }

.hw-fq { margin-bottom: 18px; }
.hw-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.hw-pair .hw-fq { margin-bottom: 0; }
@media (max-width: 480px) { .hw-pair { grid-template-columns: 1fr; } }

.hw-label { display: block; font-size: 13px; font-weight: 600; color: var(--hw-ink); margin-bottom: 7px; }
.hw-optional { font-weight: 400; color: var(--hw-muted); font-size: 12px; }
.hw-hint { font-size: 11.5px; color: var(--hw-muted); margin: -4px 0 8px; }

.hw-wrap input[type="text"],
.hw-wrap input[type="email"],
.hw-wrap input[type="tel"],
.hw-wrap input[type="number"],
.hw-select {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--hw-line);
  font-size: 14.5px; color: var(--hw-ink); background: #fafbfb; outline: none;
  transition: border-color .15s, background .15s;
  font-family: inherit; appearance: none;
}
.hw-wrap select.hw-select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.6' fill='none' fill-rule='evenodd'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px;
}
.hw-wrap input:focus, .hw-select:focus { border-color: var(--hw-navy); background: #fff; }
.hw-wrap input.hw-err { border-color: var(--hw-red); background: #fff5f5; }

.hw-static-pill {
  display: inline-block; padding: 10px 16px; background: var(--hw-navy); color: var(--hw-lime);
  border-radius: 10px; font-weight: 700; font-size: 14px;
}

.hw-phone-row { display: flex; align-items: center; border: 1.5px solid var(--hw-line); border-radius: 10px; background: #fafbfb; overflow: hidden; }
.hw-phone-flag { padding: 12px 12px; font-size: 13.5px; color: var(--hw-muted); border-right: 1px solid var(--hw-line); white-space: nowrap; }
.hw-phone-row input { border: none !important; background: transparent !important; border-radius: 0 !important; }

.hw-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.hw-opt {
  padding: 9px 15px; border-radius: 999px; border: 1.5px solid var(--hw-line); background: #fafbfb;
  font-size: 13px; color: var(--hw-ink); cursor: pointer; user-select: none; transition: all .12s;
}
.hw-opt:hover { border-color: #b9c0c8; }
.hw-opt.sel { background: var(--hw-navy); border-color: var(--hw-navy); color: var(--hw-lime); font-weight: 600; }
.hw-opt-yes.sel { background: #16a34a; border-color: #16a34a; color: #fff; }
.hw-opt-no.sel { background: #6b7280; border-color: #6b7280; color: #fff; }

.hw-error { color: var(--hw-red); font-size: 12.5px; min-height: 16px; margin: 4px 0 10px; }

.hw-submit {
  width: 100%; padding: 15px; border-radius: 12px; border: none; background: var(--hw-navy);
  color: #fff; font-size: 15px; font-weight: 800; letter-spacing: .01em; cursor: pointer;
  transition: transform .1s, background .15s;
}
.hw-submit:hover { background: var(--hw-navy-2); }
.hw-submit:active { transform: scale(.98); }
.hw-submit:disabled { opacity: .6; cursor: default; }

.hw-foot { text-align: center; font-size: 11.5px; color: var(--hw-muted); margin-top: 14px; line-height: 1.6; }

.hw-success { text-align: center; padding: 30px 10px; }
.hw-success-icon { font-size: 40px; margin-bottom: 10px; }
.hw-success-title { font-size: 22px; font-weight: 800; color: var(--hw-navy); margin-bottom: 8px; }
.hw-success-sub { font-size: 13.5px; color: var(--hw-muted); line-height: 1.7; max-width: 380px; margin: 0 auto; }
