:root {
    --vs-green: #198754;
    --vs-green-dark: #145c3d;
    --vs-green-soft: #eaf8f0;
    --vs-green-pale: #f5fbf7;
    --vs-ink: #14231c;
    --vs-muted: #68766f;
    --vs-line: #e2ebe6;
    --vs-card: #ffffff;
    --vs-shadow: 0 18px 52px rgba(24, 61, 42, .08);
}

body.vs-info-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(25, 135, 84, .07), transparent 28%),
        linear-gradient(180deg, #f8fbf9 0%, #f5f8f6 100%);
    color: var(--vs-ink);
}

.vs-info-page {
    max-width: 1180px;
    margin: 24px auto 52px;
}

.vs-breadcrumb {
    margin-bottom: 16px;
}

.vs-breadcrumb .breadcrumb {
    margin-bottom: 0;
    padding: 12px 16px;
    border: 1px solid var(--vs-line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(8px);
}

.vs-hero {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid var(--vs-line);
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f0faf4 100%);
    box-shadow: var(--vs-shadow);
}

.vs-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -96px;
    top: -112px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25, 135, 84, .16), rgba(25, 135, 84, 0));
    pointer-events: none;
}

.vs-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 32px;
    align-items: center;
}

.vs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--vs-green);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.vs-hero h1 {
    max-width: 760px;
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: -.035em;
    font-weight: 850;
    color: var(--vs-ink);
}

.vs-hero-lead {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--vs-muted);
    font-size: 1.04rem;
    line-height: 1.72;
}

.vs-hero-mark {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px;
    border-radius: 24px;
    color: #fff;
    text-align: center;
    background: linear-gradient(145deg, var(--vs-green) 0%, var(--vs-green-dark) 100%);
    box-shadow: 0 18px 38px rgba(20, 92, 61, .22);
}

.vs-hero-mark-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(255, 255, 255, .15);
    font-size: 1.8rem;
}

.vs-hero-mark strong {
    font-size: 1.05rem;
}

.vs-hero-mark span {
    color: rgba(255, 255, 255, .8);
    font-size: .86rem;
    line-height: 1.55;
}

.vs-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

.vs-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid #dcebe2;
    border-radius: 999px;
    background: rgba(255, 255, 255, .76);
    color: #41554a;
    font-size: .82rem;
    font-weight: 700;
}

.vs-section {
    margin-top: 24px;
    padding: 28px;
    border: 1px solid var(--vs-line);
    border-radius: 24px;
    background: var(--vs-card);
    box-shadow: 0 10px 32px rgba(24, 61, 42, .05);
}

.vs-section-head {
    max-width: 760px;
    margin-bottom: 22px;
}

.vs-section-head h2 {
    margin-bottom: 8px;
    font-size: clamp(1.45rem, 2.3vw, 2rem);
    font-weight: 850;
    letter-spacing: -.02em;
}

.vs-section-head p {
    margin-bottom: 0;
    color: var(--vs-muted);
    line-height: 1.65;
}

.vs-grid-2,
.vs-grid-3,
.vs-grid-4 {
    display: grid;
    gap: 16px;
}

.vs-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vs-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vs-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.vs-card {
    height: 100%;
    padding: 20px;
    border: 1px solid var(--vs-line);
    border-radius: 19px;
    background: #fff;
}

.vs-card-soft {
    background: var(--vs-green-pale);
}

.vs-card-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 14px;
    color: var(--vs-green);
    background: var(--vs-green-soft);
    font-size: 1.05rem;
}

.vs-card h3 {
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 800;
}

.vs-card p,
.vs-card li {
    color: var(--vs-muted);
    font-size: .91rem;
    line-height: 1.62;
}

.vs-card p:last-child,
.vs-card ul:last-child,
.vs-card ol:last-child {
    margin-bottom: 0;
}

.vs-step-list {
    display: grid;
    gap: 14px;
}

.vs-step {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px;
    border: 1px solid var(--vs-line);
    border-radius: 17px;
    background: #fff;
}

.vs-step-number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--vs-green);
    background: var(--vs-green-soft);
    font-weight: 850;
}

