/**
 * ASG Virtual Gutter Estimator — scoped styles.
 *
 * Every selector lives under .asg-vge so Breakdance globals are never
 * touched. Typography inherits the site font. Editorial and compact:
 * hairline rules, restrained accents, a deep-ink action panel, and a
 * spec-sheet result layout. No gradients, no glass, no gimmicks.
 */

.asg-vge {
    --asg-teal: #3f8f8a;
    --asg-teal-dark: #2f7470;
    --asg-orange: #ff654f;
    --asg-orange-dark: #ed563f;
    --asg-ink: #141412;
    --asg-ink-soft: #23231f;
    --asg-text: #2d2c29;
    --asg-muted: #6d6a64;
    --asg-faint: #96938c;
    --asg-line: #e7e4de;
    --asg-hairline: #eeece7;
    --asg-soft: #faf9f7;
    --asg-white: #fff;
    --asg-error: #b3261e;
    --asg-success: #1e6b38;
    --asg-radius: 20px;
    --asg-radius-sm: 11px;

    font-family: inherit;
    color: var(--asg-text);
    /* Full-bleed width (escapes a contained parent so the panel can span the
     * page), but a TRANSPARENT background so the section blends with whatever
     * is around it — no colored band or strips above/below. The elevated
     * white panel and its shadow provide all the separation. */
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 4vw, 3rem);
    background: transparent;
    box-sizing: border-box;
    overflow-x: clip;
}
.asg-vge *,
.asg-vge *::before,
.asg-vge *::after { box-sizing: border-box; }
/* The hidden attribute must always win, even over display:grid/flex rules. */
.asg-vge [hidden] { display: none !important; }

.asg-vge__module {
    width: min(1140px, 100%);
    margin: 0 auto;
    background: var(--asg-white);
    border: 1px solid rgba(20, 20, 18, 0.06);
    border-radius: var(--asg-radius);
    padding: clamp(1.5rem, 3.2vw, 2.75rem);
    box-shadow:
        0 1px 1px rgba(20, 20, 18, 0.02),
        0 10px 30px rgba(20, 20, 18, 0.06),
        0 40px 80px rgba(20, 20, 18, 0.07);
    scroll-margin-top: 96px;
}

/* ------------------------------------------------------------------
 * Hero intro — always visible, names and sells the tool
 * ---------------------------------------------------------------- */
.asg-vge__intro {
    width: min(1140px, 100%);
    margin: 0 auto clamp(1.4rem, 3vw, 2.25rem);
    text-align: center;
}
.asg-vge__intro .asg-vge__eyebrow {
    display: inline-block;
    margin-bottom: 0.85rem;
}
.asg-vge__intro-title {
    margin: 0 auto 0.7rem;
    max-width: 20ch;
    color: var(--asg-ink);
    font-size: clamp(1.9rem, 4.6vw, 3.1rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 820;
}
.asg-vge__accent { color: var(--asg-orange); }
.asg-vge__intro-sub {
    margin: 0 auto 1.1rem;
    max-width: 60ch;
    color: var(--asg-muted);
    font-size: clamp(0.98rem, 1.55vw, 1.12rem);
    line-height: 1.6;
}
.asg-vge__intro-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.asg-vge__intro-benefits li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 0.85rem;
    border: 1px solid var(--asg-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--asg-text);
    font-size: 0.82rem;
    font-weight: 650;
    line-height: 1.2;
}
.asg-vge__intro-benefits li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--asg-teal);
}

/* "How it works" — sells the flow inside the launch card */
.asg-vge__how-label {
    margin: 0 0 0.75rem;
    color: var(--asg-faint);
    font-size: 0.72rem;
    font-weight: 780;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.asg-vge__how {
    margin: 0 0 1.35rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
}
.asg-vge__how li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: center;
    color: var(--asg-ink);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.35;
}
.asg-vge__how li span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--asg-ink);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
}

/* ------------------------------------------------------------------
 * Launch: editorial two-column
 * ---------------------------------------------------------------- */
