    /* ── CSS Variables ─────────────────────────────────── */
    :root {
      --navy:   #17243B;
      --blue:   #233657;
      --gold:   #D8AF4C;
      --gold-light: #e8c97a;
      --white:  #FFFFFF;
      --surface: #1c2d48;
      --surface-2: #243554;
      --border: rgba(216,175,76,0.18);
      --text-muted: rgba(255,255,255,0.45);
      --radius: 12px;
      --transition: 0.28s cubic-bezier(.4,0,.2,1);
    }

    /* ── Reset & Base ──────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    #spa-audit-widget {
      width: 100%;
      min-height: 100vh;
      background: var(--navy);
      font-family: 'DM Sans', sans-serif;
      color: var(--white);
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    /* subtle background texture */
    #spa-audit-widget::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(35,54,87,0.6) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 90% 80%, rgba(216,175,76,0.06) 0%, transparent 55%);
      pointer-events: none;
      z-index: 0;
    }

    .audit-inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    /* ── Progress Rail ─────────────────────────────────── */
    .progress-rail {
      background: var(--blue);
      border-bottom: 1px solid var(--border);
      padding: 14px 24px;
    }

    .progress-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }

    .progress-label {
      font-size: 10px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--text-muted);
      font-weight: 500;
    }

    .progress-counter {
      font-family: 'Cormorant Garamond', serif;
      font-size: 15px;
      color: var(--gold);
      font-weight: 600;
      letter-spacing: .05em;
    }

    .section-steps {
      display: flex;
      gap: 5px;
      flex-wrap: nowrap;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .section-steps::-webkit-scrollbar { display: none; }

    .step-dot {
      flex: 1;
      min-width: 28px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .04em;
      border-radius: 6px;
      cursor: pointer;
      transition: var(--transition);
      border: 1px solid transparent;
      color: var(--text-muted);
      background: rgba(255,255,255,0.04);
      position: relative;
      user-select: none;
    }

    .step-dot:hover {
      color: var(--gold-light);
      border-color: var(--border);
      background: rgba(216,175,76,0.07);
    }

    .step-dot.active {
      background: var(--gold);
      color: var(--navy);
      font-weight: 700;
      border-color: var(--gold);
    }

    .step-dot.completed {
      background: rgba(216,175,76,0.15);
      border-color: rgba(216,175,76,0.35);
      color: var(--gold);
    }

    .step-dot.completed::after {
      content: '';
      position: absolute;
      top: 3px; right: 3px;
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--gold);
    }

    /* ── Main Content Area ─────────────────────────────── */
    .audit-content {
      flex: 1;
      padding: 32px 28px 20px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    /* ── Section Header ────────────────────────────────── */
    .section-header {
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .section-badge {
      flex-shrink: 0;
      width: 56px;
      height: 56px;
      background: var(--gold);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
    }

    .section-meta { flex: 1; }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 6px;
    }

    .section-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      max-width: 640px;
    }

    .section-score-pill {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 2px;
    }

    .score-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--gold);
      line-height: 0;
    }

    .score-max {
      font-size: 14px;
      color: var(--text-muted);
    }

    .score-label {
      font-size: 9px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* ── Stats Cards ───────────────────────────────────── */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .stat-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 18px 16px;
      text-align: center;
      transition: var(--transition);
    }

    .stat-card:hover {
      background: rgba(216,175,76,0.06);
      border-color: rgba(216,175,76,0.3);
    }

    .stat-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1.1;
      margin-bottom: 6px;
    }

    .stat-label {
      font-size: 9px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* ── Questions Panel ───────────────────────────────── */
    .questions-panel {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .questions-header {
      padding: 14px 20px;
      border-bottom: 1px solid var(--border);
      font-size: 9px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--text-muted);
      font-weight: 500;
    }

    .question-row {
      padding: 18px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      transition: background var(--transition);
    }

    .question-row:last-child { border-bottom: none; }

    .question-row:hover { background: rgba(255,255,255,0.02); }

    .question-text {
      flex: 1;
      font-size: 14px;
      color: rgba(255,255,255,0.82);
      line-height: 1.5;
    }

    /* Score Buttons */
    .score-buttons {
      display: flex;
      gap: 6px;
      flex-shrink: 0;
    }

    .score-btn {
      width: 34px;
      height: 34px;
      border-radius: 7px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.05);
      color: rgba(255,255,255,0.55);
      font-size: 13px;
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      user-select: none;
    }

    .score-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(216,175,76,0.1);
      transform: translateY(-1px);
    }

    .score-btn.selected {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--navy);
      font-weight: 700;
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(216,175,76,0.3);
    }

    /* ── Footer / Navigation ───────────────────────────── */
    .audit-footer {
      padding: 16px 28px;
      background: var(--blue);
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .btn-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 22px;
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .04em;
      cursor: pointer;
      transition: var(--transition);
      border: 1px solid transparent;
    }

    .btn-back {
      background: transparent;
      border-color: rgba(255,255,255,0.18);
      color: rgba(255,255,255,0.65);
    }
    .btn-back:hover {
      border-color: rgba(255,255,255,0.4);
      color: var(--white);
      background: rgba(255,255,255,0.05);
    }

    .btn-next {
      background: var(--gold);
      color: var(--navy);
      font-weight: 700;
    }
    .btn-next:hover {
      background: var(--gold-light);
      box-shadow: 0 4px 18px rgba(216,175,76,0.35);
      transform: translateY(-1px);
    }

    .btn-submit {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: var(--navy);
      font-weight: 700;
    }
    .btn-submit:hover {
      box-shadow: 0 4px 20px rgba(216,175,76,0.45);
      transform: translateY(-1px);
    }

    .total-score-display {
      text-align: center;
    }

    .total-score-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .total-score-label {
      font-size: 9px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* ── Section Transition ────────────────────────────── */
    .section-slide {
      animation: slideIn .35s cubic-bezier(.4,0,.2,1) both;
    }
    @keyframes slideIn {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── Completion Screen ─────────────────────────────── */
    .completion-screen {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 28px;
      text-align: center;
      gap: 24px;
      animation: slideIn .4s ease both;
    }

    .completion-icon {
      width: 80px; height: 80px;
      background: rgba(216,175,76,0.12);
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      color: var(--gold);
    }

    .completion-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--white);
    }

    .completion-score {
      font-family: 'Cormorant Garamond', serif;
      font-size: 64px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .completion-score-label {
      font-size: 12px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 4px;
    }

    .completion-desc {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 400px;
      line-height: 1.7;
    }

    .btn-retake {
      padding: 11px 28px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.18);
      background: transparent;
      color: rgba(255,255,255,0.65);
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      cursor: pointer;
      transition: var(--transition);
    }
    .btn-retake:hover {
      border-color: rgba(255,255,255,0.4);
      color: var(--white);
    }

    /* ── Sending State ─────────────────────────────────── */
    .sending-overlay {
      position: fixed;
      inset: 0;
      background: rgba(23,36,59,0.88);
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      backdrop-filter: blur(4px);
    }
    .sending-spinner {
      width: 44px; height: 44px;
      border: 3px solid rgba(216,175,76,0.2);
      border-top-color: var(--gold);
      border-radius: 50%;
      animation: spin .8s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .sending-text {
      font-size: 14px;
      color: var(--text-muted);
      letter-spacing: .06em;
    }

    /* ── Responsive tweaks ─────────────────────────────── */
    @media (max-width: 600px) {
      .section-header { flex-wrap: wrap; }
      .section-score-pill { flex-direction: row; align-items: center; gap: 8px; }
      .stats-row { grid-template-columns: repeat(3, 1fr); }
      .question-row { flex-direction: column; align-items: flex-start; gap: 10px; }
      .audit-content { padding: 20px 16px 12px; }
      .audit-footer { padding: 14px 16px; }
      .progress-rail { padding: 12px 16px; }

    }



 /* ── Design Tokens (mirrors spa-theme.css) ─────────── */
    :root {
      --spa-navy:           #17243B;
      --spa-navy-rgb:       23, 36, 59;
      --spa-blue:           #233657;
      --spa-blue-rgb:       35, 54, 87;
      --spa-gold:           #D8AF4C;
      --spa-gold-rgb:       216, 175, 76;
      --spa-gold-light:     #E8C97A;
      --spa-gold-dark:      #B8922E;
      --spa-white:          #FFFFFF;
      --spa-white-rgb:      255, 255, 255;
      --spa-surface:        #1C2D48;
      --spa-surface-2:      #243554;
      --spa-border:         rgba(216, 175, 76, 0.18);
      --spa-border-strong:  rgba(216, 175, 76, 0.40);
      --spa-text-primary:   rgba(255, 255, 255, 1.00);
      --spa-text-secondary: rgba(255, 255, 255, 0.72);
      --spa-text-muted:     rgba(255, 255, 255, 0.45);
      --spa-font-display:   'Cormorant Garamond', Georgia, serif;
      --spa-font-body:      'DM Sans', system-ui, sans-serif;
      --spa-radius-sm:      6px;
      --spa-radius:         10px;
      --spa-radius-lg:      14px;
      --spa-transition:     0.28s cubic-bezier(.4, 0, .2, 1);
      --spa-shadow-gold:    0 4px 18px rgba(216, 175, 76, 0.30);
      --spa-shadow-gold-lg: 0 6px 28px rgba(216, 175, 76, 0.45);
    }

    /* ── Widget Root ────────────────────────────────────── */
    #spa-form-widget {
      width: 100%;
      background: var(--white);
      font-family: var(--spa-font-body);
      color: var(--spa-navy);
      position: relative;
      overflow: hidden;
    }

    /* depth texture */
    #spa-form-widget::before {
      /* content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 90% 55% at 5% 10%,  rgba(35,54,87,0.55)  0%, transparent 60%),
        radial-gradient(ellipse 55% 35% at 95% 90%, rgba(216,175,76,0.05) 0%, transparent 55%);
      pointer-events: none;
      z-index: 0; */
    }

    .form-inner {
      position: relative;
      z-index: 1;
      padding: 36px 32px 32px;
    }

    /* ── Header ─────────────────────────────────────────── */
    .form-eyebrow {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--spa-gold);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .form-eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--spa-gold);
      opacity: .6;
    }

    .form-title {
      font-family: var(--spa-font-display);
      font-size: 30px;
      font-weight: 700;
      color: var(--spa-white);
      line-height: 1.15;
      margin-bottom: 6px;
    }

    .form-subtitle {
      font-size: 13px;
      color: var(--spa-text-muted);
      line-height: 1.65;
      margin-bottom: 28px;
    }

    /* ── Divider ─────────────────────────────────────────── */
    .divider-gold {
      height: 1px;
      background: linear-gradient(90deg, var(--spa-gold) 0%, transparent 100%);
      opacity: .25;
      margin-bottom: 28px;
    }

    /* ── Field label ─────────────────────────────────────── */
    .field-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--spa-blue);
      margin-bottom: 8px;
      display: block;
    }
    .field-label .req {
      color: var(--spa-gold);
      margin-left: 2px;
    }

    /* ── Text inputs ─────────────────────────────────────── */
    .spa-input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--spa-navy);
      border-radius: 0;
      color: var(--spa-navy);
      font-family: var(--spa-font-body);
      font-size: 14px;
      padding: 8px 0 10px;
      outline: none;
      transition: var(--spa-transition);
      caret-color: var(--spa-gold);
    }
    .spa-input::placeholder {
      color: var(--blue);
      font-size: 14px;
    }
    .spa-input:focus {
      border-bottom-color: var(--spa-gold);
    }
    .spa-input.is-invalid {
      border-bottom-color: #eb5757;
    }

    /* ── intl-tel-input v19 skin — classes from actual v19 source ── */

    /* root .iti — full width */
    .iti { display: block !important; width: 100% !important; }

    /* the tel input — .iti__tel-input */
    .iti input.iti__tel-input,
    .iti input.iti__tel-input[type=text],
    .iti input.iti__tel-input[type=tel] {
      width:         100% !important;
      background:    transparent !important;
      color:         var(--navy) !important;
      border:        none !important;
      border-bottom: 1px solid var(--navy) !important;
      border-radius: 0 !important;
      padding-top:    8px !important;
      padding-bottom: 10px !important;
      font-family:   var(--spa-font-body) !important;
      font-size:     14px !important;
      outline:       none !important;
      box-shadow:    none !important;
      caret-color:   var(--spa-gold);
      transition:    border-color 0.28s ease;
    }
    .iti input.iti__tel-input:focus {
      border-bottom-color: var(--spa-gold) !important;
    }
    .iti input.iti__tel-input::placeholder {
      color: rgba(255,255,255,0.45) !important;
    }

    /* flag button — transparent bg */
    .iti__flag-container:hover .iti__selected-flag {
      background: transparent !important;
    }
    .iti__selected-flag {
      background:    transparent !important;
      outline:       none !important;
      border-bottom: 1px solid rgba(255,255,255,0.18);
      padding:       8px 6px 10px 0 !important;
      transition:    border-color 0.28s ease;
    }
    /* dial code text */
    .iti--show-selected-dial-code .iti__selected-dial-code {
      color:       rgba(255,255,255,1);
      font-family: var(--spa-font-body);
      font-size:   14px;
    }
    /* gold arrow */
    .iti__arrow          { border-top-color: var(--spa-gold) !important; }
    .iti__arrow--up      { border-top: none !important; border-bottom: 4px solid var(--spa-gold) !important; }

    /* focus underline sync */
    .iti:focus-within .iti__selected-flag       { border-bottom-color: var(--spa-gold) !important; }
    .iti:focus-within input.iti__tel-input       { border-bottom-color: var(--spa-gold) !important; }

    /* invalid */
    .field-group.is-invalid .iti__selected-flag,
    .field-group.is-invalid .iti input.iti__tel-input { border-bottom-color: #eb5757 !important; }

    /* dropdown wrapper — THIS is what v19 makes white: .iti__dropdown-content */
    .iti__dropdown-content {
      background-color: #243554 !important;
      border:           1px solid rgba(216,175,76,0.40) !important;
      border-radius:    10px !important;
      box-shadow:       0 8px 32px rgba(0,0,0,0.55) !important;
      overflow:         hidden;
    }
    /* search — .iti__search-input */
    .iti__search-input {
      background:    rgba(255,255,255,0.06) !important;
      border:        none !important;
      border-bottom: 1px solid rgba(216,175,76,0.18) !important;
      border-radius: 0 !important;
      color:         #ffffff !important;
      font-family:   var(--spa-font-body) !important;
      font-size:     13px !important;
      padding:       10px 14px !important;
      width:         100% !important;
      outline:       none !important;
      box-sizing:    border-box !important;
    }
    .iti__search-input::placeholder { color: rgba(255,255,255,0.38) !important; }
    .iti__search-input:focus        { background: rgba(255,255,255,0.10) !important; }

    /* list — .iti__country-list */
    .iti__country-list {
      background:      transparent !important;
      scrollbar-width: thin;
      scrollbar-color: rgba(216,175,76,0.3) transparent;
    }
    .iti__country-list::-webkit-scrollbar       { width: 4px; }
    .iti__country-list::-webkit-scrollbar-thumb { background: rgba(216,175,76,0.3); border-radius: 4px; }

    /* rows — .iti__country */
    .iti__country {
      background:  transparent !important;
      color:       rgba(255,255,255,0.75) !important;
      font-family: var(--spa-font-body) !important;
      font-size:   13px !important;
      padding:     9px 14px !important;
    }
    .iti__country.iti__highlight,
    .iti__country:hover {
      background-color: rgba(216,175,76,0.14) !important;
      color:            #D8AF4C !important;
    }
    .iti__country-name { color: inherit !important; }
    .iti__dial-code    { color: rgba(216,175,76,0.70) !important; font-size: 12px !important; }
    .iti__divider      { border-bottom: 1px solid rgba(216,175,76,0.12) !important; }

    /* field group spacing */
    .field-group {
      margin-bottom: 16px;
    }

    /* ── Select2 custom skin ─────────────────────────────── */

    /* hide native select */
    .spa-select { display: none; }

    /* container */
    .select2-container--spa-theme {
      width: 100% !important;
    }
    .select2-container--spa-theme .select2-selection--single {
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--navy);
      border-radius: 0;
      height: auto;
      padding: 8px 28px 10px 0;
      outline: none;
      transition: border-color 0.28s ease;
    }
    .select2-container--spa-theme.select2-container--open .select2-selection--single,
    .select2-container--spa-theme.select2-container--focus .select2-selection--single {
      border-bottom-color: var(--spa-gold);
    }
    .select2-container--spa-theme .select2-selection--single .select2-selection__rendered {
      color: var(--spa-navy);
      font-family: var(--spa-font-body);
      font-size: 14px;
      line-height: 1.4;
      padding: 0;
    }
    .select2-container--spa-theme .select2-selection--single .select2-selection__placeholder {
      color: var(--spa-blue);
    }
    /* custom chevron arrow */
    .select2-container--spa-theme .select2-selection--single .select2-selection__arrow {
      height: 100%;
      top: 0;
      right: 0;
      width: 20px;
    }
    .select2-container--spa-theme .select2-selection--single .select2-selection__arrow b {
      display: none;
    }
    .select2-container--spa-theme .select2-selection--single .select2-selection__arrow::after {
      content: '\f078'; /* fa-chevron-down */
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      font-size: 11px;
      color: var(--spa-gold);
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      transition: transform 0.28s ease;
    }
    .select2-container--spa-theme.select2-container--open
      .select2-selection--single
      .select2-selection__arrow::after {
      transform: translateY(-50%) rotate(180deg);
    }

    /* dropdown panel */
    .select2-dropdown {
      background: var(--spa-surface-2, #243554) !important;
      border: 1px solid var(--spa-border-strong) !important;
      border-radius: var(--spa-radius) !important;
      box-shadow: 0 8px 32px rgba(0,0,0,0.38) !important;
      overflow: hidden;
    }
    .select2-container--spa-theme .select2-dropdown--below {
      margin-top: 4px;
    }
    .select2-container--spa-theme .select2-dropdown--above {
      margin-bottom: 4px;
    }

    /* search box inside dropdown */
    .select2-container--spa-theme .select2-search--dropdown {
      padding: 10px 12px 6px;
      border-bottom: 1px solid var(--spa-border);
    }
    .select2-container--spa-theme .select2-search--dropdown .select2-search__field {
      background: rgba(var(--spa-white-rgb), 0.06);
      border: 1px solid var(--spa-border);
      border-radius: var(--spa-radius-sm);
      color: var(--spa-text-primary);
      font-family: var(--spa-font-body);
      font-size: 13px;
      padding: 7px 10px;
      outline: none;
      width: 100%;
      transition: border-color 0.2s ease;
    }
    .select2-container--spa-theme .select2-search--dropdown .select2-search__field:focus {
      border-color: var(--spa-border-strong);
    }

    /* options */
    .select2-container--spa-theme .select2-results__options {
      max-height: 220px;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(var(--spa-gold-rgb), 0.3) transparent;
    }
    .select2-container--spa-theme .select2-results__options::-webkit-scrollbar { width: 4px; }
    .select2-container--spa-theme .select2-results__options::-webkit-scrollbar-track { background: transparent; }
    .select2-container--spa-theme .select2-results__options::-webkit-scrollbar-thumb {
      background: rgba(var(--spa-gold-rgb), 0.3);
      border-radius: 4px;
    }

    .select2-container--spa-theme .select2-results__option {
      font-family: var(--spa-font-body);
      font-size: 13px;
      color: var(--spa-text-secondary);
      padding: 10px 14px;
      transition: background 0.18s ease, color 0.18s ease;
    }
    .select2-container--spa-theme .select2-results__option--highlighted {
      background: rgba(var(--spa-gold-rgb), 0.12) !important;
      color: var(--spa-gold) !important;
    }
    .select2-container--spa-theme .select2-results__option--selected {
      background: rgba(var(--spa-gold-rgb), 0.08) !important;
      color: var(--spa-gold-light) !important;
      font-weight: 500;
    }
    .select2-container--spa-theme .select2-results__option[aria-disabled="true"] {
      color: var(--spa-text-disabled, rgba(255,255,255,0.25));
    }

    /* invalid state */
    .field-group.is-invalid .select2-container--spa-theme .select2-selection--single {
      border-bottom-color: #eb5757;
    }

    /* ── Error message ───────────────────────────────────── */
    .field-error {
      font-size: 11px;
      color: #eb5757;
      margin-top: 5px;
      display: none;
      align-items: center;
      gap: 4px;
    }
    .field-error.show { display: flex; }

    /* ── Submit Button ───────────────────────────────────── */
    .btn-spa-submit {
      width: 100%;
      padding: 16px 24px;
      background: var(--spa-gold);
      border: none;
      border-radius: var(--spa-radius-sm);
      color: var(--spa-navy);
      font-family: var(--spa-font-display);
      font-size: 18px;
      font-weight: 700;
      letter-spacing: .04em;
      cursor: pointer;
      transition: var(--spa-transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 8px;
    }
    .btn-spa-submit:hover {
      background: var(--spa-gold-light);
      box-shadow: var(--spa-shadow-gold-lg);
      transform: translateY(-1px);
    }
    .btn-spa-submit:active {
      background: var(--spa-gold-dark);
      transform: translateY(0);
    }
    .btn-spa-submit:disabled {
      opacity: 0.55;
      pointer-events: none;
    }
    .btn-spa-submit .btn-spinner {
      width: 18px; height: 18px;
      border: 2px solid rgba(var(--spa-navy-rgb), 0.3);
      border-top-color: var(--spa-navy);
      border-radius: 50%;
      animation: spa-spin 0.75s linear infinite;
      display: none;
    }
    .btn-spa-submit.loading .btn-spinner { display: block; }
    .btn-spa-submit.loading .btn-label   { opacity: 0.5; }

    @keyframes spa-spin { to { transform: rotate(360deg); } }

    /* ── Privacy note ────────────────────────────────────── */
    .privacy-note {
      margin-top: 14px;
      font-size: 11px;
      color: var(--spa-text-muted);
      text-align: center;
      line-height: 1.6;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 6px;
    }
    .privacy-note i { color: var(--spa-gold); opacity: .7; margin-top: 1px; flex-shrink: 0; }

    /* ── Success screen ──────────────────────────────────── */
    .success-screen {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 48px 24px;
      gap: 18px;
      animation: spa-slide-in 0.4s ease both;
    }
    .success-icon {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: rgba(var(--spa-gold-rgb), 0.12);
      border: 2px solid var(--spa-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: var(--spa-gold);
    }
    .success-title {
      font-family: var(--spa-font-display);
      font-size: 28px;
      font-weight: 700;
      color: var(--spa-white);
    }
    .success-desc {
      font-size: 13px;
      color: var(--spa-text-muted);
      max-width: 340px;
      line-height: 1.7;
    }

    /* ── Animation ───────────────────────────────────────── */
    @keyframes spa-slide-in {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .animate-field {
      animation: spa-slide-in 0.35s cubic-bezier(.4,0,.2,1) both;
    }

    /* ── Responsive ──────────────────────────────────────── */
    @media (max-width: 576px) {
      .form-inner { padding: 24px 18px 24px; }
      .form-title { font-size: 24px; }
    }
      /* Force the container itself above everything */
    .iti--container {
      z-index:   9999 !important;
      min-width: 260px !important;
    }
    .iti--container .iti__dropdown-content {
      background-color: #1C2D48 !important;
      border:           1px solid rgba(216,175,76,0.40) !important;
      border-radius:    10px !important;
      box-shadow:       0 8px 32px rgba(0,0,0,0.55) !important;
      overflow:         hidden !important;
    }
    .iti--container .iti__search-input {
      background:    rgba(255,255,255,0.06) !important;
      border:        none !important;
      border-bottom: 1px solid rgba(216,175,76,0.20) !important;
      border-radius: 0 !important;
      color:         var(--navy) !important;
      font-size:     13px !important;
      padding:       10px 14px !important;
      width:         100% !important;
      outline:       none !important;
      box-sizing:    border-box !important;
    }
    .iti--container .iti__search-input::placeholder { color: var(--blue) !important; }
    .iti--container .iti__country-list {
      background:      transparent !important;
      scrollbar-width: thin;
      scrollbar-color: rgba(216,175,76,0.3) transparent;
    }
    .iti--container .iti__country-list::-webkit-scrollbar       { width: 4px; }
    .iti--container .iti__country-list::-webkit-scrollbar-thumb { background: rgba(216,175,76,0.3); border-radius: 4px; }
    .iti--container .iti__country {
      background:  transparent !important;
      color:       rgba(255,255,255,0.75) !important;
      font-size:   13px !important;
      padding:     9px 14px !important;
    }
    .iti--container .iti__country.iti__highlight,
    .iti--container .iti__country:hover {
      background-color: rgba(216,175,76,0.14) !important;
      color:            #D8AF4C !important;
    }
    .iti--container .iti__country-name { color: inherit !important; }
    .iti--container .iti__dial-code    { color: rgba(216,175,76,0.65) !important; font-size: 12px !important; }
    .iti--container .iti__divider      { border-bottom: 1px solid rgba(216,175,76,0.12) !important; margin: 0 !important; }


        /* ── Page-specific styles only — nothing duplicated from spa-theme.css ── */

    body {
      background-color: var(--spa-navy);
      font-family:      var(--spa-font-body);
      color:            var(--spa-text-primary);
    }

    /* ── Top Nav ─────────────────────────────────────────── */
    .results-nav {
      background-color: var(--spa-navy);
      border-bottom:    1px solid var(--spa-border);
      padding:          14px 32px;
      display:          flex;
      align-items:      center;
      justify-content:  space-between;
      position:         sticky;
      top: 0;
      z-index: 100;
    }
    .nav-logo {
      font-family:    var(--spa-font-display);
      font-size:      18px;
      font-weight:    700;
      color:          var(--spa-white);
      letter-spacing: .04em;
      text-decoration: none;
    }
    .nav-logo span { color: var(--spa-gold); }

    /* ── Hero Banner ─────────────────────────────────────── */
    .results-hero {
      background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(35,54,87,0.7) 0%, transparent 60%),
        radial-gradient(ellipse 55% 40% at 90% 80%, rgba(216,175,76,0.07) 0%, transparent 55%),
        var(--spa-navy);
      border-bottom: 1px solid var(--spa-border);
      padding: 48px 0 40px;
    }
    .hero-eyebrow {
      font-size:      10px;
      font-weight:    500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color:          var(--spa-gold);
      margin-bottom:  10px;
    }
    .hero-title {
      font-family:  var(--spa-font-display);
      font-size:    42px;
      font-weight:  700;
      line-height:  1.15;
      color:        var(--spa-white);
      margin-bottom: 6px;
    }
    .hero-subtitle {
      font-size:   14px;
      color:       var(--spa-text-muted);
      max-width:   480px;
      line-height: 1.65;
    }

    /* total score block */
    .total-score-block {
      background:    var(--spa-surface);
      border:        1px solid var(--spa-border);
      border-radius: var(--spa-radius-lg);
      padding:       28px 32px;
      text-align:    center;
      height:        100%;
    }
    .total-score-block .score-number {
      font-family:  var(--spa-font-display);
      font-size:    72px;
      font-weight:  700;
      line-height:  1;
      color:        var(--spa-gold);
    }
    .total-score-block .score-denom {
      font-size: 22px;
      color:     var(--spa-text-muted);
    }
    .total-score-block .score-meta {
      font-size:      9px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color:          var(--spa-text-muted);
      margin-top:     4px;
    }

    /* tier badge inside hero */
    .tier-badge {
      display:       inline-flex;
      align-items:   center;
      gap:           8px;
      padding:       6px 14px;
      border-radius: var(--spa-radius-pill);
      font-size:     11px;
      font-weight:   600;
      letter-spacing: .06em;
      margin-bottom: 12px;
    }
    .tier-badge.critical { background: rgba(235,87,87,0.15);  border: 1px solid rgba(235,87,87,0.40);  color: #eb5757; }
    .tier-badge.warning  { background: rgba(216,175,76,0.15); border: 1px solid rgba(216,175,76,0.40); color: var(--spa-gold); }
    .tier-badge.good     { background: rgba(74,195,138,0.15); border: 1px solid rgba(74,195,138,0.40); color: #4ac38a; }

    .tier-title {
      font-family:  var(--spa-font-display);
      font-size:    26px;
      font-weight:  700;
      color:        var(--spa-white);
      line-height:  1.2;
      margin-bottom: 10px;
    }
    .tier-desc {
      font-size:   13px;
      color:       var(--spa-text-muted);
      line-height: 1.7;
    }

    /* ── Score Breakdown Grid ────────────────────────────── */
    .breakdown-section {
      padding: 48px 0 24px;
    }
    .breakdown-table {
      background:    var(--spa-surface);
      border:        1px solid var(--spa-border);
      border-radius: var(--spa-radius-lg);
      overflow:      hidden;
    }
    .breakdown-row {
      display:         flex;
      align-items:     center;
      justify-content: space-between;
      padding:         13px 20px;
      border-bottom:   1px solid rgba(255,255,255,0.05);
      gap:             12px;
      transition:      background var(--spa-transition);
    }
    .breakdown-row:last-child { border-bottom: none; }
    .breakdown-row:hover      { background: rgba(255,255,255,0.02); }

    .breakdown-num {
      font-family: var(--spa-font-display);
      font-size:   13px;
      font-weight: 700;
      color:       var(--spa-text-muted);
      min-width:   24px;
    }
    .breakdown-name {
      flex:      1;
      font-size: 13px;
      color:     var(--spa-text-secondary);
    }
    .breakdown-bar-wrap {
      flex:          1;
      max-width:     120px;
      height:        4px;
      background:    rgba(255,255,255,0.08);
      border-radius: var(--spa-radius-pill);
      overflow:      hidden;
    }
    .breakdown-bar {
      height:        100%;
      border-radius: var(--spa-radius-pill);
      transition:    width 0.8s ease;
    }
    .breakdown-bar.critical { background: #eb5757; }
    .breakdown-bar.warning  { background: var(--spa-gold); }
    .breakdown-bar.good     { background: #4ac38a; }

    .breakdown-score {
      font-family: var(--spa-font-display);
      font-size:   15px;
      font-weight: 700;
      min-width:   52px;
      text-align:  right;
    }
    .breakdown-score.critical { color: #eb5757; }
    .breakdown-score.warning  { color: var(--spa-gold); }
    .breakdown-score.good     { color: #4ac38a; }

    /* ── Section Detail Cards ────────────────────────────── */
    .sections-block { padding: 8px 0 48px; }

    .section-card {
      background:    var(--spa-surface);
      border:        1px solid var(--spa-border);
      border-radius: var(--spa-radius-lg);
      border-left:   4px solid transparent;
      margin-bottom: 16px;
      overflow:      hidden;
      transition:    var(--spa-transition);
    }
    .section-card.critical { border-left-color: #eb5757; }
    .section-card.warning  { border-left-color: var(--spa-gold); }
    .section-card.good     { border-left-color: #4ac38a; }

    .section-card-header {
      padding:         22px 24px 18px;
      display:         flex;
      align-items:     flex-start;
      justify-content: space-between;
      gap:             16px;
      cursor:          pointer;
      user-select:     none;
    }
    .section-card-header:hover { background: rgba(255,255,255,0.02); }

    .section-card-left { display: flex; align-items: flex-start; gap: 16px; flex: 1; }

    .section-card-score {
      flex-shrink: 0;
      text-align:  right;
    }
    .section-card-score .score-val {
      font-family: var(--spa-font-display);
      font-size:   28px;
      font-weight: 700;
      line-height: 1;
    }
    .section-card-score .score-val.critical { color: #eb5757; }
    .section-card-score .score-val.warning  { color: var(--spa-gold); }
    .section-card-score .score-val.good     { color: #4ac38a; }
    .section-card-score .score-of {
      font-size: 12px;
      color:     var(--spa-text-muted);
    }
    .section-card-score .score-lbl {
      font-size:      8px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color:          var(--spa-text-muted);
      display:        block;
      margin-top:     2px;
    }

    .section-card-title {
      font-family:   var(--spa-font-display);
      font-size:     20px;
      font-weight:   700;
      color:         var(--spa-white);
      line-height:   1.2;
      margin-bottom: 3px;
    }
    .section-severity-label {
      font-size:      10px;
      font-weight:    500;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .section-severity-label.critical { color: #eb5757; }
    .section-severity-label.warning  { color: var(--spa-gold); }
    .section-severity-label.good     { color: #4ac38a; }

    .section-card-chevron {
      color:      var(--spa-text-muted);
      font-size:  12px;
      transition: transform var(--spa-transition);
      flex-shrink: 0;
      margin-top: 4px;
    }
    .section-card.open .section-card-chevron { transform: rotate(180deg); }

    /* collapsible body */
    .section-card-body {
      display:       none;
      padding:       0 24px 24px;
      border-top:    1px solid rgba(255,255,255,0.05);
    }
    .section-card.open .section-card-body { display: block; }

    .fix-label {
      font-size:      9px;
      font-weight:    600;
      letter-spacing: .20em;
      text-transform: uppercase;
      color:          var(--spa-gold);
      margin:         18px 0 12px;
      display:        flex;
      align-items:    center;
      gap:            8px;
    }
    .fix-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--spa-border);
    }

    .fix-item {
      display:       flex;
      align-items:   flex-start;
      gap:           10px;
      padding:       10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      font-size:     13px;
      color:         var(--spa-text-secondary);
      line-height:   1.6;
    }
    .fix-item:last-child { border-bottom: none; }
    .fix-item-arrow {
      color:      var(--spa-gold);
      font-size:  11px;
      margin-top: 3px;
      flex-shrink: 0;
    }

    /* ── CTA / Offer Block ───────────────────────────────── */
    .offer-block {
      background:    var(--spa-surface);
      border:        1px solid var(--spa-border-strong);
      border-radius: var(--spa-radius-xl);
      padding:       40px 36px;
      position:      relative;
      overflow:      hidden;
    }
    .offer-block::before {
      content:  '';
      position: absolute;
      top: -60px; right: -60px;
      width:  200px; height: 200px;
      background: radial-gradient(circle, rgba(216,175,76,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .offer-eyebrow {
      font-size:      10px;
      font-weight:    500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color:          var(--spa-gold);
      margin-bottom:  10px;
    }
    .offer-title {
      font-family:   var(--spa-font-display);
      font-size:     28px;
      font-weight:   700;
      color:         var(--spa-white);
      line-height:   1.2;
      margin-bottom: 6px;
    }
    .offer-subtitle {
      font-size:     13px;
      color:         var(--spa-text-muted);
      line-height:   1.65;
      margin-bottom: 24px;
    }

    .price-row {
      display:     flex;
      align-items: baseline;
      gap:         10px;
      margin-bottom: 4px;
    }
    .price-main {
      font-family: var(--spa-font-display);
      font-size:   40px;
      font-weight: 700;
      color:       var(--spa-gold);
      line-height: 1;
    }
    .price-original {
      font-size:       15px;
      color:           var(--spa-text-muted);
      text-decoration: line-through;
    }
    .price-saving {
      font-size:   12px;
      color:       #4ac38a;
      font-weight: 500;
      margin-bottom: 24px;
    }

    .offer-feature {
      display:     flex;
      align-items: center;
      gap:         10px;
      font-size:   13px;
      color:       var(--spa-text-secondary);
      padding:     7px 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .offer-feature:last-of-type { border-bottom: none; }
    .offer-feature i { color: var(--spa-gold); font-size: 11px; flex-shrink: 0; }

    .offer-trust {
      display:     flex;
      align-items: center;
      gap:         6px;
      font-size:   11px;
      color:       var(--spa-text-muted);
      margin-top:  10px;
      justify-content: center;
    }
    .offer-trust i { color: var(--spa-gold); opacity: .7; }

    /* rating badge */
    .rating-chip {
      display:       flex;
      flex-direction: column;
      align-items:   center;
      gap:           2px;
      background:    rgba(255,255,255,0.04);
      border:        1px solid var(--spa-border);
      border-radius: var(--spa-radius);
      padding:       10px 16px;
      font-size:     11px;
      color:         var(--spa-text-muted);
    }
    .rating-chip strong {
      font-family: var(--spa-font-display);
      font-size:   20px;
      color:       var(--spa-gold);
    }

    /* ── Footer ──────────────────────────────────────────── */
    .results-footer {
      background-color: var(--spa-blue);
      border-top:       1px solid var(--spa-border);
      padding:          48px 0 32px;
      margin-top:       80px;
    }
    .footer-brand {
      font-family:  var(--spa-font-display);
      font-size:    20px;
      font-weight:  700;
      color:        var(--spa-white);
      margin-bottom: 8px;
    }
    .footer-brand span { color: var(--spa-gold); }
    .footer-tagline {
      font-size:   12px;
      color:       var(--spa-text-muted);
      line-height: 1.65;
      max-width:   260px;
    }
    .footer-heading {
      font-size:      10px;
      font-weight:    600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color:          var(--spa-gold);
      margin-bottom:  14px;
    }
    .footer-link {
      display:       block;
      font-size:     13px;
      color:         var(--spa-text-muted);
      text-decoration: none;
      padding:       4px 0;
      transition:    color var(--spa-transition);
    }
    .footer-link:hover { color: var(--spa-white); }
    .footer-contact {
      font-size:   12px;
      color:       var(--spa-text-muted);
      line-height: 1.8;
    }
    .footer-contact a { color: var(--spa-gold); text-decoration: none; }
    .footer-contact a:hover { color: var(--spa-gold-light); }
    .footer-bottom {
      border-top:  1px solid var(--spa-border);
      margin-top:  32px;
      padding-top: 20px;
      font-size:   11px;
      color:       var(--spa-text-muted);
    }

    /* ── Misc ────────────────────────────────────────────── */
    .section-label-block {
      padding: 32px 0 12px;
    }
    .cta-section { padding: 56px 0; }