/* ============================================================
   Visumansøgning — generel Header / Mobilmenu / Footer
   Scoped override-lag (vas-* klasser).

   Indlæses KUN via app/Views/figma/figmaheader.php (CSS) og
   figmafooter.php (JS), som kun bruges på de generelle sider —
   IKKE i det nye ansøgningsflow (wizard-header/-footer).

   Alt herinde er nye vas-* klasser, så Tailwind-bundlen og andre
   sider ikke påvirkes. Kan senere flyttes ind i den faste pipeline,
   hvis ejeren godkender.
   ============================================================ */

:root {
    --vas-blue: #030090;
    --vas-blue-700: #02006e;       /* dybere blå (footer-dybde) */
    --vas-blue-600: #0a07a8;
    --vas-blue-line: rgba(255, 255, 255, 0.14);
    --vas-header-scroll-bg: #030090; /* ved scroll: samme brand-blå som footeren */
    --vas-cta-bg: #ffffff;         /* primær CTA: hvid på mørk baggrund (ingen gul accent) */
    --vas-cta-bg-hover: #eceefb;
    --vas-cta-ink: #11172f;
    --vas-ink: #1f1f1f;
    --vas-container: 1268px;
    --vas-header-h: 68px;
    --vas-header-h-scrolled: 60px;
    --vas-topbar-h: 40px;
}

/* ============================================================
   HEADER
   ============================================================ */

/* Fixed frem for sticky: forælderen (figmapagestart-wrapper) har overflow-hidden,
   hvilket bryder position:sticky. Fixed + .vas-header-spacer giver robust top-fastgørelse. */
.vas-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: transparent;
    color: #fff;
    font-family: "Poppins", sans-serif;
    transition: background-color .25s ease, box-shadow .25s ease, height .25s ease, backdrop-filter .25s ease;
}

/* Reserverer flow-plads så indhold ikke gemmer sig under den fixed header
   (topbar + hovedbar). På mobil skjules topbaren, så højden reduceres nedenfor. */
.vas-header-spacer {
    height: calc(var(--vas-topbar-h) + var(--vas-header-h));
}

/* Native anker-hop (#hash) og scrollIntoView skal lande UNDER den fixed header —
   uden scroll-padding gemmer målet sig bag menuen ("scroller for langt ned"). */
html {
    scroll-padding-top: calc(var(--vas-topbar-h) + var(--vas-header-h) + 12px);
}

/* ---------- Topbar (sekundær række: telefon, sprog, log ind) ---------- */
.vas-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.vas-topbar__inner {
    max-width: var(--vas-container);
    margin: 0 auto;
    height: var(--vas-topbar-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 24px;
    font-size: 13px;
}

.vas-topbar__left {
    color: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vas-topbar__left svg {
    width: 15px;
    height: 15px;
    opacity: .85;
}

.vas-topbar__right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vas-topbar__phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.vas-topbar__phone:hover {
    color: #fff;
    opacity: .85;
}

.vas-topbar__phone svg {
    width: 15px;
    height: 15px;
}

.vas-topbar__login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.vas-topbar__login:hover {
    color: #fff;
}

.vas-topbar__login svg {
    width: 16px;
    height: 16px;
}

.vas-topbar__divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.20);
}

/* Ved scroll: mørk frosted/blur-bar (bevidst IKKE brand-blå) */
.vas-header--scrolled {
    background: var(--vas-header-scroll-bg);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    backdrop-filter: blur(12px) saturate(140%);
    box-shadow: 0 10px 30px -14px rgba(0, 0, 0, 0.55);
}

.vas-header__inner {
    max-width: var(--vas-container);
    margin: 0 auto;
    height: var(--vas-header-h);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 24px;
    transition: height .25s ease;
}

.vas-header--scrolled .vas-header__inner {
    height: var(--vas-header-h-scrolled);
}

/* Logo */
.vas-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
}

.vas-logo img {
    height: 38px;
    width: auto;
    display: block;
}

/* Centreret navigation */
.vas-nav {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 0;
}

.vas-nav__item {
    position: relative;
}

.vas-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 11px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color .15s ease, background-color .15s ease;
}

.vas-nav__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.vas-nav__link.is-active {
    color: #fff;
    font-weight: 600;
}