.asg-vge__launch {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(1.5rem, 3.5vw, 3rem);
    align-items: stretch;
}
.asg-vge__launch-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0.5rem 0;
}
.asg-vge__eyebrow {
    margin: 0 0 0.9rem;
    color: var(--asg-teal-dark);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.2;
}
.asg-vge__eyebrow::before {
    content: "";
    display: inline-block;
    width: 1.6rem;
    height: 2px;
    background: var(--asg-orange);
    vertical-align: 0.22em;
    margin-right: 0.6rem;
    border-radius: 2px;
}
.asg-vge__heading {
    margin: 0 0 0.75rem;
    color: var(--asg-ink);
    font-size: clamp(1.85rem, 3.9vw, 2.7rem);
    line-height: 1.04;
    letter-spacing: -0.028em;
    font-weight: 800;
    max-width: 17ch;
}
.asg-vge__support {
    margin: 0 0 1.35rem;
    color: var(--asg-muted);
    font-size: clamp(0.96rem, 1.5vw, 1.08rem);
    line-height: 1.6;
    max-width: 46ch;
}

.asg-vge__trust {
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--asg-hairline);
}
.asg-vge__trust li {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--asg-hairline);
    color: var(--asg-text);
    font-size: 0.84rem;
    font-weight: 550;
    line-height: 1.45;
}
.asg-vge__trust li::before {
    content: "✓";
    flex: 0 0 auto;
    color: var(--asg-teal-dark);
    font-size: 0.8rem;
    font-weight: 800;
}

.asg-vge__cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 1rem;
    margin: auto 0 0.7rem;
}
.asg-vge__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    border: 1.5px solid transparent;
    font: inherit;
    font-size: 0.93rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.asg-vge__btn--primary {
    background: var(--asg-orange);
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(237, 86, 63, 0.28);
}
.asg-vge__btn--primary:hover {
    background: var(--asg-orange-dark);
    box-shadow: 0 8px 20px rgba(237, 86, 63, 0.32);
}
.asg-vge__btn--primary:disabled { opacity: 0.65; cursor: wait; box-shadow: none; }
.asg-vge__btn--ghost {
    background: transparent;
    border-color: var(--asg-line);
    color: var(--asg-ink) !important;
}
.asg-vge__btn--ghost:hover { border-color: var(--asg-ink); }
.asg-vge__btn--light {
    background: #fff;
    border-color: #fff;
    color: var(--asg-ink) !important;
}
.asg-vge__btn--light:hover { background: var(--asg-soft); }
.asg-vge__phone-link {
    color: var(--asg-teal-dark) !important;
    font-size: 0.88rem;
    font-weight: 650;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(47, 116, 112, 0.4);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.asg-vge__phone-link:hover { color: var(--asg-ink) !important; }
.asg-vge__micro {
    margin: 0;
    color: var(--asg-faint);
    font-size: 0.75rem;
    line-height: 1.55;
    max-width: 46ch;
}

/* Deep-ink "smart tool" action panel */
.asg-vge__panel {
    position: relative;
    background:
        radial-gradient(120% 80% at 100% 0%, rgba(63, 143, 138, 0.18), transparent 55%),
        var(--asg-ink);
    border-radius: 14px;
    padding: 1.4rem 1.4rem 1.25rem;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.asg-vge__panel-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 750;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.asg-vge__panel-label::before {
    content: "";
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--asg-orange);
    box-shadow: 0 0 0 4px rgba(255, 101, 79, 0.18);
}
.asg-vge__services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: auto 0;
}
.asg-vge__service {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--asg-radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.95);
    font: inherit;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.asg-vge__service:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}
.asg-vge__service[aria-pressed="true"] {
    background: #fff;
    border-color: #fff;
    color: var(--asg-ink);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.asg-vge__panel-hint {
    margin: auto 0 0;
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.76rem;
    line-height: 1.5;
}

/* ------------------------------------------------------------------
 * App shell
 * ---------------------------------------------------------------- */
.asg-vge__appbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.35rem 1rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--asg-hairline);
}
.asg-vge__progress-text {
    margin: 0;
    color: var(--asg-faint);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.asg-vge__appbar-phone {
    grid-row: 1 / span 2;
    grid-column: 2;
    color: var(--asg-teal-dark) !important;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.asg-vge__progress {
    height: 3px;
    border-radius: 999px;
    background: var(--asg-hairline);
    overflow: hidden;
}
.asg-vge__progress-fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: var(--asg-teal);
    transition: width 260ms ease;
}

.asg-vge__step-title {
    margin: 0 0 1rem;
    color: var(--asg-ink);
    font-size: clamp(1.15rem, 2.3vw, 1.4rem);
    line-height: 1.18;
    letter-spacing: -0.018em;
    font-weight: 780;
}
.asg-vge__step-title:focus { outline: none; }
.asg-vge__step-title:focus-visible {
    outline: 2px solid var(--asg-teal);
    outline-offset: 4px;
    border-radius: 4px;
}

.asg-vge__field { margin-bottom: 1.05rem; }
.asg-vge__label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--asg-ink);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
}
.asg-vge__label .asg-vge__optional {
    color: var(--asg-faint);
    font-weight: 500;
    font-size: 0.76rem;
}
.asg-vge__help {
    margin: 0.35rem 0 0;
    color: var(--asg-muted);
    font-size: 0.78rem;
    line-height: 1.55;
}
.asg-vge__input,
.asg-vge__select,
.asg-vge__textarea {
    width: 100%;
    min-height: 48px;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid #dcd9d2;
    border-radius: var(--asg-radius-sm);
    background: #fff;
    color: var(--asg-ink);
    font: inherit;
    font-size: 0.95rem;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}
