
.ceq-wrap{
  --ceq-primary:#062435;
  --ceq-accent:#0f5b8d;
  --ceq-cta:#F5E61A;
  --ceq-cta-hover:#E6D815;
  --ceq-ink:#062435;
  --ceq-muted:#5d6c76;
  --ceq-line:#E5ECF5;
  --ceq-soft:#F7FAFC;
  max-width:980px;
  margin:24px auto;
  padding:12px;
  font-family:"Be Vietnam Pro",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ceq-ink);
}

.ceq-wrap *,
.ceq-wrap *::before,
.ceq-wrap *::after{
  box-sizing:border-box;
}

.ceq-card{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--ceq-line);
  box-shadow:0 8px 24px rgba(4,52,124,.08);
  min-height:520px;
}

.ceq-card:before,
.ceq-grid-glow{
  display:none;
}

.ceq-progress{
  height:8px;
  background:#EAF1F7;
  position:relative;
  z-index:2;
}

.ceq-progress span{
  display:block;
  height:100%;
  width:0;
  background:var(--ceq-primary);
  transition:width .32s cubic-bezier(.22,1,.36,1);
}

.ceq-screen{
  display:none;
  position:relative;
  z-index:3;
  padding:48px;
}

.ceq-screen.is-active{
  display:block;
  animation:ceqFade .24s cubic-bezier(.22,1,.36,1);
}

@keyframes ceqFade{
  from{opacity:0;transform:translateY(10px)}
  to{opacity:1;transform:none}
}


.ceq-eyebrow{
  display:inline-block;
  margin:0 0 14px;
  color:var(--ceq-primary);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.ceq-start h2,
.ceq-result-screen h3{
  font-size:clamp(32px,5vw,54px);
  line-height:1.08;
  margin:0 0 18px;
  color:var(--ceq-primary);
  letter-spacing:-.04em;
  max-width:720px;
}

.ceq-lead{
  font-size:clamp(17px,2vw,21px);
  line-height:1.55;
  max-width:680px;
  color:#415461;
  margin:0 0 26px;
}

.ceq-promise{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:24px 0 32px;
}

.ceq-promise span,
.ceq-result-stats span{
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--ceq-line);
  color:var(--ceq-primary);
  font-weight:700;
  font-size:13px;
}

.ceq-promise span:before{
  content:"✓";
  color:var(--ceq-primary);
  margin-right:7px;
}

.ceq-btn,
.ceq-back-link,
.ceq-answer,
.ceq-info-toggle{
  -webkit-appearance:none;
  appearance:none;
  font-family:inherit;
}

.ceq-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  border:0;
  border-radius:999px;
  padding:15px 24px;
  font-size:15px;
  font-weight:500;
  cursor:pointer;
  line-height:1;
  text-decoration:none !important;
  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    border-color .3s ease,
    background-color .3s ease,
    color .3s ease;
  box-shadow:none !important;
  outline:none !important;
  position:relative;
  overflow:hidden;
  z-index:1;
}

.ceq-btn:hover{
  transform:scale(1.03) translateY(-2px);
  box-shadow:none !important;
}

.ceq-btn:focus,
.ceq-btn:focus-visible,
.ceq-back-link:focus,
.ceq-back-link:focus-visible,
.ceq-info-toggle:focus,
.ceq-info-toggle:focus-visible,
.ceq-answer:focus,
.ceq-answer:focus-visible{
  outline:none !important;
  box-shadow:none !important;
}

.ceq-btn:disabled{
  opacity:.42;
  cursor:not-allowed;
  transform:none;
}

.ceq-primary{
  color:var(--ceq-primary);
  border:0;
  background:var(--ceq-cta);
}

.ceq-primary:before{
  content:"";
  position:absolute;
  inset:0;
  width:0%;
  background:var(--ceq-cta-hover);
  z-index:-1;
  transition:width .35s cubic-bezier(.22,1,.36,1);
}

.ceq-primary:hover:before{
  width:100%;
}

.ceq-secondary{
  color:var(--ceq-primary);
  border:1px solid var(--ceq-line);
  background:#fff;
}

.ceq-question-panel,
.ceq-lead-form,
.ceq-priority{
  background:#fff;
  border-radius:18px;
  border:1px solid var(--ceq-line);
  box-shadow:0 8px 24px rgba(4,52,124,.06);
  padding:30px;
}

.ceq-question-top{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  margin-bottom:24px;
}

