html.asepf-lock,
body.asepf-lock {
    overflow: hidden !important;
}

.asepf-overlay {
    --asepf-ease: cubic-bezier(.22, .61, .36, 1);
    --asepf-ease-out: cubic-bezier(.16, 1, .3, 1);
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(5, 11, 24, .76);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.2vh 2.4vw;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity var(--asepf-motion) var(--asepf-ease),
        backdrop-filter var(--asepf-motion) var(--asepf-ease),
        visibility 0s linear var(--asepf-motion);
    font-family: inherit;
}

.asepf-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition-delay: 0s;
}

.asepf-shell {
    width: min(var(--asepf-max-width), 100%);
    height: min(95.5vh, 980px);
    max-height: 95.5vh;
    background: var(--asepf-bg);
    border-radius: var(--asepf-radius);
    overflow: hidden;
    box-shadow: 0 26px 80px rgba(0, 0, 0, calc(.24 + var(--asepf-shadow-alpha)));
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .16);
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(.985);
    transform-origin: 50% 52%;
    transition:
        opacity var(--asepf-motion) var(--asepf-ease-out),
        transform var(--asepf-motion) var(--asepf-ease-out);
    will-change: transform, opacity;
}

.asepf-overlay.is-open .asepf-shell {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.asepf-header {
    height: var(--asepf-header-height);
    min-height: var(--asepf-header-height);
    padding: 0 clamp(26px, 4vw, 54px);
    background: linear-gradient(120deg, var(--asepf-navy), var(--asepf-navy2));
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.asepf-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    color: #fff;
    letter-spacing: .03em;
}

.asepf-brand img {
    max-width: 210px;
    max-height: 64px;
    display: block;
    object-fit: contain;
}

.asepf-brand-main {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: .03em;
}

.asepf-brand-star {
    color: var(--asepf-gold);
    font-size: .8em;
}

.asepf-brand-sub {
    color: var(--asepf-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .28em;
    margin-top: 3px;
}

.asepf-close {
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    transition:
        background-color var(--asepf-motion-fast) ease,
        transform var(--asepf-motion-fast) var(--asepf-ease-out);
}

.asepf-close:hover {
    background: rgba(255, 255, 255, .08);
    transform: rotate(90deg);
}

.asepf-close span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    left: 11px;
    top: 22px;
    border-radius: 999px;
}

.asepf-close span:first-child { transform: rotate(45deg); }
.asepf-close span:last-child { transform: rotate(-45deg); }

.asepf-close:focus-visible,
.asepf-answer-card:focus-visible,
.asepf-result-cta:focus-visible,
.asepf-back:focus-visible,
.asepf-launcher:focus-visible {
    outline: 3px solid var(--asepf-gold);
    outline-offset: 3px;
}

.asepf-main {
    flex: 1;
    overflow: auto;
    padding: 28px clamp(24px, 4vw, 62px) 30px;
    position: relative;
    scroll-behavior: smooth;
    overscroll-behavior: contain;
}

.asepf-progress {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 720px;
    margin: 0 auto 30px;
}

.asepf-progress-step {
    width: 108px;
    text-align: center;
    color: #9aa1ad;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.asepf-progress-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e9eaed;
    color: #7b8290;
    font-weight: 700;
    border: 2px solid transparent;
    box-shadow: 0 0 0 rgba(229, 173, 24, 0);
    transform: scale(1);
    transition:
        background-color var(--asepf-motion-fast) ease,
        border-color var(--asepf-motion-fast) ease,
        color var(--asepf-motion-fast) ease,
        box-shadow var(--asepf-motion-fast) ease,
        transform var(--asepf-motion-fast) var(--asepf-ease-out);
}

.asepf-progress-copy strong,
.asepf-progress-copy span {
    display: block;
    transition: color var(--asepf-motion-fast) ease, opacity var(--asepf-motion-fast) ease;
}

.asepf-progress-copy strong {
    font-size: 12px;
    color: var(--asepf-text);
}

.asepf-progress-copy span {
    font-size: 12px;
    margin-top: 2px;
}

.asepf-progress-step.is-active .asepf-progress-dot {
    background: #fff;
    border-color: var(--asepf-gold);
    color: var(--asepf-text);
    box-shadow: 0 4px 14px rgba(229, 173, 24, .18);
    transform: scale(1.055);
}

.asepf-progress-step.is-active .asepf-progress-copy span,
.asepf-progress-step.is-done .asepf-progress-copy span {
    color: var(--asepf-text);
    font-weight: 650;
}

.asepf-progress-step.is-done .asepf-progress-dot {
    background: var(--asepf-gold);
    color: var(--asepf-navy);
    border-color: var(--asepf-gold);
}

.asepf-progress-line {
    height: 2px;
    background: var(--asepf-line);
    flex: 1;
    max-width: 92px;
    margin-top: 17px;
    position: relative;
    overflow: hidden;
}

.asepf-progress-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--asepf-gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--asepf-motion) var(--asepf-ease-out);
}