.vas-nav__link.is-active::after {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 2px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
}

.vas-nav__caret {
    width: 14px;
    height: 14px;
    opacity: .7;
    transition: transform .2s ease;
}

.vas-nav__item:hover .vas-nav__caret {
    transform: rotate(180deg);
}

/* Dropdown (ren CSS-hover på desktop) */
.vas-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 220px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 50px -12px rgba(3, 0, 80, 0.30);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 30;
}

.vas-nav__item:hover .vas-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.vas-dropdown__link {
    display: block;
    padding: 9px 14px;
    border-radius: 9px;
    color: #41434f;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color .15s ease, color .15s ease;
}

.vas-dropdown__link:hover {
    background: var(--vas-blue);
    color: #fff;
}

.vas-dropdown__link.is-active {
    color: var(--vas-blue);
    font-weight: 600;
}

/* Højre-cluster (call-to-action) */
.vas-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vas-actions__desktop {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Telefon-ikon "ring op" */
.vas-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: background-color .15s ease, border-color .15s ease;
}

.vas-phone:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.40);
    color: #fff;
}

.vas-phone svg {
    width: 18px;
    height: 18px;
}

/* Sprogvælger-wrapper (genbruger language_switcher.php flag) */
.vas-lang {
    display: inline-flex;
    align-items: center;
    padding: 0 2px;
}

.vas-lang form {
    gap: 8px !important;
}

/* Sprogvælger: neutral aktiv-indikator (uden gul accent, virker uden Tailwind-build) */
.vas-langswitch img {
    opacity: .5;
    transition: opacity .15s ease, box-shadow .15s ease;
}

.vas-langswitch input:checked + img {
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.55);
}

.vas-langswitch label:hover img {
    opacity: .85;
}

/* Inde i mobil-draweren (hvid baggrund) skal ringen være mørk for kontrast */
.vas-drawer__langrow .vas-langswitch input:checked + img {
    box-shadow: 0 0 0 2px rgba(3, 0, 144, 0.45);
}

/* Divider mellem sekundære og primære actions */
.vas-actions__divider {
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, 0.18);
    margin: 0 2px;
}

/* Knapper */
.vas-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .12s ease, box-shadow .15s ease;
}

.vas-btn:active {
    transform: translateY(1px);
}

.vas-btn svg {
    width: 17px;
    height: 17px;
}

/* Login / min konto — diskret outline */
.vas-btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: transparent;
}

.vas-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: #fff;
    color: #fff;
}

/* Ansøg om visum — primær CTA (hvid på mørk baggrund, ingen gul accent) */
.vas-btn--primary {
    color: var(--vas-cta-ink);
    background: var(--vas-cta-bg);
    box-shadow: 0 8px 22px -10px rgba(0, 0, 0, 0.55);
}

.vas-btn--primary:hover {
    background: var(--vas-cta-bg-hover);
    color: var(--vas-cta-ink);
    box-shadow: 0 10px 28px -10px rgba(0, 0, 0, 0.6);
}

/* Hamburger */
.vas-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.vas-burger:hover {
    background: rgba(255, 255, 255, 0.12);
}

.vas-burger svg {
    width: 24px;
    height: 24px;
}

/* ---------- Responsiv header ---------- */
@media (max-width: 1023px) {
    .vas-topbar,
    .vas-nav,
    .vas-actions__desktop {
        display: none;
    }

    /* Topbaren skjules på mobil → spacer skal kun matche hovedbaren */
    .vas-header-spacer {
        height: var(--vas-header-h);
    }

    html {
        scroll-padding-top: calc(var(--vas-header-h) + 12px);
    }

    .vas-burger {
        display: inline-flex;
    }

    .vas-header__inner {
        gap: 12px;
        padding: 0 16px;
    }

    /* Behold Ansøg-CTA i hovedbaren på mobil (konvertering) */
    .vas-actions {
        margin-left: auto;
    }
}

@media (max-width: 420px) {
    .vas-cta-label-long {
        display: none;
    }
    .vas-cta-label-short {
        display: inline;
    }
    .vas-btn--primary {
        padding: 0 14px;
    }
}

.vas-cta-label-short {
    display: none;
}

/* ============================================================
   MOBIL-DRAWER
   ============================================================ */

.vas-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(7, 10, 40, 0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 1100;
}

