/* ── RESET TOTAL: blinda el quiz contra el tema de WordPress ── */
#asq-root {
  all: initial !important;
  display: block !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  color: hsl(270,40%,20%) !important;
  box-sizing: border-box !important;
  --asq-vp: hsl(270,60%,45%);
  --asq-vd: hsl(270,50%,25%);
  --asq-vl: hsl(270,50%,70%);
  --asq-pw: hsl(330,70%,70%);
  --asq-gr: hsl(45,80%,60%);
  --asq-aq: hsl(180,60%,65%);
  --asq-go: linear-gradient(135deg,hsl(270,60%,25%) 0%,hsl(285,55%,30%) 30%,hsl(310,60%,35%) 60%,hsl(330,65%,38%) 85%,hsl(270,50%,28%) 100%);
  --asq-gs: linear-gradient(135deg,hsl(270,30%,96%) 0%,hsl(330,40%,95%) 25%,hsl(180,40%,92%) 50%,hsl(45,70%,90%) 75%,hsl(270,25%,96%) 100%);
}

/* Reset completo de todos los hijos */
#asq-root *,
#asq-root *::before,
#asq-root *::after {
  all: unset !important;
  box-sizing: border-box !important;
}

/* Re-aplicar display correcto a los contenedores */
#asq-root div,
#asq-root section,
#asq-root form,
#asq-root header,
#asq-root footer { display: block !important; }

#asq-root span,
#asq-root label,
#asq-root strong,
#asq-root em { display: inline !important; }

#asq-root p { display: block !important; margin: 0 !important; padding: 0 !important; }
#asq-root h2 { display: block !important; margin: 0 !important; padding: 0 !important; }

/* ── VARIABLES ACCESIBLES ─────────────────────────── */
#asq-root .asq-wrap,
#asq-root .asq-card,
#asq-root .asq-page,
#asq-root .asq-popup-overlay {
  --asq-vp: hsl(270,60%,45%);
  --asq-vd: hsl(270,50%,25%);
  --asq-vl: hsl(270,50%,70%);
  --asq-pw: hsl(330,70%,70%);
  --asq-gr: hsl(45,80%,60%);
  --asq-go: linear-gradient(135deg,hsl(270,60%,25%) 0%,hsl(285,55%,30%) 30%,hsl(310,60%,35%) 60%,hsl(330,65%,38%) 85%,hsl(270,50%,28%) 100%);
  --asq-gs: linear-gradient(135deg,hsl(270,30%,96%) 0%,hsl(330,40%,95%) 25%,hsl(180,40%,92%) 50%,hsl(45,70%,90%) 75%,hsl(270,25%,96%) 100%);
}

/* ── WRAPPER EXTERIOR ─────────────────────────────── */
#asq-root .asq-wrap {
  display: block !important;
  background: var(--asq-gs) !important;
  border-radius: 2rem !important;
  padding: 1rem !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 420px !important;
  width: 100% !important;
}

/* ── PARTÍCULAS ───────────────────────────────────── */
#asq-root .asq-particles {
  display: block !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important; height: 100% !important;
  pointer-events: none !important;
  z-index: 0 !important;
  overflow: hidden !important;
}
#asq-root .asq-particle {
  display: block !important;
  position: absolute !important;
  border-radius: 50% !important;
  opacity: 0 !important;
  animation-name: asq-float !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
  animation-fill-mode: both !important;
  will-change: transform, opacity !important;
}
@keyframes asq-float {
  0%   { transform: translateY(110%) rotate(0deg);   opacity: 0;    }
  8%   { opacity: 0.25; }
  92%  { opacity: 0.18; }
  100% { transform: translateY(-80px) rotate(540deg); opacity: 0;    }
}

/* ── CARD ─────────────────────────────────────────── */
#asq-root .asq-card {
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(20px) !important;
  border-radius: 1.75rem !important;
  padding: 2.5rem 2rem !important;
  max-width: 660px !important;
  margin: 0 auto !important;
  box-shadow: 0 8px 60px hsl(270,50%,25%, 0.14), 0 2px 20px hsl(330,70%,70%, 0.1) !important;
  border: 1px solid hsl(270,30%,88%) !important;
}

/* ── PÁGINAS ──────────────────────────────────────── */
#asq-root .asq-page {
  display: none !important;
}
#asq-root .asq-page.asq-active {
  display: block !important;
  animation: asq-in 0.4s cubic-bezier(0.22,1,0.36,1) both !important;
}
@keyframes asq-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