.asepf-progress-line.is-done::after {
    transform: scaleX(1);
}

.asepf-stage {
    min-height: 420px;
    position: relative;
}

.asepf-stage.is-transitioning {
    pointer-events: none;
}

.asepf-view {
    will-change: opacity, transform;
}

.asepf-enter-forward {
    animation: asepfEnterForward var(--asepf-motion) var(--asepf-ease-out) both;
}

.asepf-enter-back {
    animation: asepfEnterBack var(--asepf-motion) var(--asepf-ease-out) both;
}

.asepf-leave-forward {
    animation: asepfLeaveForward var(--asepf-motion-fast) var(--asepf-ease) both;
}

.asepf-leave-back {
    animation: asepfLeaveBack var(--asepf-motion-fast) var(--asepf-ease) both;
}

@keyframes asepfEnterForward {
    from { opacity: 0; transform: translate3d(18px, 6px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes asepfEnterBack {
    from { opacity: 0; transform: translate3d(-18px, 6px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes asepfLeaveForward {
    from { opacity: 1; transform: translate3d(0, 0, 0); }
    to { opacity: 0; transform: translate3d(-12px, -2px, 0); }
}

@keyframes asepfLeaveBack {
    from { opacity: 1; transform: translate3d(0, 0, 0); }
    to { opacity: 0; transform: translate3d(12px, -2px, 0); }
}

.asepf-question-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 28px;
}

.asepf-question-heading h2 {
    font-family: inherit !important;
    font-size: clamp(30px, 3vw, 48px) !important;
    line-height: 1.08 !important;
    margin: 0 0 10px !important;
    color: var(--asepf-text) !important;
    font-weight: 800 !important;
    letter-spacing: -.035em !important;
}

.asepf-question-heading p {
    font-family: inherit !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: var(--asepf-muted) !important;
    margin: 0 !important;
}

.asepf-answer-grid {
    display: grid;
    grid-template-columns: repeat(var(--asepf-columns), minmax(0, 1fr));
    gap: 22px;
    max-width: 1280px;
    margin: 0 auto;
}

.asepf-answer-card {
    border: 0;
    padding: 0;
    text-align: left;
    min-width: 0;
    border-radius: var(--asepf-card-radius);
    background: var(--asepf-surface);
    overflow: hidden;
    cursor: pointer;
    touch-action: manipulation;
    box-shadow:
        10px 10px 24px rgba(16, 26, 51, var(--asepf-shadow-alpha)),
        -7px -7px 18px rgba(255, 255, 255, .85);
    transform: translate3d(0, 0, 0) scale(1);
    transition:
        transform var(--asepf-motion-fast) var(--asepf-ease-out),
        box-shadow var(--asepf-motion-fast) ease,
        filter var(--asepf-motion-fast) ease;
}

.asepf-view[class*="asepf-enter"] .asepf-answer-card {
    animation: asepfCardIn var(--asepf-motion) var(--asepf-ease-out) both;
    animation-delay: calc(var(--asepf-i, 0) * 35ms);
}

@keyframes asepfCardIn {
    from { opacity: 0; transform: translate3d(0, 12px, 0) scale(.992); }
    to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

.asepf-answer-card:hover {
    transform: translate3d(0, -4px, 0) scale(1.003);
    box-shadow:
        13px 16px 30px rgba(16, 26, 51, calc(var(--asepf-shadow-alpha) + .035)),
        -7px -7px 18px rgba(255, 255, 255, .92);
}

.asepf-answer-card:active,
.asepf-answer-card.is-selected {
    transform: translate3d(0, 1px, 0) scale(.988);
    box-shadow:
        inset 4px 4px 13px rgba(16, 26, 51, .12),
        inset -4px -4px 11px rgba(255, 255, 255, .84),
        0 0 0 2px rgba(229, 173, 24, .72);
}

.asepf-answer-card:disabled {
    cursor: default;
}

.asepf-card-image {
    height: var(--asepf-image-height);
    background: center / cover no-repeat;
    transform: scale(1.001);
    transition: transform calc(var(--asepf-motion) + 80ms) var(--asepf-ease-out), filter var(--asepf-motion) ease;
}

.asepf-answer-card:hover .asepf-card-image {
    transform: scale(1.025);
}

.asepf-answer-card.is-selected .asepf-card-image {
    transform: scale(1.012);
}

.asepf-card-placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #eef0f3, #fafafa);
    color: var(--asepf-navy);
}

.asepf-card-placeholder span {
    width: 88px;
    height: 88px;
    opacity: .3;
}

.asepf-card-placeholder svg,
.asepf-card-icon svg,
.asepf-empty svg {
    width: 100%;
    height: 100%;
}

.asepf-card-copy {
    min-height: 138px;
    padding: 22px 20px 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    position: relative;
}

.asepf-card-icon {
    width: 32px;
    height: 32px;
    color: var(--asepf-gold);
    margin-top: 1px;
    transition: transform var(--asepf-motion-fast) var(--asepf-ease-out);
}

.asepf-answer-card:hover .asepf-card-icon {
    transform: translateY(-1px) scale(1.05);
}

.asepf-card-text strong {
    display: block;
    font-size: 21px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.02em;
}

.asepf-card-text small {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    margin-top: 9px;
}

.asepf-card-style--navy_footer .asepf-card-copy {
    background: linear-gradient(140deg, var(--asepf-navy), var(--asepf-navy2));
    color: #fff;
}

.asepf-card-style--navy_footer .asepf-card-text small { color: #dfe4ec; }
.asepf-card-style--light_footer .asepf-card-copy { background: var(--asepf-surface); color: var(--asepf-text); }
.asepf-card-style--light_footer .asepf-card-text small { color: var(--asepf-muted); }
.asepf-card-style--overlay .asepf-answer-card { position: relative; }
.asepf-card-style--overlay .asepf-card-image { height: calc(var(--asepf-image-height) + 120px); }
.asepf-card-style--overlay .asepf-card-copy {
    position: absolute;
    inset: auto 0 0 0;
    background: linear-gradient(transparent, rgba(7, 17, 35, .94));
    color: #fff;
    padding-top: 60px;
}
.asepf-card-style--overlay .asepf-card-text small { color: #e2e6ec; }
.asepf-hide-descriptions .asepf-card-text small { display: none; }
.asepf-hide-descriptions .asepf-card-copy { min-height: 106px; align-items: center; }
.asepf-hide-icons .asepf-card-icon { display: none; }
.asepf-hide-icons .asepf-card-copy { grid-template-columns: 1fr; }

.asepf-stage-nav {
    max-width: 1280px;
    margin: 24px auto 0;
    min-height: 46px;
    display: flex;
    align-items: center;
}

.asepf-stage-nav--center { justify-content: center; }

.asepf-back {
    border: 0;
    background: transparent;
    color: var(--asepf-text);
    font: inherit;
    font-weight: 700;
    padding: 10px 4px;
    cursor: pointer;
    transition:
        color var(--asepf-motion-fast) ease,
        transform var(--asepf-motion-fast) var(--asepf-ease-out);
}

.asepf-back:hover {
    color: var(--asepf-gold);
    transform: translateX(-2px);
}

.asepf-help {
    margin: 24px auto 0;
    width: max-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--asepf-surface);
    padding: 12px 18px;
    border-radius: 13px;
    box-shadow: 7px 7px 18px rgba(16, 26, 51, .07), -6px -6px 16px rgba(255, 255, 255, .82);
    color: var(--asepf-text);
    transition: box-shadow var(--asepf-motion-fast) ease, transform var(--asepf-motion-fast) var(--asepf-ease-out);
}

.asepf-help:hover {
    transform: translateY(-1px);
    box-shadow: 8px 10px 20px rgba(16, 26, 51, .09), -6px -6px 16px rgba(255, 255, 255, .88);
}

.asepf-help-icon {
    width: 34px;
    height: 34px;
    border: 2px solid var(--asepf-navy);
    border-radius: 50%;
    position: relative;
    color: transparent;
}

.asepf-help-icon::after {
    content: "?";
    color: var(--asepf-navy);
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.asepf-help small,
.asepf-help a { display: block; }
.asepf-help small { font-size: 12px; color: var(--asepf-muted); }
.asepf-help a {
    font-size: 14px;
    font-weight: 750;
    color: #2258c8;
    text-decoration: none;
    transition: color var(--asepf-motion-fast) ease;
}
.asepf-help a:hover { color: var(--asepf-gold); }

.asepf-loading {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--asepf-text);
    gap: 16px;
}

.asepf-spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 4px solid var(--asepf-line);
    border-top-color: var(--asepf-gold);
    animation: asepfSpin .78s linear infinite;
}

@keyframes asepfSpin { to { transform: rotate(360deg); } }

.asepf-complete-pill {
    display: inline-block;
    background: rgba(229, 173, 24, .13);
    border: 1px solid var(--asepf-gold);
    color: var(--asepf-text);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.asepf-results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
}

.asepf-result-card {
    background: var(--asepf-surface);
    border-radius: var(--asepf-card-radius);
    overflow: hidden;
    box-shadow: 10px 10px 25px rgba(16, 26, 51, .1), -7px -7px 18px rgba(255, 255, 255, .86);
    transition: transform var(--asepf-motion-fast) var(--asepf-ease-out), box-shadow var(--asepf-motion-fast) ease;
}

.asepf-view[class*="asepf-enter"] .asepf-result-card {
    animation: asepfCardIn var(--asepf-motion) var(--asepf-ease-out) both;
    animation-delay: calc(var(--asepf-i, 0) * 45ms);
}

.asepf-result-card:hover {
    transform: translateY(-3px);
    box-shadow: 13px 16px 30px rgba(16, 26, 51, .13), -7px -7px 18px rgba(255, 255, 255, .9);
}

.asepf-result-image {
    display: block;
    height: 240px;
    background: center / cover no-repeat;
    transform: scale(1.001);
    transition: transform calc(var(--asepf-motion) + 80ms) var(--asepf-ease-out);
}

.asepf-result-card:hover .asepf-result-image { transform: scale(1.02); }

.asepf-result-body { padding: 20px; }

.asepf-result-badge {
    display: inline-block;
    color: var(--asepf-navy);
    background: var(--asepf-gold);
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.asepf-result-body h3 {
    font-family: inherit !important;
    color: var(--asepf-text) !important;
    font-size: 23px !important;
    line-height: 1.15 !important;
    margin: 12px 0 8px !important;
}

.asepf-result-body p {
    font-size: 14px !important;
    line-height: 1.48 !important;
    color: var(--asepf-muted) !important;
    margin: 0 0 18px !important;
}

.asepf-result-bottom {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.asepf-result-price { color: var(--asepf-text); font-weight: 750; }

.asepf-result-cta {
    background: var(--asepf-navy);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 9px;
    padding: 10px 13px;
    font-size: 13px;
    font-weight: 750;
    white-space: nowrap;
    transition:
        background-color var(--asepf-motion-fast) ease,
        color var(--asepf-motion-fast) ease,
        transform var(--asepf-motion-fast) var(--asepf-ease-out);
}

.asepf-result-cta:hover {
    background: var(--asepf-gold);
    color: var(--asepf-navy) !important;
    transform: translateX(2px);
}

.asepf-empty {
    text-align: center;
    max-width: 640px;
    margin: 42px auto;
    padding: 36px;
    background: var(--asepf-surface);
    border-radius: var(--asepf-card-radius);
    box-shadow: 9px 9px 22px rgba(16, 26, 51, .08), -7px -7px 18px rgba(255, 255, 255, .85);
}

.asepf-empty > span {
    display: block;
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    color: var(--asepf-gold);
}

.asepf-empty h3 {
    color: var(--asepf-text) !important;
    margin: 0 0 8px !important;
    font-size: 22px !important;
}

.asepf-empty p { color: var(--asepf-muted) !important; margin: 0 !important; }

.asepf-launcher {
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    border-radius: 7px;
    padding: 13px 22px;
    transition:
        transform var(--asepf-motion-fast) var(--asepf-ease-out),
        filter var(--asepf-motion-fast) ease,
        box-shadow var(--asepf-motion-fast) ease;
}

.asepf-launcher--primary {
    background: var(--asepf-gold, #e5ad18);
    color: var(--asepf-navy, #101a33);
    border: 1px solid var(--asepf-gold, #e5ad18);
}

.asepf-launcher--secondary {
    background: var(--asepf-navy, #101a33);
    color: #fff;
    border: 1px solid var(--asepf-navy, #101a33);
}

.asepf-launcher--text {
    background: transparent;
    color: var(--asepf-navy, #101a33);
    border: 0;
    padding-left: 0;
    padding-right: 0;
    text-decoration: underline;
}

.asepf-launcher:hover {
    filter: brightness(1.04);
    transform: translateY(-1px);
}

.asepf-launcher:active { transform: translateY(0) scale(.985); }

@media (max-width: 1100px) {
    .asepf-answer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .asepf-results-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .asepf-shell { height: min(96vh, 1050px); }
}

@media (max-width: 700px) {
    .asepf-overlay {
        padding: 0;
        background: var(--asepf-bg);
    }

    .asepf-shell {
        width: 100%;
        height: 100dvh;
        max-height: none;
        border-radius: 0;
        border: 0;
        transform: translate3d(0, 14px, 0) scale(1);
    }

    .asepf-header {
        height: 72px;
        min-height: 72px;
        padding: 0 20px;
    }

    .asepf-brand img { max-width: 145px; max-height: 44px; }
    .asepf-brand-main { font-size: 20px; }
    .asepf-brand-sub { font-size: 7px; }
    .asepf-close { width: 40px; height: 40px; }
    .asepf-close span { width: 20px; left: 10px; top: 19px; }
    .asepf-main { padding: 18px 16px 24px; }
    .asepf-progress { margin-bottom: 22px; max-width: 100%; }
    .asepf-progress-step { width: 58px; }
    .asepf-progress-dot { width: 29px; height: 29px; font-size: 12px; }
    .asepf-progress-line { margin-top: 14px; max-width: none; }
    .asepf-progress-copy span { display: none; }
    .asepf-progress-copy strong { font-size: 10px; white-space: nowrap; }
    .asepf-question-heading { margin-bottom: 20px; }
    .asepf-question-heading h2 { font-size: 30px !important; }
    .asepf-question-heading p { font-size: 14px !important; }
    .asepf-answer-grid { grid-template-columns: 1fr; gap: 10px; }

    .asepf-compact-mobile .asepf-answer-card {
        display: grid;
        grid-template-columns: 94px 1fr;
        min-height: 90px;
    }

    .asepf-compact-mobile .asepf-card-image {
        height: 100%;
        min-height: 90px;
    }

    .asepf-compact-mobile .asepf-card-copy {
        min-height: 90px;
        padding: 13px 12px;
        grid-template-columns: auto 1fr;
        align-items: center;
    }

    .asepf-compact-mobile .asepf-card-icon { width: 25px; height: 25px; }
    .asepf-compact-mobile .asepf-card-text strong { font-size: 16px; }
    .asepf-compact-mobile .asepf-card-text small { font-size: 12px; margin-top: 4px; }

    .asepf-card-style--overlay.asepf-compact-mobile .asepf-card-copy {
        position: relative;
        inset: auto;
        background: linear-gradient(140deg, var(--asepf-navy), var(--asepf-navy2));
        padding-top: 13px;
    }

    .asepf-stage-nav { margin-top: 16px; }
    .asepf-help { margin-top: 15px; }
    .asepf-results-grid { grid-template-columns: 1fr; gap: 12px; }

    .asepf-result-card {
        display: grid;
        grid-template-columns: 118px 1fr;
    }

    .asepf-result-image { height: 100%; min-height: 165px; }
    .asepf-result-body { padding: 15px; }
    .asepf-result-body h3 { font-size: 18px !important; }
    .asepf-result-body p { font-size: 12px !important; margin-bottom: 12px !important; }
    .asepf-result-bottom { align-items: flex-start; flex-direction: column; }
    .asepf-result-cta { padding: 8px 10px; }
    .asepf-empty { margin: 20px auto; padding: 24px; }
    .asepf-results .asepf-question-heading { margin-bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    .asepf-overlay,
    .asepf-shell,
    .asepf-close,
    .asepf-progress-dot,
    .asepf-progress-copy strong,
    .asepf-progress-copy span,
    .asepf-progress-line::after,
    .asepf-answer-card,
    .asepf-card-image,
    .asepf-card-icon,
    .asepf-back,
    .asepf-help,
    .asepf-help a,
    .asepf-result-card,
    .asepf-result-image,
    .asepf-result-cta,
    .asepf-launcher,
    .asepf-view,
    .asepf-spinner {
        animation-duration: .01ms !important;
        animation-delay: 0ms !important;
        transition-duration: .01ms !important;
        transition-delay: 0ms !important;
        scroll-behavior: auto !important;
    }

    .asepf-main { scroll-behavior: auto; }
    .asepf-answer-card:hover,
    .asepf-answer-card:active,
    .asepf-answer-card.is-selected,
    .asepf-answer-card:hover .asepf-card-image,
    .asepf-result-card:hover,
    .asepf-result-card:hover .asepf-result-image,
    .asepf-launcher:hover,
    .asepf-back:hover,
    .asepf-close:hover {
        transform: none !important;
    }
}

/* v0.0.5 admin-only automatic popup test notice */
.asepf-test-notice{position:fixed;z-index:2147483647;top:18px;left:50%;transform:translateX(-50%);width:min(560px,calc(100vw - 28px));display:grid;grid-template-columns:auto 1fr auto;gap:9px 12px;align-items:center;padding:13px 14px;border-radius:12px;background:#fff;color:#10172a;box-shadow:0 16px 50px rgba(10,20,40,.22);border:1px solid #e5e7eb;font-family:inherit}.asepf-test-notice strong{font-size:13px}.asepf-test-notice span{font-size:12px;line-height:1.45;color:#5f6878}.asepf-test-notice button{border:0;background:transparent;color:#596274;font-size:22px;line-height:1;cursor:pointer;padding:0 3px}.asepf-test-notice.is-good{border-top:4px solid #2f8a54}.asepf-test-notice.is-warn{border-top:4px solid #e5ad18}@media(max-width:600px){.asepf-test-notice{top:10px;grid-template-columns:1fr auto}.asepf-test-notice span{grid-column:1 / -1;grid-row:2}}