.asg-vge__textarea { resize: vertical; min-height: 108px; }
.asg-vge__input:focus,
.asg-vge__select:focus,
.asg-vge__textarea:focus {
    outline: none;
    border-color: var(--asg-teal);
    box-shadow: 0 0 0 3px rgba(63, 143, 138, 0.16);
}
.asg-vge__input[aria-invalid="true"],
.asg-vge__select[aria-invalid="true"],
.asg-vge__textarea[aria-invalid="true"] { border-color: var(--asg-error); }

/* Choice chips (radio) & multi chips (checkbox) */
.asg-vge__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    border: 0;
    padding: 0;
    margin: 0;
}
.asg-vge__chip {
    position: relative;
    display: inline-flex;
}
.asg-vge__chip input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0.0001;
    cursor: pointer;
}
.asg-vge__chip span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.5rem 0.95rem;
    border: 1px solid var(--asg-line);
    border-radius: 999px;
    background: #fff;
    color: var(--asg-text);
    font-size: 0.87rem;
    font-weight: 600;
    line-height: 1.25;
    transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}
.asg-vge__chip input:hover + span { border-color: var(--asg-teal); }
.asg-vge__chip input:checked + span {
    border-color: var(--asg-ink);
    background: var(--asg-ink);
    color: #fff;
}
.asg-vge__chip input:focus-visible + span {
    outline: 2px solid var(--asg-teal);
    outline-offset: 2px;
}

/* Consent */
.asg-vge__consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: start;
    padding: 0.9rem;
    border: 1px solid var(--asg-line);
    border-radius: var(--asg-radius-sm);
    background: var(--asg-soft);
}
.asg-vge__consent input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.1rem;
    accent-color: var(--asg-teal-dark);
}
.asg-vge__consent label {
    color: var(--asg-text);
    font-size: 0.83rem;
    line-height: 1.55;
    font-weight: 500;
}