/* ── BRAND ────────────────────────────────────────── */
#asq-root .asq-brand {
  display: block !important;
  text-align: center !important;
  margin-bottom: 1.75rem !important;
}
#asq-root .asq-brand-dot {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background: var(--asq-go) !important;
  margin: 0 auto 0.6rem !important;
  font-size: 1.3rem !important;
  box-shadow: 0 4px 20px hsl(270,60%,45%, 0.4) !important;
}

/* ── BARRA DE PROGRESO ────────────────────────────── */
#asq-root .asq-progress-wrap {
  display: block !important;
  margin-bottom: 1.75rem !important;
}
#asq-root .asq-progress-labels {
  display: flex !important;
  justify-content: space-between !important;
  font-size: 0.72rem !important;
  color: hsl(270,20%,55%) !important;
  margin-bottom: 0.4rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  font-family: 'Jost', sans-serif !important;
}
#asq-root .asq-progress-labels span {
  display: inline !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.72rem !important;
  color: hsl(270,20%,55%) !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}
#asq-root .asq-progress-bar {
  display: block !important;
  height: 4px !important;
  background: hsl(270,30%,90%) !important;
  border-radius: 99px !important;
  overflow: hidden !important;
}
#asq-root .asq-progress-fill {
  display: block !important;
  height: 100% !important;
  background: var(--asq-go) !important;
  border-radius: 99px !important;
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1) !important;
}

/* ── FASE BADGE ───────────────────────────────────── */
#asq-root .asq-fase-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  background: hsl(270,30%,92%) !important;
  color: var(--asq-vp) !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 0.28rem 0.7rem !important;
  border-radius: 99px !important;
  margin-bottom: 1rem !important;
  font-family: 'Jost', sans-serif !important;
}
#asq-root .asq-fase-badge span {
  display: inline-block !important;
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: var(--asq-vp) !important;
  flex-shrink: 0 !important;
}

/* ── INSTRUCCIÓN ──────────────────────────────────── */
#asq-root .asq-instruccion {
  display: block !important;
  font-size: 0.78rem !important;
  color: hsl(270,20%,55%) !important;
  margin-bottom: 0.6rem !important;
  font-style: italic !important;
  font-family: 'Jost', sans-serif !important;
  line-height: 1.4 !important;
}

/* ── PREGUNTA ─────────────────────────────────────── */
#asq-root .asq-q-num {
  display: block !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 0.82rem !important;
  color: var(--asq-pw) !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  margin-bottom: 0.4rem !important;
}
#asq-root .asq-q-text {
  display: block !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.4rem !important;
  line-height: 1.45 !important;
  color: hsl(270,40%,20%) !important;
  margin-bottom: 1.75rem !important;
  font-weight: 400 !important;
}
#asq-root .asq-q-text em {
  display: inline !important;
  color: var(--asq-vp) !important;
  font-style: italic !important;
  font-family: 'Cormorant Garamond', serif !important;
}

/* ── LANDING TEXTS ────────────────────────────────── */
#asq-root .asq-eyebrow {
  display: block !important;
  text-align: center !important;
  font-size: 0.73rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--asq-pw) !important;
  margin-bottom: 0.9rem !important;
  font-family: 'Jost', sans-serif !important;
}
#asq-root .asq-title {
  display: block !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem) !important;
  line-height: 1.2 !important;
  text-align: center !important;
  color: hsl(270,40%,18%) !important;
  margin-bottom: 0.9rem !important;
  font-weight: 300 !important;
}
#asq-root .asq-title strong {
  display: inline !important;
  font-weight: 600 !important;
  color: var(--asq-vp) !important;
  font-family: 'Cormorant Garamond', serif !important;
}
#asq-root .asq-subtitle {
  display: block !important;
  text-align: center !important;
  font-size: 0.92rem !important;
  line-height: 1.65 !important;
  color: hsl(270,20%,45%) !important;
  margin-bottom: 0.7rem !important;
  font-family: 'Jost', sans-serif !important;
}