.ceq-question-meta{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.ceq-count,
.ceq-mini-score,
.ceq-auto-note{
  font-size:13px;
  font-weight:800;
  color:#647887;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.ceq-mini-score{
  color:var(--ceq-primary);
}

.ceq-back-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  border:1px solid var(--ceq-line);
  background:#fff;
  color:var(--ceq-primary);
  border-radius:999px;
  padding:10px 16px;
  font-weight:500;
  cursor:pointer;
  transition:transform .3s ease, border-color .3s ease, background-color .3s ease;
}

.ceq-back-link:hover{
  transform:translateY(-2px);
  background:#fff;
  border-color:#ccd9e6;
}

.ceq-question-screen h3{
  font-size:clamp(28px,4vw,42px);
  line-height:1.14;
  letter-spacing:-.035em;
  margin:0 0 16px;
  color:var(--ceq-primary);
  max-width:760px;
}

.ceq-info-toggle{
  display:inline-flex;
  gap:10px;
  align-items:center;
  border:1px solid var(--ceq-line);
  background:#fff;
  color:var(--ceq-primary);
  padding:10px 14px;
  border-radius:999px;
  font-weight:500;
  cursor:pointer;
  margin:0 0 14px;
  transition:transform .3s ease, border-color .3s ease;
}

.ceq-info-toggle:hover{
  transform:translateY(-1px);
  border-color:#c7d7e6;
}

.ceq-info-icon{
  width:22px;
  height:22px;
  border-radius:999px;
  background:var(--ceq-primary);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:800;
  line-height:1;
}

.ceq-info{
  background:#fff;
  border:1px solid var(--ceq-line);
  padding:15px 17px;
  border-radius:16px;
  color:#415461;
  margin:0 0 20px;
  line-height:1.55;
}

.ceq-answers{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin:26px 0 18px;
}

.ceq-answer{
  position:relative;
  text-align:left;
  border:1px solid var(--ceq-line);
  background:#fff;
  border-radius:18px;
  padding:22px 20px 20px;
  cursor:pointer;
  min-height:126px;
  transition:border-color .3s ease, box-shadow .3s ease, transform .3s ease, background-color .3s ease;
  box-shadow:none;
}

.ceq-answer-dot{
  display:block;
  width:30px;
  height:5px;
  background:#D7E4EF;
  border-radius:999px;
  margin-bottom:18px;
  transition:background .3s ease,width .3s ease;
}

.ceq-answer strong{
  display:block;
  font-size:23px;
  color:var(--ceq-primary);
  margin-bottom:7px;
  letter-spacing:-.02em;
}

.ceq-answer small{
  color:#647887;
  font-weight:700;
}

.ceq-answer:hover{
  border-color:var(--ceq-primary);
  box-shadow:0 12px 28px rgba(4,52,124,.08);
  transform:translateY(-2px);
  background:#fff;
}

.ceq-answer:hover .ceq-answer-dot,
.ceq-answer.is-selected .ceq-answer-dot{
  background:var(--ceq-primary);
  width:42px;
}

.ceq-answer.is-selected{
  border-color:var(--ceq-primary);
  background:#fff;
  box-shadow:0 12px 28px rgba(4,52,124,.10);
  transform:translateY(-2px);
}

.ceq-nav,
.ceq-form-actions{
  display:flex;
  justify-content:space-between;
  gap:14px;
  margin-top:24px;
  align-items:center;
}

.ceq-result-hero{
  text-align:center;
  color:var(--ceq-primary);
  max-width:800px;
  margin:0 auto 24px;
}

