 /* ── WIDGET SHELL ── */
  .quiz-widget {
    width: 100%;    
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 0 20px;
    box-shadow: 0 4px 20px rgba(28,36,75,.05);    
  }

  /* ── HEADER ── */
  .quiz-header {
    background: #467ff7;
    padding: 24px 28px 20px;
    position: relative;
    overflow: hidden;
  }
  /* .quiz-header::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0; height: 20px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 100%, 100% 40%, 0 100%);
  } */
  .quiz-badge {
    display: inline-block;
    background: #1c244b;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 2px 20px;
  }
  .quiz-header h2 {
      font-size: 28px;
      font-weight: 700;
      line-height: 1.15;
      margin: 15px 0;
      color: #fff;
  }
  .quiz-header h2 br {
    display: none;
  }
  .quiz-header h2 span { color: #1c244b; }
  .quiz-header p {    
    color: rgba(255,255,255,.8);
    margin: 0;  
    line-height: normal;
  }

  /* ── PROGRESS ── */
  .progress-wrap {
    padding: 18px 28px 0;
  }
  .progress-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
  }
  .progress-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
  }
  .progress-count {
    font-size: 14px;
    font-weight: 700;    
  }
  .progress-bar {
    height: 4px;
    background: #cdddff;
    border-radius: 99px;
    overflow: hidden;
  }
  .progress-fill {
    height: 100%;
    background: #467ff7;
    border-radius: 99px;
    transition: width .4s cubic-bezier(.4,0,.2,1);
  }

  /* ── QUESTION ── */
  .question-wrap {
    padding: 22px 28px 10px;
    min-height: 260px;
  }
  .q-number {
    font-size: 14px;
    font-weight: 700;    
    color: #467ff7;
    margin-bottom: 8px;
  }
  .q-text {    
    color: #324a6d;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 18px;
  }

  /* ── OPTIONS ── */
  .options {
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .opt {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 13px 16px;
    border: 2px solid #e2e6f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all .18s;
    background: #fff;
  }
  .opt:hover { border-color: #467ff7; background: rgba(70,127,247,.04); }
  .opt.selected { border-color: #467ff7; background: rgba(70,127,247,.08); }
  .opt-indicator {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid #e2e6f0;
    flex-shrink: 0;
    margin-top: 1px;
    display: flex; align-items: center; justify-content: center;
    transition: all .15s;
  }
  .opt.selected .opt-indicator {
    background: #467ff7;
    border-color: #467ff7;
  }
  .opt-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: white;
    display: none;
  }
  .opt.selected .opt-dot { display: block; }
  .opt-text { 
    font-size: 18px;
    font-weight: 600;    
    line-height: 24px; }
  .opt-sub  { 
    font-size: 14px; 
    line-height: 18px;
    color: #7e91ad;
  }

  /* ── NAV ── */
  .quiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-top: 2px solid #e2e6f0;
    margin-top: 20px;
    gap: 15px;
  }
  /* .btn-back {    
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-400);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 4px;
    display: flex; align-items: center; gap: 5px;
  }
  .btn-back:hover { color: var(--navy); } */
  .btn-back,
  .btn-next {
    min-width: max-content;
    padding: 12px 15px;
  }
  .btn-back i ,
  .btn-next i{
    width: auto;
    margin-left: 5px;
  }
  .btn-back i {
    margin-right: 5px;
    margin-left: 0;
  }

  @media (min-width: 767px) {
    .btn-back,
    .btn-next {
      min-width: max-content;
      padding: 12px 30px;
    }
  }

  .btn-back:disabled { opacity: 0; pointer-events: none; }
  /* .btn-next {    
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), #2d5fd4);
    border: none;
    border-radius: 8px;
    padding: 11px 24px;
    cursor: pointer;
    transition: opacity .15s;
    display: flex; align-items: center; gap: 6px;
  }
  .btn-next:hover { opacity: .9; } */
  .btn-next:disabled { opacity: .4; cursor: not-allowed; }

  /* ── RESULT ── */
  .result-wrap {
    display: none;
    padding: 28px 28px 32px;
  }
  .result-wrap.show { display: block; }
  .question-wrap.hidden { display: none; }

  .result-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .result-tag.buy    { background: rgba(29,170,115,.12); color: #0d7a4e; }
  .result-tag.lease  { background: rgba(70,127,247,.12); color: #467ff7; }
  .result-tag.hybrid { background: rgba(245,166,35,.12); color: #b87700; }

  .result-title {    
    font-size: 28px;
    font-weight: 700;        
    margin-bottom: 10px;
  }
  .result-body {
    font-size: 17px;    
    line-height: 24px;
    margin-bottom: 20px;
  }

  .result-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
  @media (max-width: 460px) { .result-cards { grid-template-columns: 1fr; } }
  .rc {
    border-radius: 10px;
    padding: 14px 16px;
    border: 1.5px solid #e2e6f0;
  }
  .rc.pro {
    border-color: rgba(29,170,115,.3);
    background: rgba(29,170,115,.04);
  }
  .rc.con  { border-color: rgba(232,54,93,.25); background: rgba(232,54,93,.03); }
  .rc-label {
    /* font-size: 10px; */
    font-weight: 700;
    margin-bottom: 8px;
  }
  .rc.pro .rc-label { color: #0d7a4e; }
  .rc.con .rc-label { color: #b81f40; }
  .rc ul { list-style: none; display: flex; flex-direction: column; gap: 0; margin: 0; }
  .rc ul li {
    font-size: 15px;
    /* color: var(--gray-700); */
    display: flex;
    gap: 12px;
    padding: 0;
}
  .rc ul li::before {
    font-size: 16px;
    flex-shrink: 0;
    position: relative;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: inherit;
    top: inherit;
    left: inherit;
    opacity: 1;
}
  .rc ul li::after, .rc.con ul li::after {display: none;}
  .rc.pro ul li::before { content: '✓'; color: #0d7a4e; font-weight: 800; }
  .rc.con ul li::before { content: '✗'; color: #b81f40; }
  

  
  .result-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    background: #f8f9fc;
    border: 1.5px solid #e2e6f0;
    border-radius: 10px;
    padding: 15px 25px;
  }
  .result-cta p { font-size: 17px; line-height: 22px; flex: 1; margin-bottom: 0; }
  .result-cta p strong { color: var(--navy); }
  .btn-cta {
    font-size: 17px;
    font-weight: 600;
    /* display: inline-block;
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
    color: var(--white);    
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 7px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0; */
  }
  .btn-cta:hover { opacity: .9; }

  .btn-retake {    
    font-size: 15px;
    font-weight: 500;    
    background: none;
    border: none;
    cursor: pointer;
    display: block;
    margin: 14px auto 0;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .btn-retake:hover { color: #0d6efd; }

  /* ── BRANDING ── */
  .quiz-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 0 16px;
    border-top: 2px solid #e2e6f0;
    margin-top: 0;
  }
  .quiz-brand span { font-size: 11px; color: var(--gray-400); }
  .quiz-brand svg { height: 18px; width: auto; opacity: .7; }

  /* ── TRANSITIONS ── */
  .question-wrap { animation: fadeUp .25s ease both; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 767px) {
    .question-wrap {padding: 20px 20px 10px;}
    .progress-wrap {padding: 20px 20px 0;}
    .quiz-header, .quiz-nav {padding: 20px;}
    .opt-text {font-size: 16px; line-height: 22px;}
    .result-title {font-size: 20px;}
  }