/* ============================================================
   FEMALE HORMONE QUESTIONNAIRE — female-hormone-questionnaire.css
   Scope: .fhq-page
   Prefix: fhq-
   ============================================================ */

.fhq-page {
  --fhq-red:     #CC0000;
  --fhq-red-d:   #a30000;
  --fhq-red-lt:  rgba(204,0,0,.07);
  --fhq-pink:    #c4366e;
  --fhq-pink-d:  #a02a5a;
  --fhq-pink-2:  #e85a8f;
  --fhq-pink-lt: rgba(196,54,110,.08);
  --fhq-blue:    #10769E;
  --fhq-blue-d:  #0d5f7f;
  --fhq-black:   #000000;
  --fhq-black-l: #1a1a1a;
  --fhq-grey:    #E6E6E6;
  --fhq-grey-d:  #d0d0d0;
  --fhq-white:   #FFFFFF;
  --fhq-green:   #16a34a;
  --fhq-bg:      #F5F5F5;
  --fhq-tx1:     #1a1a1a;
  --fhq-tx2:     #5a5556;
  --fhq-tx3:     #888;
  --fhq-font-d:  'Playfair Display', Georgia, serif;
  --fhq-font-b:  'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  --fhq-r-xs:    4px;
  --fhq-r-sm:    8px;
  --fhq-r-md:    12px;
  --fhq-r-lg:    16px;
  --fhq-r-xl:    20px;
  --fhq-r-full:  100px;
  --fhq-sh-xs:   0 2px 8px rgba(0,0,0,.04);
  --fhq-sh-sm:   0 4px 20px rgba(0,0,0,.06);
  --fhq-sh-md:   0 8px 32px rgba(0,0,0,.08);
  --fhq-sh-lg:   0 16px 40px rgba(0,0,0,.12);

  background: var(--fhq-bg);
  font-family: var(--fhq-font-b);
  color: var(--fhq-tx1);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   LAYOUT WRAP
   ============================================================ */
.fhq-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.fhq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--fhq-font-b);
  font-weight: 600;
  font-size: .9375rem;
  letter-spacing: .025em;
  padding: .875rem 1.75rem;
  border-radius: var(--fhq-r-xs);
  transition: all .3s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.fhq-btn--pink  { background: var(--fhq-pink); color: white; }
.fhq-btn--pink:hover, .fhq-btn--pink:focus { background: var(--fhq-pink-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,54,110,.35); }
.fhq-btn--red   { background: var(--fhq-red);  color: white; }
.fhq-btn--red:hover, .fhq-btn--red:focus { background: var(--fhq-red-d); transform: translateY(-1px); }
.fhq-btn--black { background: var(--fhq-black); color: white; }
.fhq-btn--black:hover, .fhq-btn--black:focus { background: var(--fhq-black-l); transform: translateY(-1px); }
.fhq-btn--outline-dark { background: transparent; color: var(--fhq-black); border: 2px solid var(--fhq-black); }
.fhq-btn--outline-dark:hover, .fhq-btn--outline-dark:focus { background: var(--fhq-black); color: white; }
.fhq-btn:focus-visible { outline: 3px solid var(--fhq-blue); outline-offset: 3px; }

/* ============================================================
   HERO
   ============================================================ */
.fhq-hero {
  background: var(--fhq-black);
  padding: 15rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.fhq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(196,54,110,.18) 0%, transparent 65%),
    radial-gradient(ellipse at 10% 80%, rgba(232,90,143,.08) 0%, transparent 55%);
  pointer-events: none;
}
.fhq-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: .6;
}
.fhq-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.fhq-hero-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fhq-pink-2);
  margin-bottom: .75rem;
}
.fhq-hero-h1 {
  font-family: var(--fhq-font-d);
  font-size: 2.75rem;
  font-weight: 700;
  color: white;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.fhq-hero-h1 em {
  font-style: italic;
  color: rgba(255,255,255,.5);
  font-weight: 400;
}
.fhq-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 1.5rem;
}
@media (max-width: 700px) {
  .fhq-hero { padding-top: 8rem; }
  .fhq-hero-h1 { font-size: 2rem; }
  .fhq-score-card { display: none; }
}

