/* VAPT Questionnaire — public guided form UX */

.vapt-quote-page {
    --vapt-surface: #ffffff;
    --vapt-soft: #f8fafc;
    --vapt-line: #e8edf3;
    --vapt-muted: #64748b;
    --vapt-sticky-top: 5.5rem;
    /* Match the same breathing room every other inner page gets after its
       hero (see .section-block in frontend.css) — this page previously
       overrode it down to 0.25rem, which crowded the form right under
       the header/hero with no gap. */
    padding-top: 4rem;
    padding-bottom: 6.5rem;
    background:
        radial-gradient(ellipse 70% 45% at 0% 0%, rgba(var(--primary-rgb, 225, 29, 36), 0.06), transparent 55%),
        linear-gradient(180deg, #fbfcfe 0%, #ffffff 35%, #f7f9fc 100%);
    overflow: visible;
}

@media (min-width: 768px) {
    .vapt-quote-page {
        padding-top: 6rem;
    }
}

.vapt-quote-page > .site-container,
.vapt-shell {
    overflow: visible;
}

.vapt-quote-page + .vapt-quote-page,
.page-hero + .vapt-quote-page {
    margin-top: 0;
}

.vapt-quote-page .icon-28 {
    width: 1.75rem;
    height: 1.75rem;
}

.vapt-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* Success */
.vapt-success-panel {
    text-align: center;
    max-width: 36rem;
    margin: 0.5rem auto 2rem;
    padding: 2.5rem 1.75rem;
    background: #fff;
    border: 1px solid var(--vapt-line);
    border-radius: 1.35rem;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.vapt-success-panel__icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: 999px;
    background: #ecfdf5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vapt-success-panel__title {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ink, #111827);
}

.vapt-success-panel__text {
    margin: 0 0 1.5rem;
    color: var(--vapt-muted);
    line-height: 1.55;
}

.vapt-success-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

/* Alerts */
.vapt-alert {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem 1.15rem;
    border-radius: 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid transparent;
}

.vapt-alert strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.vapt-alert p {
    margin: 0;
    font-size: 0.9rem;
}

.vapt-alert--error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.vapt-disabled {
    text-align: center;
    background: var(--vapt-surface);
    border: 1px dashed #cbd5e1;
    border-radius: 1.25rem;
    padding: 2.5rem 1.5rem;
}

.vapt-disabled__icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 0.9rem;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

/* Mobile sticky progress — stays under fixed header while page scrolls */
.vapt-mobile-progress {
    display: none;
    position: sticky;
    top: var(--vapt-sticky-top);
    z-index: 60;
    margin: 0 0 1rem;
    padding: 0.7rem 0.9rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--vapt-line);
    border-radius: 0.85rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(8px);
}

.vapt-mobile-progress__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--vapt-muted);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.vapt-mobile-progress__meta strong {
    font-size: 0.95rem;
    color: var(--ink, #111827);
    letter-spacing: 0;
    text-transform: none;
}

.vapt-mobile-progress__bar {
    height: 0.4rem;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.vapt-mobile-progress__bar > span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-hex, #e11d24), var(--secondary-hex, #9b1b1f));
    border-radius: 999px;
    transition: width 0.25s ease;
}

.vapt-shell {
    display: grid;
    gap: 1.35rem;
}

@media (min-width: 992px) {
    .vapt-shell {
        grid-template-columns: 260px minmax(0, 1fr);
        gap: 1.75rem;
        /* Stretch (default) makes the sidebar column match the form
           column's real height, so position: sticky always has exactly
           as much room as there is form content to scroll through — no
           artificial height, so no empty whitespace below either column. */
        align-items: stretch;
    }
}

/* Sidebar: Form Completion + Sections stick while the form scrolls beside
   it, using native CSS sticky (bounded by this slot's own box — never the
   hero above it, never the footer below it). No JS positioning needed. */
.vapt-sidebar {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
    width: 100%;
}

@media (min-width: 992px) {
    .vapt-sidebar {
        position: sticky;
        top: var(--vapt-sticky-top);
        max-height: calc(100vh - var(--vapt-sticky-top) - 1.25rem);
    }

    .vapt-sidebar-panel {
        overflow-y: auto;
    }
}

.vapt-progress {
    background: var(--vapt-surface);
    border: 1px solid var(--vapt-line);
    border-radius: 1.15rem;
    padding: 1.1rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    flex-shrink: 0;
}

.vapt-sidebar-panel {
    background: var(--vapt-surface);
    border: 1px solid var(--vapt-line);
    border-radius: 1.15rem;
    padding: 1.1rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
    flex: 1 1 auto;
    min-height: 0;
}

.vapt-progress__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
}