/* ── BADGES ───────────────────────────────────────── */
#asq-root .asq-badges {
  display: flex !important;
  justify-content: center !important;
  gap: 0.85rem !important;
  flex-wrap: wrap !important;
  margin-bottom: 1.75rem !important;
}
#asq-root .asq-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  background: hsl(270,30%,93%) !important;
  color: var(--asq-vp) !important;
  font-size: 0.73rem !important;
  font-weight: 500 !important;
  padding: 0.3rem 0.8rem !important;
  border-radius: 99px !important;
  font-family: 'Jost', sans-serif !important;
}

/* ── ESCALA 0–5 ───────────────────────────────────── */
#asq-root .asq-escala-wrap {
  display: block !important;
  margin-bottom: 1.75rem !important;
}
#asq-root .asq-escala-labels {
  display: flex !important;
  justify-content: space-between !important;
  font-size: 0.68rem !important;
  color: hsl(270,20%,55%) !important;
  margin-bottom: 0.6rem !important;
  font-weight: 500 !important;
  font-family: 'Jost', sans-serif !important;
}
#asq-root .asq-escala-labels span {
  display: inline !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.68rem !important;
  color: hsl(270,20%,55%) !important;
}
#asq-root .asq-escala-opts {
  display: flex !important;
  gap: 0.5rem !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}
#asq-root .asq-num-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  border-radius: 50% !important;
  border: 2px solid hsl(270,20%,85%) !important;
  background: white !important;
  cursor: pointer !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: hsl(270,30%,50%) !important;
  transition: all 0.2s cubic-bezier(0.22,1,0.36,1) !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
#asq-root .asq-num-btn:hover {
  border-color: var(--asq-vp) !important;
  background: hsl(270,60%,97%) !important;
  transform: scale(1.1) !important;
  color: var(--asq-vp) !important;
}
#asq-root .asq-num-btn.asq-sel {
  background: var(--asq-go) !important;
  border-color: transparent !important;
  color: white !important;
  transform: scale(1.14) !important;
  box-shadow: 0 4px 20px hsl(270,60%,45%, 0.4) !important;
}

/* ── OPCIONES DE SELECCIÓN ────────────────────────── */
#asq-root .asq-opts-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.65rem !important;
  margin-bottom: 1.75rem !important;
}
#asq-root .asq-opt-btn {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.65rem !important;
  width: 100% !important;
  padding: 0.9rem 1.1rem !important;
  border-radius: 0.75rem !important;
  border: 2px solid hsl(270,20%,88%) !important;
  background: white !important;
  cursor: pointer !important;
  text-align: left !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.88rem !important;
  line-height: 1.45 !important;
  color: hsl(270,30%,30%) !important;
  transition: all 0.2s cubic-bezier(0.22,1,0.36,1) !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  margin: 0 !important;
}
#asq-root .asq-opt-btn:hover {
  border-color: var(--asq-vl) !important;
  background: hsl(270,30%,98%) !important;
  transform: translateX(3px) !important;
}
#asq-root .asq-opt-btn.asq-sel {
  border-color: var(--asq-vp) !important;
  background: hsl(270,60%,97%) !important;
  color: var(--asq-vp) !important;
}
#asq-root .asq-opt-btn.asq-sel .asq-opt-letra {
  background: var(--asq-go) !important;
  color: white !important;
  border-color: transparent !important;
}
#asq-root .asq-opt-letra {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 22px !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  border: 2px solid hsl(270,20%,80%) !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  margin-top: 1px !important;
  color: var(--asq-vp) !important;
  flex-shrink: 0 !important;
  font-family: 'Jost', sans-serif !important;
  line-height: 1 !important;
}
#asq-root .asq-opt-btn span:not(.asq-opt-letra) {
  display: inline !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.88rem !important;
  line-height: 1.45 !important;
}

/* ── BOTÓN PRINCIPAL ──────────────────────────────── */
#asq-root .asq-btn {
  display: block !important;
  width: 100% !important;
  padding: 0.95rem 2rem !important;
  border-radius: 0.875rem !important;
  background: var(--asq-go) !important;
  border: none !important;
  cursor: pointer !important;
  color: white !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1) !important;
  box-shadow: 0 4px 30px hsl(270,60%,45%, 0.32) !important;
  text-align: center !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
#asq-root .asq-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 40px hsl(270,60%,45%, 0.48) !important;
}
#asq-root .asq-btn:disabled {
  opacity: 0.42 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ── FORMULARIO ───────────────────────────────────── */
