.vs-hero {
    padding: 56px 0 8px;
}

.vs-hero-grid {
    max-width: 820px;
}

.vs-hero h1 {
    font-size: clamp(2rem, 4.2vw, 3rem);
    margin: 14px 0 16px;
}

.vs-hero h1 .vs-name {
    background: linear-gradient(90deg, var(--brand-500), var(--brand-700));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.vs-hero-lead {
    color: var(--text-soft);
    font-size: 1.08rem;
    max-width: 56ch;
}

.vs-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.vs-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-top: 22px;
}

.vs-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 500;
}

.vs-hero-trust svg {
    color: var(--success);
    flex: none;
}

.vs-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.2;
    max-width: 100%;
}

.vs-chip img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    padding: 2px;
    flex: none;
}

.vs-chip-wordmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--bg-softer);
    color: var(--text-soft);
    font-size: 0.8rem;
    font-weight: 800;
    flex: none;
}

.vs-eyebrow-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vs-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
}

.vs-badge-blue {
    background: var(--brand-50);
    color: var(--brand-700);
    border: 1px solid var(--brand-200);
}

.vs-badge-green {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid var(--success-border);
}

.vs-quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 40px 0 0;
}

.vs-quick-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

.vs-quick-card b {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.vs-quick-card span {
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.45;
    display: block;
}

.vs-section {
    padding: 64px 0;
}

.vs-section-soft {
    background: var(--bg-soft);
    border-block: 1px solid var(--border);
}

.vs-section-head {
    max-width: 680px;
    margin: 0 auto 36px;
    text-align: center;
}

.vs-section-head h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 10px 0 12px;
}

.vs-section-head p {
    color: var(--text-soft);
}

.vs-table-wrap {
    overflow-x: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.vs-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.vs-table th,
.vs-table td {
    padding: 13px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    font-size: 0.94rem;
}

.vs-table thead th {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: var(--bg-soft);
    position: sticky;
    top: 0;
}

.vs-table thead th.vs-col-us {
    color: var(--brand-700);
    background: var(--brand-50);
}

.vs-table tbody tr:last-child td {
    border-bottom: none;
}

.vs-table td.vs-col-us {
    background: var(--brand-50);
    font-weight: 600;
    color: var(--brand-800);
}

.vs-table th.vs-col-them,
.vs-table td.vs-col-them {
    width: 34%;
}

.vs-table td .vs-note {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 2px;
}

.vs-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex: none;
}

.vs-ico-yes {
    background: var(--success-bg);
    color: var(--success);
}

.vs-ico-no {
    background: var(--error-bg);
    color: var(--error);
}

.vs-ico-partial {
    background: var(--warn-bg);
    color: var(--warn);
}

.vs-ico svg {
    display: block;
}

.vs-value-text {
    font-weight: 600;
    color: var(--text);
}

.vs-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.vs-point {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.vs-point .feature-ico {
    margin-bottom: 12px;
}

.vs-point h3 {
    font-size: 1.02rem;
    margin-bottom: 6px;
}

.vs-point p {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.vs-switch {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.vs-switch .step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.vs-europe {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.vs-europe::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-500), #d52b1e 50%, #f31818 100%);
    opacity: 0.85;
}

.vs-europe h2 {
    font-size: clamp(1.4rem, 2.6vw, 1.8rem);
    margin-bottom: 12px;
}

.vs-europe .vs-badge-green {
    margin-bottom: 16px;
}

.vs-europe p {
    color: var(--text-soft);
}

.vs-europe-points {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.vs-europe-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.vs-europe-points svg {
    color: var(--success);
    flex: none;
    margin-top: 3px;
}

.vs-europe-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.vs-europe-stat {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}

.vs-europe-stat b {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.vs-europe-stat img {
    display: block;
    width: 34px;
    height: 34px;
    margin: 0 auto 6px;
    border-radius: 4px;
    box-shadow: 0 0 0 1px var(--border);
}

.vs-europe-stat span {
    color: var(--text-soft);
    font-size: 0.82rem;
}

.vs-faq {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.vs-faq details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0;
    overflow: hidden;
}

.vs-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.vs-faq summary::-webkit-details-marker {
    display: none;
}

.vs-faq summary svg {
    flex: none;
    color: var(--text-muted);
    transition: transform 0.2s var(--ease);
}

.vs-faq details[open] summary svg {
    transform: rotate(180deg);
}

.vs-faq details p {
    padding: 0 20px 16px;
    color: var(--text-soft);
    font-size: 0.94rem;
}

.vs-other {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.vs-other a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: var(--surface);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.15s var(--ease), color 0.15s var(--ease);
}

.vs-other a:hover {
    border-color: var(--brand-300);
    color: var(--brand-700);
}

.vs-hub-cat {
    margin-top: 40px;
}

.vs-hub-cat h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.vs-hub-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.vs-hub-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.vs-hub-card:hover {
    border-color: var(--brand-300);
    box-shadow: var(--shadow-md);
}

.vs-hub-card b {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.vs-hub-card span {
    color: var(--text-soft);
    font-size: 0.9rem;
    display: block;
}

.vs-hub-card .vs-go {
    color: var(--brand-600);
    flex: none;
}

.vs-cta {
    text-align: center;
    padding: 64px 0;
}

.vs-cta h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}

.vs-cta p {
    color: var(--text-soft);
    max-width: 60ch;
    margin: 0 auto 24px;
}

.vs-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.vs-cta .vs-update-note {
    margin-top: 40px;
    margin-bottom: 0;
}

.vs-update-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 40px;
    max-width: 640px;
    margin-inline: auto;
}

@media (max-width: 900px) {
    .vs-quick {
        grid-template-columns: repeat(2, 1fr);
    }

    .vs-points-grid,
    .vs-switch {
        grid-template-columns: 1fr;
    }

    .vs-europe {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .vs-hub-cards {
        grid-template-columns: 1fr;
    }
}