.vs-step strong {
    display: block;
    margin-bottom: 4px;
    font-size: .98rem;
}

.vs-step span {
    display: block;
    color: var(--vs-muted);
    font-size: .89rem;
    line-height: 1.55;
}

.vs-highlight {
    padding: 24px;
    border-radius: 21px;
    color: #fff;
    background: linear-gradient(145deg, var(--vs-green) 0%, var(--vs-green-dark) 100%);
}

.vs-highlight h2,
.vs-highlight h3,
.vs-highlight strong {
    color: #fff;
}

.vs-highlight p,
.vs-highlight li,
.vs-highlight span {
    color: rgba(255, 255, 255, .82);
}

.vs-link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 108px;
    padding: 18px;
    border: 1px solid var(--vs-line);
    border-radius: 18px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.vs-link-card:hover {
    color: inherit;
    transform: translateY(-2px);
    border-color: #cde3d5;
    box-shadow: 0 12px 26px rgba(24, 61, 42, .08);
}

.vs-link-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    border-radius: 15px;
    color: var(--vs-green);
    background: var(--vs-green-soft);
}

.vs-link-card strong {
    display: block;
    margin-bottom: 3px;
}

.vs-link-card span {
    display: block;
    color: var(--vs-muted);
    font-size: .86rem;
    line-height: 1.45;
}

.vs-contact-email {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    border: 1px solid #cfe5d7;
    border-radius: 18px;
    background: #f0faf4;
}

.vs-contact-email a {
    color: var(--vs-green-dark);
    font-size: clamp(1.15rem, 2.6vw, 1.65rem);
    font-weight: 850;
    text-decoration: none;
    word-break: break-word;
}

.vs-contact-email small {
    display: block;
    margin-top: 4px;
    color: var(--vs-muted);
}

.vs-copy-btn,
.vs-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 16px;
    border: 0;
    border-radius: 13px;
    color: #fff;
    background: var(--vs-green);
    font-weight: 800;
    text-decoration: none;
    transition: background .18s ease, transform .18s ease;
}

.vs-copy-btn:hover,
.vs-primary-btn:hover {
    color: #fff;
    background: var(--vs-green-dark);
    transform: translateY(-1px);
}

.vs-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    border-left: 4px solid var(--vs-green);
    border-radius: 0 15px 15px 0;
    background: #f2faf5;
    color: #466055;
    line-height: 1.6;
}

.vs-note i {
    margin-top: 3px;
    color: var(--vs-green);
}

.vs-content {
    color: #34483e;
    line-height: 1.72;
}

.vs-content h2 {
    margin: 30px 0 12px;
    color: var(--vs-ink);
    font-size: 1.25rem;
    font-weight: 850;
}

.vs-content h2:first-child {
    margin-top: 0;
}

.vs-content p,
.vs-content li {
    color: #53665c;
}

.vs-content ol,
.vs-content ul {
    padding-left: 1.2rem;
}

.vs-content li {
    margin-bottom: 10px;
}

.vs-content code {
    padding: 2px 7px;
    border: 1px solid #dce8e0;
    border-radius: 8px;
    color: var(--vs-green-dark);
    background: #f6faf7;
}

.vs-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: #5e7066;
    font-weight: 750;
    text-decoration: none;
}

.vs-back-link:hover {
    color: var(--vs-green);
}

@media (max-width: 991.98px) {
    .vs-hero-grid {
        grid-template-columns: 1fr;
    }

    .vs-hero-mark {
        min-height: 0;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .vs-grid-4,
    .vs-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .vs-info-page {
        margin-top: 12px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .vs-hero,
    .vs-section {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .vs-hero h1 {
        font-size: 2rem;
    }

    .vs-grid-4,
    .vs-grid-3,
    .vs-grid-2 {
        grid-template-columns: 1fr;
    }

    .vs-contact-email {
        align-items: flex-start;
        flex-direction: column;
    }

    .vs-copy-btn,
    .vs-primary-btn {
        width: 100%;
    }

    .vs-hero-mark {
        align-items: flex-start;
    }
}