#asq-root .asq-form-group {
  display: block !important;
  margin-bottom: 1.1rem !important;
}
#asq-root .asq-label {
  display: block !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  color: hsl(270,30%,45%) !important;
  margin-bottom: 0.4rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  font-family: 'Jost', sans-serif !important;
}
#asq-root .asq-input {
  display: block !important;
  width: 100% !important;
  padding: 0.82rem 0.95rem !important;
  border-radius: 0.75rem !important;
  border: 2px solid hsl(270,20%,88%) !important;
  background: white !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.93rem !important;
  color: hsl(270,40%,20%) !important;
  transition: border-color 0.2s !important;
  outline: none !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  box-shadow: none !important;
}
#asq-root .asq-input:focus {
  border-color: var(--asq-vp) !important;
  box-shadow: 0 0 0 3px hsl(270,60%,45%, 0.1) !important;
}
#asq-root .asq-phone-row {
  display: flex !important;
  gap: 0.45rem !important;
  align-items: stretch !important;
}
#asq-root .asq-country {
  display: block !important;
  padding: 0.82rem 0.65rem !important;
  border-radius: 0.75rem !important;
  border: 2px solid hsl(270,20%,88%) !important;
  background: white !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.8rem !important;
  color: hsl(270,40%,20%) !important;
  outline: none !important;
  min-width: 130px !important;
  cursor: pointer !important;
  transition: border-color 0.2s !important;
  margin: 0 !important;
  appearance: auto !important;
  -webkit-appearance: auto !important;
  line-height: 1.5 !important;
}
#asq-root .asq-country:focus {
  border-color: var(--asq-vp) !important;
}
#asq-root .asq-phone-input {
  flex: 1 !important;
  min-width: 0 !important;
}

/* ── TEXTOS DE SECCIÓN ────────────────────────────── */
#asq-root .asq-section-h {
  display: block !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem) !important;
  line-height: 1.3 !important;
  color: hsl(270,40%,18%) !important;
  margin-bottom: 0.4rem !important;
  font-weight: 400 !important;
}
#asq-root .asq-section-sub {
  display: block !important;
  font-size: 0.88rem !important;
  color: hsl(270,20%,50%) !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.6 !important;
  font-family: 'Jost', sans-serif !important;
}
#asq-root .asq-welcome-name {
  display: inline !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  color: var(--asq-vp) !important;
}

/* ── DISCLAIMER ───────────────────────────────────── */
#asq-root .asq-disclaimer {
  display: block !important;
  font-size: 0.67rem !important;
  color: hsl(270,15%,60%) !important;
  text-align: center !important;
  line-height: 1.5 !important;
  margin-top: 0.9rem !important;
  padding-top: 0.9rem !important;
  border-top: 1px solid hsl(270,20%,90%) !important;
  font-family: 'Jost', sans-serif !important;
}

/* ── ERROR ────────────────────────────────────────── */
#asq-root .asq-error {
  display: none !important;
  font-size: 0.75rem !important;
  color: hsl(0,70%,55%) !important;
  margin-top: 0.35rem !important;
  font-family: 'Jost', sans-serif !important;
}
#asq-root .asq-error.asq-show {
  display: block !important;
}

/* ── POPUP ────────────────────────────────────────── */
#asq-root .asq-popup-overlay {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important; right: 0 !important; bottom: 0 !important; left: 0 !important;
  z-index: 999999 !important;
  background: rgba(20,5,40,0.75) !important;
  backdrop-filter: blur(8px) !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.5rem !important;
}
#asq-root .asq-popup-overlay.asq-show {
  display: flex !important;
  animation: asq-fade 0.3s ease !important;
}
@keyframes asq-fade { from { opacity: 0; } to { opacity: 1; } }
#asq-root .asq-popup-card {
  display: block !important;
  background: white !important;
  border-radius: 1.6rem !important;
  padding: 2.25rem 1.75rem !important;
  max-width: 460px !important;
  width: 100% !important;
  text-align: center !important;
  box-shadow: 0 24px 80px hsl(270,60%,20%, 0.35) !important;
  animation: asq-pop 0.4s cubic-bezier(0.22,1,0.36,1) both !important;
}
@keyframes asq-pop {
  from { opacity:0; transform: scale(0.84) translateY(18px); }
  to   { opacity:1; transform: scale(1)    translateY(0);    }
}
#asq-root .asq-popup-icon {
  display: block !important;
  font-size: 2.25rem !important;
  margin-bottom: 0.6rem !important;
  line-height: 1 !important;
}
#asq-root .asq-popup-pct {
  display: block !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--asq-pw) !important;
  margin-bottom: 0.4rem !important;
  font-family: 'Jost', sans-serif !important;
}
#asq-root .asq-popup-bar {
  display: block !important;
  height: 5px !important;
  background: hsl(270,20%,90%) !important;
  border-radius: 99px !important;
  overflow: hidden !important;
  margin-bottom: 1.25rem !important;
}
#asq-root .asq-popup-bar-fill {
  display: block !important;
  height: 100% !important;
  background: var(--asq-go) !important;
  border-radius: 99px !important;
  transition: width 1.4s cubic-bezier(0.22,1,0.36,1) !important;
}
#asq-root .asq-popup-title {
  display: block !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  color: hsl(270,40%,18%) !important;
  margin-bottom: 0.85rem !important;
}
#asq-root .asq-popup-text {
  display: block !important;
  font-size: 0.87rem !important;
  line-height: 1.65 !important;
  color: hsl(270,20%,42%) !important;
  margin-bottom: 1.4rem !important;
  font-family: 'Jost', sans-serif !important;
}