/* Hero badges */
.fhq-hero-badges { display: flex; gap: 1rem; flex-wrap: wrap; }
.fhq-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--fhq-r-full);
  padding: .4rem .875rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.75);
}
.fhq-badge-pill svg { color: var(--fhq-pink-2); flex-shrink: 0; }

/* Hero score card */
.fhq-score-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--fhq-r-xl);
  padding: 1.5rem 1.75rem;
  min-width: 190px;
  flex-shrink: 0;
  text-align: center;
}
.fhq-score-n {
  font-family: var(--fhq-font-d);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--fhq-pink), var(--fhq-pink-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.fhq-score-n--sm { font-size: 1.5rem; }
.fhq-score-l {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  margin-top: .25rem;
  letter-spacing: .04em;
}
.fhq-score-divider { height: 1px; background: rgba(255,255,255,.1); margin: .875rem 0; }

/* Download bar */
.fhq-dl-bar {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.fhq-dl-text {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.fhq-btn-dl {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.8);
  font-family: var(--fhq-font-b);
  font-size: .8125rem;
  font-weight: 600;
  padding: .55rem 1.1rem;
  border-radius: var(--fhq-r-xs);
  cursor: pointer;
  transition: all .3s ease;
}
.fhq-btn-dl:hover, .fhq-btn-dl:focus { border-color: white; color: white; background: rgba(255,255,255,.08); }
.fhq-btn-dl:focus-visible { outline: 3px solid var(--fhq-blue); outline-offset: 3px; }

/* ============================================================
   QUESTIONNAIRE LAYOUT
   ============================================================ */
.fhq-q-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

/* Intro card */
.fhq-intro-card {
  background: white;
  border: 1px solid var(--fhq-grey);
  border-left: 4px solid var(--fhq-pink);
  border-radius: var(--fhq-r-xl);
  box-shadow: var(--fhq-sh-sm);
  padding: 2rem 2.25rem;
  margin-bottom: 2rem;
}
.fhq-intro-card h2 {
  font-family: var(--fhq-font-d);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: .625rem;
}
.fhq-intro-card p { font-size: .9375rem; color: var(--fhq-tx2); line-height: 1.75; }
.fhq-legend {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--fhq-grey);
}
.fhq-legend-item { display: flex; align-items: center; gap: .375rem; font-size: .8rem; font-weight: 600; color: var(--fhq-tx2); }
.fhq-legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }

/* Live score bar */
.fhq-score-bar {
  position: sticky;
  top: 114px;
  z-index: 100;
  background: white;
  border-bottom: 1px solid var(--fhq-grey);
  padding: .875rem 1.5rem;
  margin: 0 -1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  flex-wrap: wrap;
}
.fhq-score-label { font-size: .8125rem; font-weight: 700; color: var(--fhq-tx2); white-space: nowrap; }
.fhq-score-track { flex: 1; min-width: 120px; height: 8px; background: var(--fhq-grey); border-radius: 4px; overflow: hidden; }
.fhq-score-fill  { height: 100%; border-radius: 4px; transition: width .4s ease, background .4s ease; width: 0%; background: var(--fhq-grey-d); }
.fhq-score-val   { font-family: var(--fhq-font-d); font-size: 1.125rem; font-weight: 700; color: var(--fhq-pink); white-space: nowrap; min-width: 64px; }
.fhq-score-status { font-size: .8rem; font-weight: 600; padding: .25rem .75rem; border-radius: var(--fhq-r-full); white-space: nowrap; background: #f3f4f6; color: #6b7280; }

/* ============================================================
   QUESTION SECTIONS
   ============================================================ */
.fhq-section {
  background: white;
  border: 1px solid var(--fhq-grey);
  border-radius: var(--fhq-r-xl);
  box-shadow: var(--fhq-sh-xs);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.fhq-section-hdr {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.375rem 1.75rem;
  border-bottom: 1px solid var(--fhq-grey);
  background: var(--fhq-bg);
}
.fhq-section-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--fhq-r-md);
  background: linear-gradient(135deg, var(--fhq-pink), var(--fhq-pink-2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.fhq-section-title { font-family: var(--fhq-font-d); font-size: 1.1rem; font-weight: 700; color: var(--fhq-black); }
.fhq-section-sub   { font-size: .8125rem; color: var(--fhq-tx3); margin-top: .125rem; }

/* Question rows */
.fhq-q-list { padding: 0; }
.fhq-q-row {
  padding: 1.125rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  transition: background .2s ease;
}
.fhq-q-row:not(:last-child) { border-bottom: 1px solid var(--fhq-grey); }
.fhq-q-row:hover { background: rgba(196,54,110,.02); }
.fhq-q-text { flex: 1; min-width: 180px; }
.fhq-q-num   { font-size: .75rem; font-weight: 700; color: var(--fhq-pink); margin-bottom: .2rem; letter-spacing: .06em; }
.fhq-q-label { font-size: .9375rem; color: var(--fhq-tx1); line-height: 1.5; font-weight: 500; }
.fhq-q-sub   { font-size: .8rem; color: var(--fhq-tx3); margin-top: .125rem; }

/* Severity buttons */
.fhq-sev-btns { display: flex; gap: .375rem; flex-shrink: 0; }
@media (max-width: 580px) {
  .fhq-q-row { flex-direction: column; align-items: flex-start; }
  .fhq-sev-btns { width: 100%; justify-content: space-between; }
}
.fhq-sev-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  width: 68px;
  padding: .5rem .25rem;
  border-radius: var(--fhq-r-sm);
  border: 1.5px solid var(--fhq-grey-d);
  background: white;
  cursor: pointer;
  transition: all .3s ease;
  text-align: center;
  font-family: var(--fhq-font-b);
}
@media (max-width: 420px) { .fhq-sev-btn { width: calc(25% - .3rem); } }
.fhq-sev-btn:hover    { border-color: var(--fhq-pink); transform: translateY(-1px); }
.fhq-sev-btn:focus-visible { outline: 3px solid var(--fhq-blue); outline-offset: 2px; }
.fhq-sev-dot  { width: 10px; height: 10px; border-radius: 50%; background: var(--fhq-grey-d); transition: background .3s ease; }
.fhq-sev-score{ font-size: .65rem; font-weight: 700; color: var(--fhq-tx3); letter-spacing: .04em; }
.fhq-sev-word { font-size: .7rem;  font-weight: 600; color: var(--fhq-tx3); transition: color .3s ease; line-height: 1.2; }

/* Selected states */
.fhq-sev-sel-0 { border-color: #6b7280; background: #f9fafb; }
.fhq-sev-sel-0 .fhq-sev-dot  { background: #6b7280; }
.fhq-sev-sel-0 .fhq-sev-word { color: #6b7280; }
.fhq-sev-sel-1 { border-color: #2563eb; background: #eff6ff; }
.fhq-sev-sel-1 .fhq-sev-dot  { background: #2563eb; }
.fhq-sev-sel-1 .fhq-sev-word { color: #2563eb; }
.fhq-sev-sel-2 { border-color: #d97706; background: #fffbeb; }
.fhq-sev-sel-2 .fhq-sev-dot  { background: #d97706; }
.fhq-sev-sel-2 .fhq-sev-word { color: #d97706; }
.fhq-sev-sel-3 { border-color: var(--fhq-red); background: var(--fhq-red-lt); }
.fhq-sev-sel-3 .fhq-sev-dot  { background: var(--fhq-red); }
.fhq-sev-sel-3 .fhq-sev-word { color: var(--fhq-red); }

/* ============================================================
   PERSONAL INFO CARD
   ============================================================ */
.fhq-info-card {
  background: white;
  border: 1px solid var(--fhq-grey);
  border-radius: var(--fhq-r-xl);
  box-shadow: var(--fhq-sh-xs);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.fhq-info-title {
  font-family: var(--fhq-font-d);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .625rem;
  color: var(--fhq-tx1);
}
.fhq-info-title svg { color: var(--fhq-pink); }
.fhq-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) { .fhq-field-grid { grid-template-columns: 1fr; } }
.fhq-col-span { grid-column: 1 / -1; }

.fhq-field { display: flex; flex-direction: column; gap: .375rem; }
.fhq-field label { font-size: .875rem; font-weight: 600; color: var(--fhq-tx1); }
.fhq-req { color: var(--fhq-red); font-size: .75rem; }
.fhq-field input,
.fhq-field select,
.fhq-field textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--fhq-grey-d);
  border-radius: var(--fhq-r-sm);
  font-family: var(--fhq-font-b);
  font-size: .9375rem;
  color: var(--fhq-tx1);
  background: white;
  transition: all .3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.fhq-field input:focus,
.fhq-field select:focus,
.fhq-field textarea:focus {
  outline: none;
  border-color: var(--fhq-pink);
  box-shadow: 0 0 0 3px rgba(196,54,110,.12);
}
.fhq-field input.fhq-input-err,
.fhq-field select.fhq-input-err { border-color: var(--fhq-red); }
.fhq-field-err { display: none; font-size: .8rem; color: var(--fhq-red); margin-top: .2rem; }
.fhq-field-err.show { display: block; }
.fhq-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a5556' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Radio / checkbox group */
.fhq-radio-group { display: flex; gap: .75rem; flex-wrap: wrap; }
.fhq-check-item { position: relative; }
.fhq-check-item input { position: absolute; opacity: 0; width: 0; height: 0; }
.fhq-check-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .875rem;
  border: 1.5px solid var(--fhq-grey-d);
  border-radius: var(--fhq-r-sm);
  cursor: pointer;
  font-size: .875rem;
  color: var(--fhq-tx2);
  transition: all .3s ease;
}
.fhq-check-label:hover { border-color: var(--fhq-pink); }
.fhq-chk-box {
  width: 16px; height: 16px;
  border: 2px solid var(--fhq-grey-d);
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.fhq-check-item input:checked + .fhq-check-label {
  border-color: var(--fhq-pink);
  background: var(--fhq-pink-lt);
  color: var(--fhq-tx1);
}
.fhq-check-item input:checked + .fhq-check-label .fhq-chk-box {
  border-color: var(--fhq-pink);
  background: var(--fhq-pink);
}
.fhq-check-item input:checked + .fhq-check-label .fhq-chk-box::after {
  content: '';
  display: block;
  width: 4px; height: 8px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px,-1px);
}
.fhq-check-item input:focus-visible + .fhq-check-label { outline: 3px solid var(--fhq-blue); outline-offset: 2px; }

/* ============================================================
   CONSENT CARD
   ============================================================ */
.fhq-consent-card {
  background: white;
  border: 1px solid var(--fhq-grey);
  border-radius: var(--fhq-r-xl);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.fhq-consent-heading {
  font-family: var(--fhq-font-d);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.fhq-consent-scroll {
  font-size: .875rem;
  color: var(--fhq-tx2);
  line-height: 1.75;
  max-height: 110px;
  overflow-y: auto;
  border: 1px solid var(--fhq-grey);
  border-radius: var(--fhq-r-sm);
  padding: 1rem;
  background: var(--fhq-bg);
  margin-bottom: 1rem;
}
.fhq-consent-accept {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
}
.fhq-consent-accept input {
  width: 20px; height: 20px;
  accent-color: var(--fhq-pink);
  flex-shrink: 0;
  margin-top: .1rem;
  cursor: pointer;
}
.fhq-consent-text { font-size: .9rem; line-height: 1.6; font-weight: 500; }
.fhq-consent-err { display: none; font-size: .8rem; color: var(--fhq-red); margin-top: .5rem; }
.fhq-consent-err.show { display: block; }

/* ============================================================
   SUBMIT BAR
   ============================================================ */
.fhq-submit-bar {
  background: white;
  border: 1px solid var(--fhq-grey);
  border-radius: var(--fhq-r-xl);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.fhq-submit-note {
  font-size: .875rem;
  color: var(--fhq-tx3);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.fhq-submit-note svg { color: var(--fhq-green); flex-shrink: 0; }
.fhq-btn-submit {
  background: linear-gradient(135deg, var(--fhq-pink), var(--fhq-pink-2));
  color: white;
  font-family: var(--fhq-font-b);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2.25rem;
  border-radius: var(--fhq-r-xs);
  display: flex;
  align-items: center;
  gap: .625rem;
  transition: all .3s ease;
  border: none;
  cursor: pointer;
}
.fhq-btn-submit:hover, .fhq-btn-submit:focus {
  background: linear-gradient(135deg, var(--fhq-pink-d), var(--fhq-pink));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,54,110,.4);
}
.fhq-btn-submit:focus-visible { outline: 3px solid var(--fhq-blue); outline-offset: 3px; }
.fhq-btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }
@media (max-width: 500px) {
  .fhq-submit-bar { flex-direction: column; }
  .fhq-btn-submit { width: 100%; justify-content: center; }
}

/* ============================================================
   RESULTS PANEL
   ============================================================ */
.fhq-results {
  display: none;
  background: white;
  border: 1px solid var(--fhq-grey);
  border-radius: var(--fhq-r-xl);
  box-shadow: var(--fhq-sh-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}
.fhq-results--show { display: block; animation: fhqFadeUp .5s ease both; }
@keyframes fhqFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.fhq-results-hero {
  background: var(--fhq-black);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fhq-results-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(196,54,110,.25) 0%, transparent 60%);
  pointer-events: none;
}
.fhq-results-hero-inner { position: relative; z-index: 1; }
.fhq-score-ring {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
}
.fhq-score-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--fhq-black);
}
.fhq-score-ring-val {
  position: relative;
  font-family: var(--fhq-font-d);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--fhq-pink), var(--fhq-pink-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.fhq-score-ring-max { position: relative; font-size: .75rem; color: rgba(255,255,255,.4); font-weight: 500; }
.fhq-results-title {
  font-family: var(--fhq-font-d);
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: .5rem;
}
.fhq-results-subtitle { font-size: 1rem; color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto; }
.fhq-results-body { padding: 2rem 2.25rem; }

.fhq-results-pct-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .375rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--fhq-tx3);
}
.fhq-results-range-bar {
  height: 12px;
  border-radius: 6px;
  background: var(--fhq-grey);
  position: relative;
  margin-bottom: .5rem;
  overflow: visible;
}
.fhq-results-range-fill {
  height: 100%;
  border-radius: 6px;
  transition: width .8s cubic-bezier(.22,1,.36,1);
}
.fhq-results-pointer {
  position: absolute;
  top: -18px;
  width: 2px;
  height: 48px;
  background: var(--fhq-black);
  transition: left .8s cubic-bezier(.22,1,.36,1);
}
.fhq-results-pointer::before {
  content: '▼';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--fhq-black);
}
.fhq-results-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--fhq-tx3);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.fhq-results-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
@media (max-width: 540px) { .fhq-results-breakdown { grid-template-columns: 1fr; } }
.fhq-breakdown-item {
  padding: 1rem 1.25rem;
  background: var(--fhq-bg);
  border-radius: var(--fhq-r-md);
  border: 1px solid var(--fhq-grey);
}
.fhq-breakdown-cat { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--fhq-tx3); margin-bottom: .375rem; }
.fhq-breakdown-bar { height: 6px; background: var(--fhq-grey); border-radius: 3px; margin-bottom: .375rem; overflow: hidden; }
.fhq-breakdown-fill { height: 100%; border-radius: 3px; transition: width .8s ease; }
.fhq-breakdown-score { font-size: .875rem; font-weight: 700; color: var(--fhq-tx1); }

.fhq-results-rec {
  background: linear-gradient(135deg, var(--fhq-pink-lt), rgba(232,90,143,.05));
  border: 1px solid rgba(196,54,110,.2);
  border-radius: var(--fhq-r-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.fhq-rec-title {
  font-family: var(--fhq-font-d);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .625rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.fhq-rec-title svg { color: var(--fhq-pink); }
.fhq-rec-text { font-size: .9375rem; color: var(--fhq-tx2); line-height: 1.75; }

.fhq-results-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 460px) { .fhq-results-ctas { flex-direction: column; } }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.fhq-faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 1.5rem 5rem;
}
.fhq-faq-hdr { text-align: center; margin-bottom: 2.5rem; }
.fhq-faq-tag {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fhq-pink);
  margin-bottom: .75rem;
}
.fhq-faq-h2 { font-family: var(--fhq-font-d); font-size: 2.25rem; font-weight: 700; margin-bottom: .75rem; }
.fhq-faq-intro { font-size: 1.0625rem; color: var(--fhq-tx2); max-width: 520px; margin: 0 auto; }
.fhq-faq-list  { display: flex; flex-direction: column; gap: .75rem; }
.fhq-faq-item  { background: white; border: 1px solid var(--fhq-grey); border-radius: var(--fhq-r-md); overflow: hidden; }
.fhq-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  background: none;
  text-align: left;
  font-family: var(--fhq-font-b);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--fhq-tx1);
  cursor: pointer;
  border: none;
  transition: all .3s ease;
}
.fhq-faq-btn:hover, .fhq-faq-btn[aria-expanded="true"] { color: var(--fhq-pink); }
.fhq-faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--fhq-grey-d);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s ease;
}
.fhq-faq-btn[aria-expanded="true"] .fhq-faq-icon {
  background: var(--fhq-pink);
  border-color: var(--fhq-pink);
  color: white;
  transform: rotate(45deg);
}
.fhq-faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.fhq-faq-body--open { max-height: 400px; }
.fhq-faq-a { padding: 0 1.375rem 1.125rem; font-size: .9375rem; color: var(--fhq-tx2); line-height: 1.8; }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.fhq-mob-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--fhq-black);
  border-top: 2px solid var(--fhq-pink);
  padding: .75rem 1.5rem;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
