.vaa-wrap,
.vaa-wrap * {
    box-sizing: border-box;
}

.vaa-wrap {
    --vaa-navy: #071b3a;
    --vaa-text: #14213d;
    --vaa-muted: #7d8798;
    --vaa-border: rgba(11, 33, 68, 0.08);
    --vaa-soft-border: rgba(11, 33, 68, 0.12);
    --vaa-card-shadow: 0 10px 24px rgba(9, 22, 48, 0.04);
    width: 100%;
    margin: 0 0 18px;
    color: var(--vaa-text);
}

.vaa-hero {
    position: relative;
    overflow: hidden;
    min-height: 118px;
    background: #fff;
    border-radius: 0;
    margin: 0 0 12px;
    padding: 20px 42% 20px 14px;
}

.vaa-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.vaa-hero-title {
    margin: 0 0 6px;
    color: var(--vaa-text);
    font-size: clamp(24px, 6vw, 38px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.vaa-hero-text {
    margin: 0;
    max-width: 34em;
    color: var(--vaa-muted);
    font-size: 14px;
    line-height: 1.38;
    font-weight: 500;
}

.vaa-hero-media {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    width: 43%;
    pointer-events: none;
}

.vaa-hero-media::after {
    content: "";
    position: absolute;
    left: -20px;
    right: 0;
    bottom: 0;
    height: 54%;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 92%);
}

.vaa-hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right top;
    display: block;
}

.vaa-access-card {
    position: relative;
    overflow: hidden;
    min-height: 104px;
    margin: 0 0px 8px;
    padding: 16px 34% 14px 10px;
    background: #f6faff;
    border: 1px solid #dfeaf7;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(7, 27, 58, 0.02);
}

.vaa-access-copy {
    position: relative;
    z-index: 2;
}

.vaa-access-title {
    margin: 0 0 3px;
    color: var(--vaa-text);
    font-size: clamp(16px, 4vw, 21px);
    line-height: 1.18;
    letter-spacing: -0.025em;
    font-weight: 800;
}

.vaa-access-text {
    margin: 0 0 10px;
    color: #5f6c82;
    font-size: 11px;
    line-height: 1.35;
    font-weight: 600;
}

.vaa-access-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 35px;
    padding: 9px 15px;
    border-radius: 4px;
    background: var(--vaa-navy);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 8px 16px rgba(7, 27, 58, 0.16);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.vaa-access-button:hover,
.vaa-access-button:focus {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(7, 27, 58, 0.22);
}

.vaa-access-button:focus-visible,
.vaa-model-card:focus-visible,
.vaa-pill:focus-visible {
    outline: 2px solid rgba(7, 27, 58, 0.35);
    outline-offset: 3px;
}

.vaa-access-media {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    width: 34%;
    pointer-events: none;
}

.vaa-access-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    display: block;
}

.vaa-strip-section {
    margin: 0 0 14px;
}

.vaa-section-title {
    margin: 0 5px 8px;
    color: var(--vaa-text);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.vaa-scroll-shell {
    position: relative;
    overflow: hidden;
}

.vaa-scroll-shell::before,
.vaa-scroll-shell::after {
    content: "";
    position: absolute;
    z-index: 4;
    top: 0;
    bottom: 0;
    width: 28px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 140ms ease;
}

.vaa-scroll-shell::before {
    left: 0;
    background: linear-gradient(to right, #fff 15%, rgba(255,255,255,0));
}

.vaa-scroll-shell::after {
    right: 0;
    background: linear-gradient(to left, #fff 15%, rgba(255,255,255,0));
}

.vaa-scroll-shell.has-left::before,
.vaa-scroll-shell.has-right::after {
    opacity: 1;
}

.vaa-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 5px 3px;
    direction: ltr;
}

.vaa-scroll::-webkit-scrollbar {
    display: none;
}

.vaa-model-card {
    flex: 0 0 105px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 8px;
    scroll-snap-align: start;
    padding: 7px 8px;
    background: #fff;
    border: 1px solid var(--vaa-soft-border);
    border-radius: 9px;
    color: var(--vaa-text) !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(9, 22, 48, 0.025);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.vaa-model-card:hover {
    transform: translateY(-1px);
    border-color: rgba(7, 27, 58, 0.2);
    box-shadow: var(--vaa-card-shadow);
}

.vaa-model-img {
    flex: 0 0 34px;
    width: 34px;
    height: 50px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.vaa-model-name {
    min-width: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--vaa-text);
    font-size: 10px;
    line-height: 1.18;
    font-weight: 800;
}

.vaa-pill-scroll {
    gap: 8px;
    padding-bottom: 2px;
}

.vaa-pill {
    flex: 0 0 auto;
    min-height: 29px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    scroll-snap-align: start;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--vaa-pill-bg, #f6f7f9);
    border: 1px solid rgba(7, 27, 58, 0.035);
    color: #526071 !important;
    text-decoration: none !important;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 160ms ease, filter 160ms ease;
}

.vaa-pill:hover {
    transform: translateY(-1px);
    filter: saturate(1.05) contrast(1.02);
}

.vaa-pill-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

@media (min-width: 768px) {
    .vaa-wrap {
        margin-bottom: 24px;
    }

    .vaa-hero {
        min-height: 160px;
        padding: 34px 42% 34px 28px;
        border-radius: 14px;
        margin-bottom: 3px;
    }

    .vaa-hero-text {
        font-size: 16px;
    }

    .vaa-access-card {
        min-height: 140px;
        margin: 0 0 20px;
        padding: 28px 34% 24px 34px;
        border-radius: 16px;
    }

    .vaa-access-text {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .vaa-access-button {
        min-height: 40px;
        padding: 10px 18px;
        font-size: 13px;
    }

    .vaa-section-title {
        margin-left: 0;
        margin-right: 0;
        font-size: 17px;
    }

    .vaa-scroll {
        padding-left: 0;
        padding-right: 0;
        gap: 10px;
    }

    .vaa-model-card {
        flex-basis: 150px;
        height: 72px;
        border-radius: 12px;
        padding: 9px 11px;
    }

    .vaa-model-img {
        flex-basis: 42px;
        width: 42px;
        height: 58px;
    }

    .vaa-model-name {
        font-size: 12px;
    }

    .vaa-pill {
        min-height: 34px;
        padding: 9px 15px;
        font-size: 12px;
    }

    .vaa-pill-img {
        width: 20px;
        height: 20px;
    }
}
