.fv-member {
  --fv-orange: #ef7800;
  --fv-orange-dark: #c95f00;
  --fv-orange-soft: #fff3e6;
  --fv-navy: #26384c;
  --fv-muted: #5d6976;
  --fv-line: #e4e8ec;
  --fv-bg: #f7f9fa;
  --fv-white: #fff;
  --fv-error: #a92b2b;
  --fv-radius: 16px;
  max-width: 980px;
  margin: 0 auto;
  color: var(--fv-navy);
  font: inherit;
}
.fv-member *, .fv-member *::before, .fv-member *::after { box-sizing: border-box; }
.fv-member__hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  padding: clamp(24px, 5vw, 48px);
  border-radius: var(--fv-radius);
  background: linear-gradient(135deg, #fff8f0 0%, #ffffff 68%);
  border: 1px solid #f1dcc7;
  box-shadow: 0 12px 34px rgba(47, 55, 65, .08);
  margin-bottom: 24px;
}
.fv-member__logo {
  width: clamp(96px, 14vw, 132px);
  height: auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}
.fv-member__eyebrow {
  margin: 0 0 5px;
  color: var(--fv-orange-dark);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
}
.fv-member h1 {
  margin: 0 0 10px;
  color: var(--fv-navy);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
}
.fv-member__intro { margin: 0; max-width: 720px; font-size: 1.08rem; line-height: 1.6; color: var(--fv-muted); }
.fv-form { display: grid; gap: 22px; }
.fv-card {
  margin: 0;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-radius);
  background: var(--fv-white);
  box-shadow: 0 8px 24px rgba(47, 55, 65, .055);
}
.fv-card legend {
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
  margin: 0 0 22px;
  padding: 0 10px 0 0;
  color: var(--fv-navy);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 800;
}
.fv-card legend span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--fv-orange);
  color: #fff;
  font-size: 1rem;
}
.fv-grid { display: grid; gap: 18px; }
.fv-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.fv-grid--zip { grid-template-columns: minmax(120px, .35fr) minmax(0, 1fr); }
.fv-field { margin-bottom: 18px; }
.fv-field:last-child { margin-bottom: 0; }
.fv-field label { display: block; margin-bottom: 7px; font-weight: 750; color: var(--fv-navy); }
.fv-field input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #bfc7ce;
  border-radius: 9px;
  background: #fff;
  color: #1f2c39;
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.fv-field input:hover { border-color: #8d99a4; }
.fv-field input:focus { outline: 0; border-color: var(--fv-orange); box-shadow: 0 0 0 4px rgba(239, 120, 0, .16); }
.fv-field small { display: block; margin-top: 6px; color: var(--fv-muted); line-height: 1.45; }
.fv-field--compact { max-width: 480px; }
.fv-field--amount { max-width: 320px; margin-top: 20px; }
.fv-field--signature { margin-top: 22px; }
.fv-help { margin-top: 0; color: var(--fv-muted); }
.fv-choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.fv-choice {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--fv-line);
  border-radius: 12px;
  background: var(--fv-bg);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.fv-choice:hover { border-color: #e5ad74; transform: translateY(-1px); }
.fv-choice:has(input:checked) { border-color: var(--fv-orange); background: var(--fv-orange-soft); }
.fv-choice input { margin-top: 3px; accent-color: var(--fv-orange); width: 18px; height: 18px; flex: 0 0 auto; }
.fv-choice span { display: grid; gap: 4px; }
.fv-choice strong { font-size: 1.04rem; }
.fv-choice small { color: var(--fv-muted); }
.fv-input-suffix { display: grid; grid-template-columns: 1fr auto; align-items: stretch; }
.fv-input-suffix input { border-radius: 9px 0 0 9px; }
.fv-input-suffix span { display: grid; place-items: center; padding: 0 14px; background: #edf0f2; border: 1px solid #bfc7ce; border-left: 0; border-radius: 0 9px 9px 0; }
.fv-payment-box, .fv-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 12px;
  background: var(--fv-bg);
  border-left: 5px solid var(--fv-orange);
}
.fv-payment-box p, .fv-note p { margin: 7px 0 0; }
.fv-note--important { background: var(--fv-orange-soft); }
.fv-bank-fields { margin-top: 18px; }
.fv-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 20px;
  line-height: 1.55;
  cursor: pointer;
}
.fv-check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--fv-orange); }
.fv-check a { color: var(--fv-orange-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
.fv-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-weight: 800;
  text-decoration: none !important;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.fv-button--primary { margin-top: 26px; background: var(--fv-orange); color: #fff !important; box-shadow: 0 8px 20px rgba(201,95,0,.24); }
.fv-button--primary:hover, .fv-button--primary:focus { background: var(--fv-orange-dark); transform: translateY(-1px); }
.fv-button--secondary { margin-top: 14px; background: #fff; color: var(--fv-orange-dark) !important; border: 1px solid #e4a563; }
.fv-alert { margin: 0 0 22px; padding: 18px 20px; border-radius: 12px; }
.fv-alert--error { color: #792020; background: #fff0f0; border: 1px solid #edbbbb; }
.fv-alert ul { margin: 8px 0 0 20px; }
.fv-required-note { margin: 10px 0 0; color: var(--fv-muted); font-size: .9rem; }
.fv-optional { font-weight: 400; color: var(--fv-muted); }
.fv-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.fv-member__footer { margin-top: 22px; padding: 18px 8px; text-align: center; color: var(--fv-muted); font-size: .92rem; line-height: 1.6; }
.fv-member [hidden] { display: none !important; }
@media (max-width: 720px) {
  .fv-member__hero { grid-template-columns: 1fr; text-align: center; }
  .fv-member__logo { margin: 0 auto; }
  .fv-grid--2, .fv-grid--zip, .fv-choice-grid { grid-template-columns: 1fr; }
  .fv-card { padding: 22px 18px; }
  .fv-button--primary { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .fv-member * { transition: none !important; scroll-behavior: auto !important; }
}