.ceq-score-ring{
  --ceq-score:0%;
  width:148px;
  height:148px;
  border-radius:999px;
  margin:0 auto 22px;
  display:flex;
  align-items:baseline;
  justify-content:center;
  background:radial-gradient(circle at center,#fff 58%,transparent 59%), conic-gradient(var(--ceq-primary) var(--ceq-score), #E5ECF5 0);
  box-shadow:none;
  padding-top:44px;
  box-sizing:border-box;
  color:var(--ceq-primary);
}

.ceq-score-ring strong{
  font-size:52px;
  line-height:1;
}

.ceq-score-ring span{
  font-size:20px;
  font-weight:800;
  color:#5d6c76;
}

.ceq-result-screen p{
  font-size:17px;
  color:#415461;
  line-height:1.6;
  max-width:700px;
  margin:0 auto 20px;
}

.ceq-result-stats{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin:24px 0 12px;
}

.ceq-priority{
  margin:0 auto 22px;
  max-width:760px;
}

.ceq-priority h4,
.ceq-lead-form h4{
  font-size:25px;
  line-height:1.15;
  margin:0 0 16px;
  color:var(--ceq-primary);
  letter-spacing:-.03em;
}

.ceq-priority p{
  color:var(--ceq-muted);
  margin:0;
}

.ceq-priority ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.ceq-priority li{
  border:1px solid var(--ceq-line);
  background:#fff;
  border-radius:16px;
  padding:14px 15px;
}

.ceq-priority li strong{
  display:block;
  color:var(--ceq-primary);
  margin-bottom:5px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.ceq-priority li span{
  display:block;
  color:#3f515c;
  line-height:1.45;
}

.ceq-priority-more{
  font-weight:800;
  margin-top:14px !important;
  color:var(--ceq-primary) !important;
}

.ceq-lead-form{
  max-width:760px;
  margin:0 auto;
  color:var(--ceq-ink);
}

.ceq-form-intro{
  font-size:15px !important;
  color:var(--ceq-muted) !important;
  max-width:none !important;
  margin:0 0 18px !important;
}

.ceq-fields{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.ceq-fields label{
  font-weight:800;
  font-size:13px;
  color:#415461;
}

.ceq-fields input{
  display:block;
  width:100%;
  margin-top:7px;
  border:1px solid #CBDDE6;
  border-radius:14px;
  padding:13px 14px;
  font-size:16px;
  background:#fff;
  color:var(--ceq-primary);
  font-family:"Be Vietnam Pro",system-ui,sans-serif;
}

.ceq-fields input:focus{
  outline:0;
  border-color:var(--ceq-primary);
  box-shadow:none;
}

.ceq-consent{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin:18px 0;
  color:#4a5c67;
  line-height:1.4;
  font-size:14px;
}

.ceq-consent input{
  margin-top:4px;
}

.ceq-form-msg{
  min-height:22px;
  font-weight:800;
}

.ceq-form-msg.is-success{
  color:#067647;
}

.ceq-form-msg.is-error{
  color:#B42318;
}

.ceq-cta{
  display:inline-block;
  margin-top:8px;
  font-weight:800;
  color:var(--ceq-primary);
  text-decoration:none !important;
}

.ceq-cta:hover{
  text-decoration:underline !important;
}

.ceq-footer-note{
  position:relative;
  z-index:3;
  padding:0 48px 28px;
  color:#647887;
  font-size:13px;
}

.is-submitted button[type=submit]{
  display:none;
}

@media (max-width: 980px){
  .ceq-screen{
    padding:40px 30px;
  }

  .ceq-question-panel,
  .ceq-lead-form,
  .ceq-priority{
    padding:24px;
  }
}

@media (max-width: 760px){
  .ceq-wrap{
    padding:6px;
    margin:10px auto;
  }

  .ceq-card{
    border-radius:18px;
    min-height:unset;
  }

  .ceq-progress{
    height:6px;
  }

  .ceq-screen{
    padding:24px 16px;
  }

  .ceq-question-panel,
  .ceq-lead-form,
  .ceq-priority{
    border-radius:16px;
    padding:20px 16px;
  }

  .ceq-question-top{
    align-items:stretch;
    flex-direction:column;
    margin-bottom:18px;
  }

  .ceq-question-meta{
    justify-content:space-between;
  }

  .ceq-answers,
  .ceq-fields{
    grid-template-columns:1fr;
  }

  .ceq-answer{
    min-height:auto;
    padding:18px 16px;
  }

  .ceq-answer strong{
    font-size:21px;
  }

  .ceq-nav,
  .ceq-form-actions{
    align-items:stretch;
    flex-direction:column;
  }

  .ceq-auto-note{
    text-align:center;
  }

  .ceq-footer-note{
    padding:0 16px 20px;
    font-size:12px;
  }

  .ceq-start h2,
  .ceq-result-screen h3,
  .ceq-question-screen h3{
    font-size:30px;
    line-height:1.14;
  }

  .ceq-lead{
    font-size:16px;
  }

  .ceq-promise{
    margin-bottom:24px;
  }

  .ceq-promise span,
  .ceq-result-stats span{
    width:100%;
    justify-content:flex-start;
    text-align:left;
  }

  .ceq-score-ring{
    width:128px;
    height:128px;
    padding-top:36px;
  }

  .ceq-score-ring strong{
    font-size:46px;
  }
}

@media (max-width: 420px){
  .ceq-screen{
    padding:20px 12px;
  }

  .ceq-question-panel,
  .ceq-lead-form,
  .ceq-priority{
    padding:18px 14px;
  }

  .ceq-back-link,
  .ceq-btn{
    width:100%;
  }

  .ceq-count,
  .ceq-mini-score,
  .ceq-auto-note{
    font-size:12px;
  }
}

/* Network button wipe treatment: yellow pill, left to right wipe, no red theme overlay, no outline, no drop shadow. */
.ceq-wrap .ceq-btn,
.ceq-wrap .ceq-back-link,
.ceq-wrap .ceq-answer,
.ceq-wrap .ceq-info-toggle{
  box-shadow:none !important;
  outline:none !important;
  text-decoration:none !important;
}

.ceq-wrap .ceq-btn{
  position:relative !important;
  overflow:hidden !important;
  z-index:1 !important;
}

.ceq-wrap .ceq-primary,
.ceq-wrap .ceq-primary:visited,
.ceq-wrap .ceq-primary:active,
.ceq-wrap .ceq-primary:focus{
  background:#F5E61A !important;
  background-image:none !important;
  color:#062435 !important;
  border:0 !important;
  box-shadow:none !important;
  outline:none !important;
}

.ceq-wrap .ceq-primary::before{
  content:"" !important;
  display:block !important;
  position:absolute !important;
  inset:0 !important;
  width:0% !important;
  height:100% !important;
  background:#E6D815 !important;
  z-index:-1 !important;
  transition:width .35s cubic-bezier(.22,1,.36,1) !important;
}

.ceq-wrap .ceq-primary::after{
  content:none !important;
  display:none !important;
}

.ceq-wrap .ceq-primary:hover{
  background:#F5E61A !important;
  background-image:none !important;
  color:#062435 !important;
  transform:scale(1.03) translateY(-2px);
  box-shadow:none !important;
}

.ceq-wrap .ceq-primary:hover::before{
  width:100% !important;
}

.ceq-wrap .ceq-secondary,
.ceq-wrap .ceq-secondary:visited,
.ceq-wrap .ceq-secondary:active,
.ceq-wrap .ceq-secondary:focus{
  background:#fff !important;
  background-image:none !important;
  color:#062435 !important;
  border:1px solid #E5ECF5 !important;
  box-shadow:none !important;
  outline:none !important;
}

.ceq-wrap .ceq-secondary::before,
.ceq-wrap .ceq-secondary::after,
.ceq-wrap .ceq-back-link::before,
.ceq-wrap .ceq-back-link::after,
.ceq-wrap .ceq-answer::before,
.ceq-wrap .ceq-answer::after,
.ceq-wrap .ceq-info-toggle::before,
.ceq-wrap .ceq-info-toggle::after{
  content:none !important;
  display:none !important;
}

.ceq-wrap .ceq-secondary:hover,
.ceq-wrap .ceq-back-link:hover{
  background:#fff !important;
  border-color:#ccd9e6 !important;
  box-shadow:none !important;
}

/* Button font refinement */
.ceq-wrap .ceq-btn,
.ceq-wrap .ceq-back-link,
.ceq-wrap .ceq-info-toggle{
  font-family:"Be Vietnam Pro",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-weight:500 !important;
}


/* More info button refinement: light grey interaction state, no red theme highlight. */
.ceq-wrap .ceq-info-toggle,
.ceq-wrap .ceq-info-toggle:visited{
  background:#fff !important;
  color:#062435 !important;
  border-color:#E5ECF5 !important;
  -webkit-tap-highlight-color:rgba(229,236,245,.45);
}

.ceq-wrap .ceq-info-toggle:hover,
.ceq-wrap .ceq-info-toggle:focus,
.ceq-wrap .ceq-info-toggle:focus-visible,
.ceq-wrap .ceq-info-toggle:active,
.ceq-wrap .ceq-info-toggle[aria-expanded="true"]{
  background:#F3F4F6 !important;
  color:#062435 !important;
  border-color:#D9E2EC !important;
  outline:none !important;
  box-shadow:none !important;
}

.ceq-wrap .ceq-info-toggle *::selection,
.ceq-wrap .ceq-info-toggle::selection{
  background:#E5E7EB !important;
  color:#062435 !important;
}
