.pvl-asp {
  --pvl-navy: #1f4052;
  --pvl-teal: #53bcbf;
  --pvl-teal-soft: #e8f6f4;
  --pvl-coral: #d97559;
  --pvl-text: #29363d;
  --pvl-muted: #66747b;
  max-width: 900px;
  margin: 2rem auto;
  color: var(--pvl-text);
  font-size: 1rem;
  line-height: 1.6;
}

.pvl-asp * { box-sizing: border-box; }
.pvl-asp__intro { padding: clamp(1.25rem, 4vw, 2.5rem); background: linear-gradient(135deg, var(--pvl-navy), #2d6f7c); color: #fff; border-radius: 18px 18px 0 0; }
.pvl-asp__intro h2 { margin: .15rem 0 .8rem; color: #fff; font-size: clamp(1.7rem, 4vw, 2.5rem); }
.pvl-asp__eyebrow { margin: 0; color: #bfe9e8; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: .78rem; }
.pvl-asp__privacy { margin-top: 1.2rem; padding: 1rem 1.1rem; background: rgba(255,255,255,.12); border-left: 4px solid #9ee0dc; border-radius: 6px; font-size: .92rem; }
.pvl-asp__form { padding: clamp(1rem, 4vw, 2.5rem); background: #fff; border: 1px solid #dce7e9; border-top: 0; border-radius: 0 0 18px 18px; box-shadow: 0 12px 35px rgba(31,64,82,.09); }
.pvl-asp__identity { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.pvl-asp__identity label, .pvl-asp__situation { display: grid; gap: .35rem; font-weight: 700; }
.pvl-asp small { color: var(--pvl-muted); font-weight: 400; }
.pvl-asp input[type="text"], .pvl-asp input[type="email"], .pvl-asp textarea { width: 100%; border: 1px solid #b9cbcf; border-radius: 8px; padding: .75rem .85rem; background: #fff; color: var(--pvl-text); font: inherit; }
.pvl-asp input:focus, .pvl-asp textarea:focus { outline: 3px solid rgba(83,188,191,.24); border-color: var(--pvl-teal); }
.pvl-asp__instruction { padding: .8rem 1rem; background: var(--pvl-teal-soft); border-radius: 8px; font-weight: 600; }
.pvl-asp__question { margin: 0; padding: 1.25rem 0; border: 0; border-bottom: 1px solid #e4ecee; }
.pvl-asp__question legend { display: flex; gap: .7rem; align-items: flex-start; width: 100%; font-weight: 700; }
.pvl-asp__question legend > span { flex: 0 0 1.8rem; height: 1.8rem; display: inline-grid; place-items: center; border-radius: 50%; background: var(--pvl-navy); color: #fff; font-size: .82rem; }
.pvl-asp__choices { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .6rem; margin: .9rem 0 0 2.5rem; }
.pvl-asp__choices label { position: relative; cursor: pointer; }
.pvl-asp__choices input { position: absolute; opacity: 0; }
.pvl-asp__choices span { display: block; padding: .65rem .4rem; border: 1px solid #bfd0d3; border-radius: 8px; text-align: center; font-size: .9rem; transition: .15s ease; }
.pvl-asp__choices input:checked + span { background: var(--pvl-navy); border-color: var(--pvl-navy); color: #fff; font-weight: 700; }
.pvl-asp__choices input:focus-visible + span { outline: 3px solid rgba(83,188,191,.35); outline-offset: 2px; }
.pvl-asp__situation { margin-top: 1.5rem; }
.pvl-asp__consent { display: flex; gap: .75rem; align-items: flex-start; margin: 1.4rem 0; padding: 1rem; background: #f7fafb; border-radius: 8px; font-size: .91rem; }
.pvl-asp__consent input { margin-top: .3rem; flex: 0 0 auto; }
.pvl-asp__submit { appearance: none; border: 0; border-radius: 999px; padding: .9rem 1.5rem; background: var(--pvl-coral); color: #fff; font: inherit; font-weight: 800; cursor: pointer; box-shadow: 0 5px 14px rgba(217,117,89,.24); }
.pvl-asp__submit:hover { filter: brightness(.94); transform: translateY(-1px); }
.pvl-asp__submit:disabled { opacity: .65; cursor: wait; transform: none; }
.pvl-asp__status { min-height: 1.6em; margin: .85rem 0 0; font-weight: 700; }
.pvl-asp__status.is-error { color: #a2382b; }
.pvl-asp__status.is-success { color: #24765f; padding: .8rem 1rem; background: #e8f6ef; border-radius: 8px; }
.pvl-asp__status.is-sending { color: var(--pvl-navy); }
.pvl-asp__footnote { margin: 1rem auto 0; max-width: 820px; color: var(--pvl-muted); font-size: .88rem; }
.pvl-asp__honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 700px) {
  .pvl-asp__identity { grid-template-columns: 1fr; }
  .pvl-asp__choices { grid-template-columns: repeat(2, minmax(0,1fr)); margin-left: 0; }
  .pvl-asp__question legend { font-size: .97rem; }
}

@media (prefers-reduced-motion: reduce) {
  .pvl-asp__choices span, .pvl-asp__submit { transition: none; }
  .pvl-asp__submit:hover { transform: none; }
}