/* Photos */
.asg-vge__photo-guide {
    margin: 0 0 0.7rem;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.asg-vge__photo-guide li {
    padding: 0.3rem 0.7rem;
    border: 1px dashed var(--asg-line);
    border-radius: 999px;
    color: var(--asg-muted);
    font-size: 0.76rem;
    font-weight: 600;
}
.asg-vge__drop {
    display: grid;
    place-items: center;
    gap: 0.2rem;
    min-height: 96px;
    padding: 1rem;
    border: 1.5px dashed rgba(63, 143, 138, 0.55);
    border-radius: var(--asg-radius-sm);
    background: var(--asg-soft);
    cursor: pointer;
    text-align: center;
    transition: border-color 150ms ease, background-color 150ms ease;
}
.asg-vge__drop:hover,
.asg-vge__drop:focus-within { border-color: var(--asg-orange); background: #fff; }
.asg-vge__drop input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.asg-vge__drop strong {
    color: var(--asg-teal-dark);
    font-size: 0.92rem;
    font-weight: 750;
}
.asg-vge__drop small { color: var(--asg-faint); font-size: 0.76rem; }
.asg-vge__photo-list {
    margin: 0.6rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.asg-vge__photo-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.4rem 0.35rem 0.75rem;
    border: 1px solid var(--asg-line);
    border-radius: 999px;
    background: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--asg-text);
    max-width: 100%;
}
.asg-vge__photo-list li span {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.asg-vge__photo-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 999px;
    background: var(--asg-hairline);
    color: var(--asg-ink);
    font-size: 0.8rem;
    line-height: 1;
    cursor: pointer;
}
.asg-vge__photo-remove:hover { background: var(--asg-error); color: #fff; }

/* Errors */
.asg-vge__error {
    margin: 0.35rem 0 0;
    color: var(--asg-error);
    font-size: 0.79rem;
    font-weight: 650;
    line-height: 1.4;
}

/* Nav */
.asg-vge__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.4rem;
    padding-top: 1rem;
    border-top: 1px solid var(--asg-hairline);
}
.asg-vge__nav [data-vge-back][hidden] { display: none; }

.asg-vge__status { margin-top: 0.8rem; font-size: 0.87rem; font-weight: 650; }
.asg-vge__status.is-error { color: var(--asg-error); }

/* ------------------------------------------------------------------
 * Result — range-first, spec-sheet layout
 * ---------------------------------------------------------------- */
.asg-vge__result {
    scroll-margin-top: 96px;
}
.asg-vge__result:focus { outline: none; }

.asg-vge__res-hero {
    position: relative;
    padding: 1.25rem 1.4rem 1.3rem;
    border: 1px solid var(--asg-line);
    border-left: 4px solid var(--asg-orange);
    border-radius: 6px var(--asg-radius-sm) var(--asg-radius-sm) 6px;
    background: var(--asg-soft);
    margin-bottom: 1rem;
}
.asg-vge__res-kicker {
    margin: 0 0 0.55rem;
    color: var(--asg-teal-dark);
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.asg-vge__res-range {
    margin: 0 0 0.35rem;
    color: var(--asg-ink);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 820;
    letter-spacing: -0.03em;
    line-height: 1.02;
}
.asg-vge__res-range--review {
    font-size: clamp(1.35rem, 3.2vw, 1.7rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    max-width: 24ch;
}
.asg-vge__res-service {
    margin: 0 0 0.7rem;
    color: var(--asg-muted);
    font-size: 0.9rem;
    font-weight: 600;
}
.asg-vge__res-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}
.asg-vge__confidence {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.32rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--asg-line);
    background: #fff;
    color: var(--asg-text);
    font-size: 0.78rem;
    font-weight: 700;
}
.asg-vge__confidence::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--asg-teal);
}
.asg-vge__confidence--limited::before,
.asg-vge__confidence--onsite_required::before { background: var(--asg-orange); }
.asg-vge__res-basis {
    margin: 0;
    color: var(--asg-muted);
    font-size: 0.8rem;
    line-height: 1.5;
    flex-basis: 100%;
}

/* Next-step conversion panel (ink) */
.asg-vge__res-next {
    background: var(--asg-ink);
    border-radius: var(--asg-radius-sm);
    padding: 1.15rem 1.25rem;
    margin-bottom: 1.25rem;
}
.asg-vge__res-next strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 750;
    letter-spacing: -0.01em;
}
.asg-vge__res-next p {
    margin: 0 0 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    line-height: 1.55;
}
.asg-vge__res-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.asg-vge__res-next .asg-vge__btn--ghost {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff !important;
}
.asg-vge__res-next .asg-vge__btn--ghost:hover { border-color: #fff; }

/* Review-required flag */
.asg-vge__review-flag {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(237, 86, 63, 0.3);
    border-radius: var(--asg-radius-sm);
    background: rgba(255, 101, 79, 0.05);
    color: var(--asg-text);
    font-size: 0.84rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
}
.asg-vge__review-flag::before {
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--asg-orange);
    margin-top: 0.42rem;
}

/* Spec-sheet detail sections */
.asg-vge__res-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2.25rem;
    margin-bottom: 0.4rem;
}
.asg-vge__res-section { margin: 0 0 1.15rem; min-width: 0; }
.asg-vge__res-section h4 {
    margin: 0 0 0.25rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid var(--asg-hairline);
    color: var(--asg-faint);
    font-size: 0.7rem;
    font-weight: 780;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.asg-vge__res-rows { margin: 0; }
.asg-vge__res-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.42rem 0;
    border-bottom: 1px solid var(--asg-hairline);
}
.asg-vge__res-row dt {
    margin: 0;
    color: var(--asg-muted);
    font-size: 0.8rem;
    font-weight: 550;
    line-height: 1.4;
    flex: 0 1 auto;
}
.asg-vge__res-row dd {
    margin: 0;
    color: var(--asg-ink);
    font-size: 0.84rem;
    font-weight: 650;
    line-height: 1.4;
    text-align: right;
}
.asg-vge__res-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.asg-vge__res-list li {
    position: relative;
    padding: 0.42rem 0 0.42rem 1rem;
    border-bottom: 1px solid var(--asg-hairline);
    color: var(--asg-text);
    font-size: 0.83rem;
    line-height: 1.5;
}
.asg-vge__res-list li::before {
    content: "";
    position: absolute;
    left: 0.1rem;
    top: 0.95rem;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: var(--asg-teal);
}