@media (max-width: 767px) {
  .fhq-mob-cta { display: grid; }
  .fhq-page { padding-bottom: 72px; }
}
@media (min-width: 768px) {
  .fhq-mob-cta { display: none !important; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
.fhq-print-hdr { display: none; }

@media print {
  .fhq-score-bar, .fhq-dl-bar, .fhq-submit-bar, .fhq-results,
  .fhq-results-ctas, .fhq-faq, .fhq-mob-cta,
  .fhq-hero::before, .fhq-hero::after { display: none !important; }

  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  body { font-size: 11pt; background: #fff; padding: 0; margin: 0; }
  .fhq-page { padding-bottom: 0 !important; background: #fff; }
  .fhq-hero { padding: 10pt 0 !important; background: #000 !important; }
  .fhq-hero-h1 { font-size: 16pt !important; color: #fff !important; margin-bottom: 2pt; }
  .fhq-hero-sub { font-size: 9pt !important; color: rgba(255,255,255,.7) !important; margin-bottom: 0; }
  .fhq-hero-label { color: #e85a8f !important; font-size: 7pt !important; }
  .fhq-hero-inner { flex-direction: column; gap: 4pt; }
  .fhq-score-card, .fhq-hero-badges { display: none !important; }

  .fhq-q-layout { padding: 8pt 14pt !important; max-width: 100%; }
  .fhq-intro-card, .fhq-info-card, .fhq-consent-card, .fhq-section {
    border-radius: 0 !important; box-shadow: none !important; border: none !important; border-bottom: 1pt solid #ddd !important;
  }
  .fhq-section-hdr { background: #f5f5f5 !important; padding: 7pt 10pt !important; }
  .fhq-section-title { font-size: 10pt !important; }
  .fhq-q-row { padding: 6pt 10pt !important; border-bottom: .5pt solid #eee !important; }
  .fhq-q-label { font-size: 9pt !important; }
  .fhq-sev-btn { width: 50pt !important; padding: 4pt 2pt !important; }
  .fhq-sev-word { font-size: 7pt !important; }
  .fhq-sev-score { font-size: 6pt !important; }
  .fhq-field input, .fhq-field select {
    border: .75pt solid #ccc !important; padding: 4pt 6pt !important;
    font-size: 9pt !important; border-radius: 2pt !important;
  }
  .fhq-field label { font-size: 8pt !important; font-weight: 700; }
  .fhq-consent-scroll { max-height: none !important; overflow: visible !important; font-size: 7.5pt !important; }

  .fhq-print-hdr {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 8pt 14pt;
    border-bottom: 1.5pt solid #c4366e;
    margin-bottom: 0;
  }
  .fhq-print-hdr-name { font-family: 'Playfair Display', Georgia, serif; font-size: 12pt; font-weight: 700; }
  .fhq-print-hdr-name em { color: #c4366e; font-style: normal; }
  .fhq-print-hdr-meta { font-size: 7pt; color: #aaa; text-align: right; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .fhq-sev-btn, .fhq-score-fill, .fhq-results-range-fill,
  .fhq-results-pointer, .fhq-results, .fhq-btn-submit { transition: none !important; animation: none !important; }
}
