:root {
  --wsq-navy: #1B2768;
  --wsq-mid: #2A429E;
  --wsq-orange: #F1582A;
  --wsq-od: #d94820;
  --wsq-white: #FFFFFF;
  --wsq-off: #F5F7FF;
  --wsq-td: #0D1117;
  --wsq-tm: #4a4f6b;
  --wsq-tl: #8890b0;
  --wsq-bdr: rgba(3,80,194,0.13);
  --wsq-font: 'Montserrat', 'Segoe UI', sans-serif;
}

#wsq-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,20,60,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: var(--wsq-font);
}

#wsq-overlay.wsq-open {
  display: flex;
}

#wsq-card {
  background: var(--wsq-white);
  border-radius: 24px;
  padding: 36px 32px 32px;
  max-width: 500px;
  width: 100%;
  position: relative;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  animation: wsqIn .32s cubic-bezier(.16,1,.3,1) both;
}

@keyframes wsqIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#wsq-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--wsq-bdr);
  background: var(--wsq-off);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--wsq-tm);
  font-size: 15px;
  transition: all .15s;
  line-height: 1;
}

#wsq-close:hover {
  background: #e4e7f5;
  color: var(--wsq-td);
}

.wsq-prog {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.wsq-prog-bar {
  flex: 1;
  height: 4px;
  background: #e8eaf6;
  border-radius: 2px;
  overflow: hidden;
}

.wsq-prog-fill {
  height: 100%;
  background: var(--wsq-orange);
  border-radius: 2px;
  transition: width .45s cubic-bezier(.16,1,.3,1);
}

.wsq-prog-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--wsq-tl);
  font-variant-numeric: tabular-nums;
  min-width: 28px;
  text-align: right;
}

.wsq-wrap {
  transition: opacity .18s, transform .18s;
}

.wsq-wrap.wsq-out {
  opacity: 0;
  transform: translateX(-14px);
}

.wsq-wrap.wsq-in {
  opacity: 0;
  transform: translateX(14px);
}

.wsq-eye {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wsq-orange);
  margin-bottom: 8px;
}

.wsq-q {
  font-size: 21px;
  font-weight: 900;
  color: var(--wsq-td);
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 6px;
}

.wsq-sub {
  font-size: 13px;
  color: var(--wsq-tm);
  line-height: 1.65;
  margin-bottom: 22px;
}

.wsq-opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.wsq-opt {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border: 1.5px solid var(--wsq-bdr);
  border-radius: 12px;
  background: var(--wsq-white);
  cursor: pointer;
  transition: all .15s;
  text-align: left;
  font-family: var(--wsq-font);
  width: 100%;
}

.wsq-opt:hover {
  border-color: rgba(241,88,42,.3);
  background: #fff9f7;
}

.wsq-opt.wsq-sel {
  border-color: var(--wsq-orange);
  background: #fff3ee;
  animation: wsqPop .2s ease;
}

@keyframes wsqPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.015);
  }
  100% {
    transform: scale(1);
  }
}

.wsq-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #d0d3e8;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}

.wsq-opt.wsq-sel .wsq-dot {
  border-color: var(--wsq-orange);
  background: var(--wsq-orange);
}

.wsq-dot-inner {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  opacity: 0;
  transform: scale(0);
  transition: all .15s;
}

.wsq-opt.wsq-sel .wsq-dot-inner {
  opacity: 1;
  transform: scale(1);
}

.wsq-opt-txt {
  flex: 1;
}

.wsq-opt-lbl {
  font-size: 14px;
  font-weight: 600;
  color: var(--wsq-td);
  display: block;
}

.wsq-opt-sub {
  font-size: 12px;
  color: var(--wsq-tm);
  display: block;
  margin-top: 1px;
}

.wsq-nav {
  display: flex;
  gap: 10px;
}

.wsq-back {
  padding: 12px 18px;
  border: 1.5px solid var(--wsq-bdr);
  border-radius: 50px;
  background: var(--wsq-white);
  color: var(--wsq-tm);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--wsq-font);
  cursor: pointer;
  transition: all .15s;
}

.wsq-back:hover {
  background: var(--wsq-off);
}

.wsq-next {
  flex: 1;
  padding: 13px 22px;
  border: none;
  border-radius: 50px;
  background: var(--wsq-navy);
  color: white;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--wsq-font);
  cursor: pointer;
  transition: all .2s;
}

.wsq-next:hover:not(:disabled) {
  background: var(--wsq-mid);
  transform: translateY(-1px);
}

.wsq-next:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.wsq-r-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(241,88,42,.1);
  border: 1px solid rgba(241,88,42,.25);
  color: var(--wsq-orange);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.wsq-r-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--wsq-td);
  letter-spacing: -.6px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.wsq-r-title .wsq-accent {
  color: var(--wsq-orange);
}

.wsq-r-tagline {
  font-size: 13px;
  font-weight: 700;
  color: var(--wsq-orange);
  letter-spacing: .3px;
  margin-bottom: 10px;
  margin-top: -4px;
}

.wsq-r-desc {
  font-size: 13px;
  color: var(--wsq-tm);
  line-height: 1.65;
  margin-bottom: 14px;
}

.wsq-r-why {
  font-size: 14px;
  color: var(--wsq-tm);
  line-height: 1.75;
  margin-bottom: 20px;
}

.wsq-r-card {
  background: var(--wsq-off);
  border: 1px solid var(--wsq-bdr);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}

.wsq-r-plan-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--wsq-tl);
  margin-bottom: 6px;
}

.wsq-r-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}

.wsq-r-setup {
  font-size: 34px;
  font-weight: 900;
  color: var(--wsq-orange);
  letter-spacing: -1.5px;
}

.wsq-r-sep {
  color: var(--wsq-tl);
  font-size: 14px;
}

.wsq-r-mo {
  font-size: 15px;
  font-weight: 700;
  color: var(--wsq-td);
}

.wsq-r-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.wsq-r-features li {
  font-size: 13px;
  color: var(--wsq-tm);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5;
}

.wsq-r-features li::before {
  content: '✓';
  color: #2a9d5c;
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.wsq-r-cta {
  display: block;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 50px;
  background: var(--wsq-orange);
  color: white;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--wsq-font);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all .2s;
  margin-bottom: 10px;
}

.wsq-r-cta:hover {
  background: var(--wsq-od);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(241,88,42,.3);
}

.wsq-r-fine {
  text-align: center;
  font-size: 11px;
  color: var(--wsq-tl);
  margin-bottom: 12px;
}

.wsq-restart {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: var(--wsq-tl);
  background: none;
  border: none;
  font-family: var(--wsq-font);
  cursor: pointer;
  padding: 4px;
  text-decoration: underline;
}

.wsq-restart:hover {
  color: var(--wsq-tm);
}

@media (max-width: 540px) {
  #wsq-card {
    padding: 28px 18px 24px;
    border-radius: 20px;
  }

  .wsq-q {
    font-size: 18px;
  }

  .wsq-r-title {
    font-size: 20px;
  }
}