/* Good / Better / Best */
.asg-vge__options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 0.6rem;
    margin: 0 0 1.15rem;
    padding: 0;
    list-style: none;
}
.asg-vge__options article {
    height: 100%;
    padding: 0.9rem 0.95rem;
    border: 1px solid var(--asg-line);
    border-top: 2px solid var(--asg-ink);
    border-radius: 4px 4px var(--asg-radius-sm) var(--asg-radius-sm);
    background: #fff;
}
.asg-vge__options span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--asg-orange-dark);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.asg-vge__options strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--asg-ink);
    font-size: 0.9rem;
    font-weight: 750;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.asg-vge__options p {
    margin: 0;
    color: var(--asg-muted);
    font-size: 0.79rem;
    line-height: 1.55;
}

.asg-vge__res-note {
    margin: 0 0 1.15rem;
    padding: 0.75rem 0 0.15rem;
    border-top: 1px solid var(--asg-hairline);
    color: var(--asg-muted);
    font-size: 0.81rem;
    line-height: 1.6;
}
.asg-vge__result-disclaimer {
    margin: 0 0 0.35rem;
    color: var(--asg-faint);
    font-size: 0.73rem;
    line-height: 1.55;
}
.asg-vge__restart {
    background: none;
    border: 0;
    padding: 0.4rem 0;
    min-height: 44px;
    color: var(--asg-faint);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}
.asg-vge__restart:hover { color: var(--asg-ink); }

.asg-vge__noscript p { margin: 0 0 0.75rem; }

/* Focus visibility for all interactive elements */
.asg-vge :where(a, button, input, select, textarea):focus-visible {
    outline: 2px solid var(--asg-teal);
    outline-offset: 2px;
}
.asg-vge__panel :where(button):focus-visible,
.asg-vge__res-next :where(a, button):focus-visible {
    outline-color: #fff;
}

/* ------------------------------------------------------------------
 * Responsive
 * ---------------------------------------------------------------- */
@media (max-width: 767px) {
    .asg-vge__launch { grid-template-columns: 1fr; gap: 1rem; }
    .asg-vge__res-grid { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 639px) {
    .asg-vge { padding: 1.35rem 0.9rem; }
    .asg-vge__module { padding: 1.2rem 1.05rem 1.1rem; }
    /* Tighten the hero on mobile: left-aligned, condensed, and drop the
     * benefit chips (the How-it-works list below already covers them) so
     * the CTA stays near the first viewport. */
    .asg-vge__intro { text-align: left; margin-bottom: 1rem; }
    .asg-vge__intro .asg-vge__eyebrow { margin-bottom: 0.6rem; }
    .asg-vge__intro-title { font-size: clamp(1.6rem, 7.6vw, 2.05rem); max-width: none; margin: 0 0 0.55rem; }
    .asg-vge__intro-sub { font-size: 0.95rem; max-width: none; margin: 0; text-align: left; }
    .asg-vge__intro-benefits { display: none; }
    .asg-vge__how { gap: 0.55rem; margin-bottom: 1.05rem; }
    /* Mobile launch is CTA-first: the panel condenses away and service
     * selection becomes step 1 of the flow. */
    .asg-vge__panel { display: none; }
    .asg-vge__cta-row { margin: 0 0 0.65rem; }
    .asg-vge__cta-row .asg-vge__btn--primary { width: 100%; }
    .asg-vge__phone-link { width: 100%; justify-content: center; min-height: 40px; }
    .asg-vge__nav {
        position: sticky;
        bottom: 0;
        background: var(--asg-white);
        padding: 0.6rem 0;
        margin-top: 1.1rem;
    }
    .asg-vge__res-hero { padding: 1.05rem 1rem 1.1rem; }
    .asg-vge__res-next .asg-vge__btn { width: 100%; }
    .asg-vge__res-row { flex-direction: column; gap: 0.05rem; }
    .asg-vge__res-row dd { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
    .asg-vge *,
    .asg-vge *::before,
    .asg-vge *::after {
        transition: none !important;
        animation: none !important;
        scroll-behavior: auto !important;
    }
}