.vapt-progress__label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--vapt-muted);
}

.vapt-progress__pct {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ink, #111827);
    line-height: 1.1;
    margin-top: 0.1rem;
}

.vapt-progress__ring {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
}

.vapt-progress__ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.vapt-progress__ring-bg {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 3.2;
}

.vapt-progress__ring-fg {
    fill: none;
    stroke: var(--primary-hex, #e11d24);
    stroke-width: 3.2;
    stroke-linecap: round;
    transition: stroke-dasharray 0.3s ease;
}

.vapt-progress__bar {
    height: 0.4rem;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.vapt-progress__bar > span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-hex, #e11d24), var(--secondary-hex, #9b1b1f));
    border-radius: 999px;
    transition: width 0.25s ease;
}

.vapt-progress__hint {
    margin: 0.55rem 0 0;
    font-size: 0.76rem;
    color: #94a3b8;
}

.vapt-jump {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    max-height: none;
    overflow: visible;
}

.vapt-jump__title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--vapt-muted);
    margin-bottom: 0.3rem;
}

.vapt-jump__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    padding: 0.45rem 0.5rem;
    border-radius: 0.6rem;
    border: 1px solid transparent;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.vapt-jump__num {
    flex-shrink: 0;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.65rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vapt-jump__text {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vapt-jump__link:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.vapt-jump__link.is-active {
    background: rgba(var(--primary-rgb, 225, 29, 36), 0.08);
    border-color: rgba(var(--primary-rgb, 225, 29, 36), 0.16);
    color: var(--primary-hex, #e11d24);
}

.vapt-jump__link.is-active .vapt-jump__num {
    background: var(--primary-hex, #e11d24);
    color: #fff;
}

.vapt-sidebar__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    margin-top: 0.85rem;
}

.vapt-ghost-btn {
    border: 1px solid var(--vapt-line);
    background: #fff;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.45rem 0.4rem;
    border-radius: 0.55rem;
    cursor: pointer;
}

.vapt-ghost-btn:hover {
    border-color: #cbd5e1;
    color: #0f172a;
}

.vapt-sidebar__tip {
    margin-top: 0.85rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0.7rem 0.75rem;
    border-radius: 0.75rem;
    background: #fff7ed;
    border: 1px solid #ffedd5;
    color: #9a3412;
    font-size: 0.76rem;
    line-height: 1.45;
}

.vapt-sidebar__tip p {
    margin: 0;
}

/* Form */
.vapt-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.vapt-form-banner {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 0.95rem 1.05rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(var(--primary-rgb, 225, 29, 36), 0.06), rgba(15, 23, 42, 0.02));
    border: 1px solid rgba(var(--primary-rgb, 225, 29, 36), 0.12);
}

.vapt-form-banner strong {
    display: block;
    font-size: 0.9rem;
    color: var(--ink, #111827);
    margin-bottom: 0.15rem;
}

.vapt-form-banner p {
    margin: 0;
    font-size: 0.84rem;
    color: var(--vapt-muted);
    line-height: 1.5;
}

.vapt-form-banner .icon-20 {
    color: var(--primary-hex, #e11d24);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.vapt-form-error {
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Accordion sections */
.vapt-section {
    background: var(--vapt-surface);
    border: 1px solid var(--vapt-line);
    border-radius: 1.05rem;
    overflow: hidden;
    scroll-margin-top: 6rem;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.vapt-section.is-open {
    border-color: #dbe3ee;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.vapt-section--contact {
    border-color: rgba(var(--primary-rgb, 225, 29, 36), 0.22);
}

.vapt-section--contact.is-open {
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 225, 29, 36), 0.05);
}

.vapt-section__head {
    width: 100%;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    background: linear-gradient(105deg, rgba(var(--primary-rgb, 225, 29, 36), 0.05), transparent 70%);
    border: 0;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease;
}

.vapt-section__head:hover {
    background: linear-gradient(105deg, rgba(var(--primary-rgb, 225, 29, 36), 0.08), #f8fafc 70%);
}

.vapt-section__num {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--primary-hex, #e11d24);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    margin-top: 0.1rem;
}

.vapt-section__head-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.vapt-section__eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary-hex, #e11d24);
}

.vapt-section__title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink, #111827);
    line-height: 1.3;
}

.vapt-section__sub {
    font-size: 0.84rem;
    color: var(--vapt-muted);
    line-height: 1.4;
}

.vapt-section__meta {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.vapt-section__count {
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    background: #f1f5f9;
    border-radius: 999px;
    min-width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.4rem;
}

.vapt-section__chevron {
    width: 1.1rem;
    height: 1.1rem;
    color: #94a3b8;
    transition: transform 0.18s ease;
}

.vapt-section.is-open .vapt-section__chevron {
    transform: rotate(180deg);
}

.vapt-section__body {
    padding: 0 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.1rem;
}

.vapt-section__body[hidden] {
    display: none !important;
}

.vapt-section__body--contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .vapt-section__body--contact {
        grid-template-columns: 1fr 1fr;
    }

    .vapt-section__body--contact .vapt-field--contact[data-field-type="textarea"],
    .vapt-section__body--contact .vapt-section__next {
        grid-column: 1 / -1;
    }
}

.vapt-section__next {
    padding-top: 0.25rem;
}

.vapt-next-btn {
    border: 0;
    background: transparent;
    color: var(--primary-hex, #e11d24);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.35rem 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.vapt-next-btn:hover {
    color: var(--primary-dark-hex, #b91c1c);
}

/* Fields */
.vapt-field.is-invalid .vapt-input,
.vapt-field.is-invalid .vapt-select,
.vapt-field.is-invalid .vapt-textarea {
    border-color: #f87171;
    background: #fff5f5;
}

.vapt-field__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.vapt-field__label {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.vapt-req {
    color: var(--primary-hex, #e11d24);
    font-weight: 800;
}

.vapt-field__hint {
    margin: 0 0 0.5rem;
    font-size: 0.8rem;
    color: var(--vapt-muted);
    line-height: 1.4;
}

.vapt-field__error {
    margin: 0.4rem 0 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #b91c1c;
}

.vapt-quick-fill {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.vapt-chip {
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.vapt-chip:hover {
    border-color: var(--primary-hex, #e11d24);
    color: var(--primary-hex, #e11d24);
    background: rgba(var(--primary-rgb, 225, 29, 36), 0.05);
}

.vapt-chip.is-active {
    border-color: var(--primary-hex, #e11d24);
    color: #fff;
    background: var(--primary-hex, #e11d24);
}

.vapt-input,
.vapt-select,
.vapt-textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #f9fafb;
    padding: 0.72rem 0.9rem;
    font-size: 0.9rem;
    color: #111827;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.vapt-input:hover,
.vapt-select:hover,
.vapt-textarea:hover {
    border-color: #cbd5e1;
}

.vapt-input:focus,
.vapt-select:focus,
.vapt-textarea:focus {
    outline: none;
    border-color: rgba(var(--primary-rgb, 225, 29, 36), 0.5);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 225, 29, 36), 0.12);
}

.vapt-sublabel {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.3rem;
}

.vapt-repeater__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.vapt-repeater__item {
    position: relative;
    border: 1px dashed #cbd5e1;
    border-radius: 0.85rem;
    padding: 0.9rem 2.4rem 0.9rem 0.9rem;
    background: #f8fafc;
}

.vapt-repeater__item-grid {
    display: grid;
    gap: 0.65rem;
}

@media (min-width: 640px) {
    .vapt-repeater__item-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.vapt-btn-add {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px dashed rgba(var(--primary-rgb, 225, 29, 36), 0.4);
    background: rgba(var(--primary-rgb, 225, 29, 36), 0.04);
    color: var(--primary-hex, #e11d24);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.65rem 1rem;
    border-radius: 0.75rem;
    cursor: pointer;
}

.vapt-btn-add:hover {
    background: rgba(var(--primary-rgb, 225, 29, 36), 0.1);
}

.vapt-btn-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.85rem;
    height: 1.85rem;
    border: none;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.vapt-matrix__row {
    border: 1px solid #eef2f7;
    border-radius: 0.8rem;
    padding: 0.85rem;
    margin-bottom: 0.6rem;
    background: #fafbfc;
}

.vapt-matrix__label {
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.vapt-matrix__cols {
    display: grid;
    gap: 0.55rem;
}

@media (min-width: 768px) {
    .vapt-matrix__cols {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.vapt-count-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .vapt-count-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.vapt-count-grid__item {
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 0.75rem;
    padding: 0.7rem;
}

.vapt-check-details__row {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    border: 1px solid #eef2f7;
}

@media (min-width: 768px) {
    .vapt-check-details__row {
        grid-template-columns: minmax(180px, 260px) 1fr;
        align-items: center;
    }
}

.vapt-check {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
}

.vapt-check input {
    width: 1.05rem;
    height: 1.05rem;
    accent-color: var(--primary-hex, #e11d24);
}

/* Sticky dock submit */
.vapt-submit-spacer {
    height: 0.5rem;
}

.vapt-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    pointer-events: none;
}

.vapt-dock__inner {
    pointer-events: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin: 0 auto 0.75rem;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--vapt-line);
    border-radius: 1rem;
    box-shadow: 0 -10px 36px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(10px);
}

.vapt-dock__status {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    min-width: 4.5rem;
}

.vapt-dock__label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
}

.vapt-dock__status strong {
    font-size: 1.05rem;
    color: var(--ink, #111827);
}

.vapt-dock__copy {
    flex: 1;
    min-width: 10rem;
    font-size: 0.84rem;
    color: var(--vapt-muted);
}

.vapt-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.85rem;
    white-space: nowrap;
}

.vapt-submit-btn.is-loading {
    pointer-events: none;
    opacity: 0.85;
}

.vapt-submit-btn__idle,
.vapt-submit-btn__busy {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.vapt-spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 999px;
    animation: vapt-spin 0.7s linear infinite;
}

@keyframes vapt-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 991.98px) {
    .vapt-quote-page {
        --vapt-sticky-top: 4.75rem;
    }

    .vapt-mobile-progress {
        display: block;
    }

    /* Desktop sticky card not needed on small screens — mobile bar stays pinned */
    .vapt-sidebar .vapt-progress {
        display: none;
    }

    .vapt-sidebar {
        position: static;
        width: auto;
        max-height: none;
    }

    .vapt-jump {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
    }

    .vapt-jump__title,
    .vapt-sidebar__actions,
    .vapt-sidebar__tip {
        grid-column: 1 / -1;
    }

    .vapt-section {
        scroll-margin-top: 7.5rem;
    }

    .vapt-dock__copy {
        display: none;
    }

    .vapt-dock__inner {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vapt-progress__bar > span,
    .vapt-progress__ring-fg,
    .vapt-mobile-progress__bar > span,
    .vapt-section__chevron,
    .vapt-spinner {
        transition: none;
        animation: none;
    }
}