/* ── RESULTADO ────────────────────────────────────── */
#asq-root .asq-res-header {
  display: block !important;
  text-align: center !important;
  margin-bottom: 1.4rem !important;
}
#asq-root .asq-res-score {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 86px !important;
  height: 86px !important;
  border-radius: 50% !important;
  background: var(--asq-go) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.9rem !important;
  font-weight: 600 !important;
  color: white !important;
  margin: 0 auto 0.85rem !important;
  box-shadow: 0 6px 30px hsl(270,60%,45%, 0.4) !important;
}
#asq-root .asq-res-perfil {
  display: block !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.65rem !important;
  font-weight: 600 !important;
  color: hsl(270,40%,18%) !important;
  line-height: 1.25 !important;
  margin-bottom: 0.4rem !important;
}
#asq-root .asq-res-rango {
  display: block !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--asq-pw) !important;
  margin-bottom: 1.1rem !important;
  font-family: 'Jost', sans-serif !important;
}
#asq-root .asq-res-probadita {
  display: block !important;
  background: hsl(270,30%,97%) !important;
  border-radius: 0.875rem !important;
  padding: 1.1rem !important;
  margin-bottom: 1.4rem !important;
  border-left: 3px solid var(--asq-vp) !important;
}
#asq-root .asq-res-probadita p {
  display: block !important;
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
  color: hsl(270,30%,35%) !important;
  font-family: 'Jost', sans-serif !important;
}
#asq-root .asq-vsl {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: hsl(270,40%,15%) !important;
  border-radius: 0.875rem !important;
  aspect-ratio: 16/9 !important;
  margin-bottom: 1.4rem !important;
  position: relative !important;
  overflow: hidden !important;
}
#asq-root .asq-vsl-inner {
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
  text-align: center !important;
  padding: 1.5rem !important;
}
#asq-root .asq-vsl-play {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.15) !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  font-size: 1.3rem !important;
  color: white !important;
  margin: 0 auto 0.75rem !important;
}
#asq-root .asq-vsl-label {
  display: block !important;
  color: rgba(255,255,255,0.85) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1rem !important;
}
#asq-root .asq-vsl-sub {
  display: block !important;
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.73rem !important;
  margin-top: 0.25rem !important;
  font-family: 'Jost', sans-serif !important;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 480px) {
  #asq-root .asq-card   { padding: 1.75rem 1.25rem !important; border-radius: 1.25rem !important; }
  #asq-root .asq-num-btn { width: 43px !important; height: 43px !important; min-width: 43px !important; font-size: 1.1rem !important; }
  #asq-root .asq-phone-row  { flex-direction: column !important; }
  #asq-root .asq-country    { min-width: unset !important; width: 100% !important; }
  #asq-root .asq-q-text     { font-size: 1.2rem !important; }
  #asq-root .asq-title      { font-size: 1.6rem !important; }
}

#asq-root .asq-subtitle-sm { font-size:0.83rem !important; margin-bottom:1.5rem !important; }
#asq-root .asq-vsl-bg { position:absolute !important; inset:0 !important; background:linear-gradient(135deg,hsl(270,50%,18%) 0%,hsl(310,55%,22%) 50%,hsl(330,60%,20%) 100%) !important; }