.vas-drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.vas-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    height: 100dvh;
    width: min(360px, 88vw);
    background: #fff;
    color: var(--vas-ink);
    font-family: "Poppins", sans-serif;
    z-index: 1101;
    display: flex;
    flex-direction: column;
    /* Glider ind fra HØJRE — samme side som burger-knappen */
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 0 60px -10px rgba(3, 0, 80, 0.45);
    overflow: hidden;
}

.vas-drawer.is-open {
    transform: translateX(0);
}

.vas-drawer__head {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: var(--vas-blue);
}

.vas-drawer__head img {
    height: 34px;
    width: auto;
}

.vas-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.vas-drawer__close:hover {
    background: rgba(255, 255, 255, 0.12);
}

.vas-drawer__close svg {
    width: 22px;
    height: 22px;
}

.vas-drawer__body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 14px 16px 4px;
}

.vas-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vas-drawer__link {
    display: block;
    padding: 12px 12px;
    border-radius: 10px;
    color: #20222b;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.vas-drawer__link:hover {
    background: #f2f2f9;
    color: var(--vas-blue);
}

.vas-drawer__link.is-active {
    color: var(--vas-blue);
    font-weight: 600;
    background: #f2f2f9;
}

.vas-drawer__sublink {
    display: block;
    padding: 9px 12px 9px 26px;
    border-radius: 10px;
    color: #6b6e7d;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.vas-drawer__sublink:hover {
    background: #f2f2f9;
    color: var(--vas-blue);
}

.vas-drawer__grouplabel {
    display: block;
    padding: 14px 12px 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #9a9db0;
}

.vas-drawer__divider {
    height: 1px;
    background: #ececf4;
    margin: 12px 4px;
}

.vas-drawer__foot {
    flex: 0 0 auto;
    padding: 14px 16px 18px;
    border-top: 1px solid #ececf4;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* CTA i drawer står på HVID baggrund → brand-blå knap (hvid CTA ville forsvinde) */
.vas-drawer__cta {
    width: 100%;
    height: 50px;
    font-size: 16px;
    background: var(--vas-blue);
    color: #fff;
    box-shadow: 0 10px 24px -10px rgba(3, 0, 144, 0.6);
}

.vas-drawer__cta:hover {
    background: var(--vas-blue-600);
    color: #fff;
}

.vas-drawer__login {
    width: 100%;
    height: 46px;
    color: var(--vas-blue);
    border-color: rgba(3, 0, 144, 0.30);
}

.vas-drawer__login:hover {
    background: #f2f2f9;
    border-color: var(--vas-blue);
    color: var(--vas-blue);
}

.vas-drawer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.vas-drawer__contact a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #41434f;
    text-decoration: none;
    font-weight: 500;
}

.vas-drawer__contact a:hover {
    color: var(--vas-blue);
}

.vas-drawer__contact svg {
    width: 17px;
    height: 17px;
    color: var(--vas-blue);
    flex: 0 0 auto;
}

.vas-drawer__langrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.vas-drawer__langrow .vas-drawer__langlabel {
    font-size: 13px;
    font-weight: 600;
    color: #8a8d9b;
    text-transform: uppercase;
    letter-spacing: .04em;
}

body.vas-no-scroll {
    overflow: hidden;
}

/* ============================================================
   FOOTER
   ============================================================ */

.vas-footer {
    background: var(--vas-blue);
    color: rgba(255, 255, 255, 0.78);
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    margin-top: 40px;
    /* Neutraliserer figmapagestart-wrapperens pb-[90px], så footeren går helt
       til bunden uden hvid plads under. */
    margin-bottom: -90px;
    /* Afrundet "løftet panel" — unikt udtryk, samme sprog som landing-sheet */
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

.vas-footer a { text-decoration: none; }

.vas-footer__inner {
    max-width: var(--vas-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* CTA-bånd (bevaret — vigtig konverterings-handling) */
.vas-footer__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 38px 0;
    border-bottom: 1px solid var(--vas-blue-line);
}

.vas-footer__cta-text { max-width: 640px; }

.vas-footer__cta-text h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.vas-footer__cta-text p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.70);
}

.vas-footer__cta .vas-btn--primary {
    height: 52px;
    padding: 0 28px;
    font-size: 16px;
    flex: 0 0 auto;
}

/* Hoved: brand/kontakt-kort (venstre) + link-kolonner (højre) — giver balance */
.vas-footer__main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.1fr 1fr;
    gap: 40px;
    padding: 50px 0;
    align-items: start;
}

.vas-footer__logo {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 18px;
}

.vas-footer__tagline {
    margin: 0 0 22px;
    max-width: 300px;
    line-height: 1.6;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.70);
}

/* Stablet sekund-overskrift (Vores virksomhed under Ydelser) */
.vas-footer__h4--stacked {
    margin-top: 28px !important;
}

/* Kontakt-liste i 4. kolonne */
.vas-footer__contactlist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vas-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14.5px;
    line-height: 1.45;
}

a.vas-footer__contact-item:hover { color: #fff; }

.vas-footer__contact-item svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: #fff;
    opacity: .8;
    margin-top: 1px;
}

/* CO2-certifikat under Telefontid — diskret hvid kasse, lidt større logo */
.vas-footer__co2 {
    display: inline-flex;
    align-items: center;
    margin-top: 22px;
    padding: 10px 14px;
    background: #fff;
    border-radius: 12px;
    transition: transform .15s ease, box-shadow .15s ease;
}

.vas-footer__co2:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.45);
}

.vas-footer__co2 img {
    height: 46px;
    width: auto;
    display: block;
}

/* Sociale ikoner */
.vas-footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.vas-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: #fff;
    transition: background-color .15s ease, border-color .15s ease;
}

.vas-footer__social a:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.40);
}

.vas-footer__social svg { width: 18px; height: 18px; }

/* Link-kolonner */
.vas-footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.vas-footer__col h4 {
    margin: 4px 0 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.vas-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.vas-flink {
    display: inline-block;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14.5px;
    line-height: 1.4;
    transition: color .15s ease, transform .15s ease;
}

.vas-flink:hover { color: #fff; transform: translateX(2px); }

/* Trust: rene tekst-USP'er adskilt af hairline-dividere (ingen badges) */
.vas-footer__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 22px;
    padding: 24px 0;
    border-top: 1px solid var(--vas-blue-line);
    border-bottom: 1px solid var(--vas-blue-line);
}

.vas-trust {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
}

.vas-trust svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    color: #fff;
    opacity: .9;
}

/* Hairline mellem USP'erne */
.vas-trust-sep {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.20);
    flex: 0 0 auto;
}

/* CO2-certifikat som diskret logo i en hvid chip (samme udtryk som ansøgningsflowet) */
.vas-trust--logo {
    background: #fff;
    border-color: #fff;
    padding: 0 12px;
}

.vas-trust--logo img {
    height: 26px;
    width: auto;
    display: block;
}

/* Bund-bar: copyright · jura · sprog */
.vas-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 22px 0 28px;
}

.vas-footer__copy {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.60);
}

.vas-footer__copy strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.vas-footer__bottom-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.vas-footer__legal {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.vas-footer__legal a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13.5px;
    transition: color .15s ease;
}

.vas-footer__legal a:hover { color: #fff; }

.vas-footer__lang {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vas-footer__lang-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.50);
}

/* ---------- Responsiv footer ---------- */
@media (max-width: 991px) {
    .vas-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 36px 32px;
    }
    .vas-footer__col--brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .vas-footer__inner { padding: 0 20px; }
    /* Kompakt: behold 2 kolonner side om side (ikke alt stablet under hinanden) */
    .vas-footer__main { padding: 36px 0; gap: 28px 20px; }
    .vas-footer__col--brand { text-align: center; }
    .vas-footer__col--brand .vas-footer__logo,
    .vas-footer__col--brand .vas-footer__tagline { margin-left: auto; margin-right: auto; }
    .vas-footer__social { justify-content: center; }
    .vas-footer__cta { padding: 28px 0; }
    .vas-footer__cta-text h3 { font-size: 20px; }
    .vas-footer__cta .vas-btn--primary { width: 100%; }
    .vas-trust-sep { display: none; }
    .vas-footer__trust { gap: 10px 18px; }
    .vas-footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
    .vas-footer__copy { text-align: center; }
    .vas-footer__bottom-right { width: 100%; justify-content: center; gap: 16px 22px; }
}
