:root {
    --vvs-bg: #f6f4ec;
    --vvs-paper: #ffffff;
    --vvs-ink: #13211f;
    --vvs-muted: #5e6f69;
    --vvs-green: #153d35;
    --vvs-green-2: #235e51;
    --vvs-amber: #f2b544;
    --vvs-blue: #2d5d7b;
    --vvs-line: #d9e1dd;
    --vvs-shadow: 0 18px 48px rgba(21, 61, 53, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--vvs-ink);
    background: var(--vvs-bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
    letter-spacing: 0;
}
body.admin-bar .vvs-header { top: 32px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.vvs-wrap {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.vvs-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    background: rgba(246, 244, 236, .95);
    border-bottom: 1px solid rgba(21, 61, 53, .12);
    backdrop-filter: blur(14px);
}
.vvs-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 0;
}
.vvs-brand__mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #fff;
    background: var(--vvs-green);
    border-radius: 8px;
    font-weight: 900;
    font-size: 14px;
}
.vvs-brand strong {
    display: block;
    font-size: 16px;
    line-height: 1.05;
}
.vvs-brand small {
    display: block;
    color: var(--vvs-muted);
    font-size: 12px;
    white-space: nowrap;
}
.vvs-nav {
    display: none;
    margin-left: auto;
    gap: 22px;
    color: var(--vvs-muted);
    font-size: 14px;
}
.vvs-nav a {
    text-decoration: none;
}
.vvs-nav a:hover { color: var(--vvs-green); }
.vvs-header__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 7px;
}
.vvs-channel,
.vvs-phone {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
}
.vvs-channel {
    width: 42px;
    color: var(--vvs-green);
    background: #fff;
    border: 1px solid var(--vvs-line);
    font-size: 12px;
}
.vvs-phone {
    display: none;
    padding: 0 14px;
    color: #fff;
    background: var(--vvs-green);
    font-size: 14px;
}

.vvs-hero {
    padding: 18px 0 26px;
    background:
        radial-gradient(circle at 16% 0%, rgba(242,181,68,.28), transparent 30%),
        linear-gradient(180deg, #fbfaf5 0%, var(--vvs-bg) 100%);
}
.vvs-hero__grid {
    display: grid;
    gap: 14px;
}
.vvs-kicker {
    margin: 0 0 6px;
    color: var(--vvs-blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.vvs-hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: 40px;
    line-height: .94;
    letter-spacing: 0;
}
.vvs-hero__lead {
    margin: 12px 0 0;
    max-width: 680px;
    color: #31423d;
    font-size: 18px;
}
.vvs-hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}
.vvs-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border-radius: 8px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}
.vvs-btn--primary {
    color: #fff;
    background: var(--vvs-green);
}
.vvs-btn--ghost {
    color: var(--vvs-green);
    background: #fff;
    border-color: var(--vvs-line);
}
.vvs-btn--secondary {
    color: var(--vvs-green);
    background: #fff4d8;
    border-color: rgba(242,181,68,.6);
}
.vvs-hero__channels,
.vvs-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.vvs-hero__channels a,
.vvs-hero__tags span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
}
.vvs-hero__channels a {
    background: #eaf1ee;
    color: var(--vvs-green);
}
.vvs-hero__tags span {
    color: #5a3e04;
    background: rgba(242,181,68,.2);
}
.vvs-hero__visual {
    margin: 6px 0 0;
}
.vvs-hero__visual img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    box-shadow: var(--vvs-shadow);
}
.vvs-hero__panel {
    padding: 16px;
    background: var(--vvs-paper);
    border: 1px solid var(--vvs-line);
    border-radius: 8px;
    box-shadow: var(--vvs-shadow);
}
.vvs-panel__head p {
    margin: 0 0 4px;
    color: var(--vvs-blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.vvs-panel__head h2 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.08;
}
.vvs-form {
    display: grid;
    gap: 10px;
}
.vvs-field {
    display: grid;
    gap: 5px;
}
.vvs-field span {
    color: var(--vvs-muted);
    font-size: 13px;
    font-weight: 800;
}
.vvs-field input,
.vvs-field select,
.vvs-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 12px;
    color: var(--vvs-ink);
    background: #f9fbfa;
    border: 1px solid #cbd8d3;
    border-radius: 8px;
    font: inherit;
    font-size: 16px;
    outline: none;
}
.vvs-field textarea {
    resize: vertical;
}
.vvs-field input:focus,
.vvs-field select:focus,
.vvs-field textarea:focus {
    border-color: var(--vvs-green-2);
    box-shadow: 0 0 0 3px rgba(35, 94, 81, .14);
}
.vvs-field--honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.vvs-form__note,
.vvs-form__status {
    margin: 0;
    color: var(--vvs-muted);
    font-size: 13px;
}
.vvs-consent {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    color: var(--vvs-muted);
    font-size: 12px;
    line-height: 1.35;
}
.vvs-consent input {
    width: 22px;
    height: 22px;
    margin: 0;
    accent-color: var(--vvs-green);
}
.vvs-consent a {
    color: var(--vvs-green);
    font-weight: 800;
}
.vvs-form__status[data-state="ok"] { color: #177245; font-weight: 800; }
.vvs-form__status[data-state="error"] { color: #a23b19; font-weight: 800; }

.vvs-proof {
    padding: 10px 0 26px;
}
.vvs-proof__grid {
    display: grid;
    gap: 10px;
}
.vvs-proof__grid div {
    padding: 14px;
    background: #fff;
    border: 1px solid var(--vvs-line);
    border-radius: 8px;
}
.vvs-proof b {
    display: block;
    font-size: 20px;
}
.vvs-proof span {
    color: var(--vvs-muted);
    font-size: 14px;
}

.vvs-section {
    padding: 38px 0;
}
.vvs-band {
    padding: 38px 0;
    background: #eaf1ee;
}
.vvs-band--areas {
    background: #fff4d8;
}
.vvs-section__head {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}
.vvs-section__head h2 {
    margin: 0;
    max-width: 760px;
    font-size: 32px;
    line-height: 1;
}
.vvs-inline {
    min-height: 42px;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    padding: 9px 13px;
    color: var(--vvs-green);
    background: #fff;
    border: 1px solid var(--vvs-line);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
}
.vvs-service-grid,
.vvs-buyer-grid {
    display: grid;
    gap: 10px;
}
.vvs-service,
.vvs-buyer {
    min-height: 164px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--vvs-line);
    border-radius: 8px;
}
.vvs-service h3,
.vvs-buyer h3 {
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 1.12;
}
.vvs-service h3 a {
    color: inherit;
    text-decoration: none;
}
.vvs-service__link {
    display: inline-flex;
    margin-top: 14px;
    color: var(--vvs-green);
    font-weight: 900;
}
.vvs-service p,
.vvs-buyer p,
.vvs-split p,
.vvs-final p,
.vvs-content p {
    margin: 0;
    color: var(--vvs-muted);
    font-size: 16px;
}

.vvs-steps {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.vvs-steps li {
    padding: 16px;
    background: #fff;
    border: 1px solid var(--vvs-line);
    border-radius: 8px;
}
.vvs-steps span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    color: var(--vvs-green);
    background: #fff4d8;
    border-radius: 8px;
    font-weight: 900;
}
.vvs-steps h3 {
    margin: 0 0 6px;
    font-size: 20px;
}
.vvs-steps p {
    margin: 0;
    color: var(--vvs-muted);
}

.vvs-split {
    display: grid;
    gap: 14px;
}
.vvs-split h2,
.vvs-final h2,
.vvs-content h1 {
    margin: 0 0 14px;
    font-size: 32px;
    line-height: 1;
}
.vvs-split p + p {
    margin-top: 12px;
}
.vvs-split .vvs-btn {
    margin-top: 16px;
}
.vvs-checklist {
    padding: 16px;
    color: #fff;
    background: var(--vvs-green);
    border-radius: 8px;
}
.vvs-checklist h3 {
    margin: 0 0 10px;
    font-size: 22px;
}
.vvs-checklist ul {
    display: grid;
    gap: 8px;
    padding-left: 20px;
    margin: 0;
}
.vvs-checklist li {
    color: #d9e8e3;
}
.vvs-area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.vvs-area-list span {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid rgba(21, 61, 53, .14);
    border-radius: 8px;
    font-weight: 850;
}
.vvs-final {
    display: grid;
    gap: 18px;
    padding: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--vvs-green), #214c65);
    border-radius: 8px;
}
.vvs-final p { color: #dbe8e4; }
.vvs-final__actions {
    display: grid;
    gap: 10px;
}
.vvs-final .vvs-btn--ghost {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.3);
    color: #fff;
}

.vvs-content {
    min-height: 52vh;
    padding-top: 48px;
}
.vvs-article {
    max-width: 820px;
}
.vvs-article h1 {
    overflow-wrap: anywhere;
}
.vvs-article h2 {
    margin: 28px 0 10px;
    font-size: 25px;
    line-height: 1.15;
}
.vvs-article h3 {
    margin: 22px 0 8px;
    font-size: 20px;
}
.vvs-article ul,
.vvs-article ol {
    display: grid;
    gap: 8px;
    padding-left: 22px;
    color: var(--vvs-muted);
}
.vvs-article a {
    color: var(--vvs-green);
}

.vvs-footer {
    padding: 34px 0 86px;
    color: #dbe8e4;
    background: #0e2924;
}
.vvs-footer__grid {
    display: grid;
    gap: 20px;
}
.vvs-footer__brand {
    margin: 0 0 8px;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}
.vvs-footer p {
    margin: 0;
    color: #b8cac4;
}
.vvs-footer .vvs-footer__legal {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.45;
}
.vvs-footer__contacts {
    display: grid;
    gap: 8px;
}
.vvs-footer__contacts a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}
.vvs-footer__analytics {
    width: fit-content;
    min-height: 40px;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    font: inherit;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.vvs-sticky {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 70;
    display: grid;
    grid-template-columns: 1.1fr .8fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255,255,255,.94);
    border: 1px solid var(--vvs-line);
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(0,0,0,.18);
    backdrop-filter: blur(12px);
}
.vvs-cookie {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 90;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    align-items: center;
    min-height: 66px;
    padding: 10px;
    color: var(--vvs-ink);
    background: #fff;
    border: 1px solid var(--vvs-line);
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(0,0,0,.2);
}
.vvs-cookie[hidden] { display: none; }
.vvs-cookie p {
    margin: 0;
    font-size: 12px;
    line-height: 1.3;
}
.vvs-cookie a {
    color: var(--vvs-green);
    font-weight: 800;
}
.vvs-cookie button {
    min-height: 42px;
    padding: 8px 10px;
    color: #fff;
    background: var(--vvs-green);
    border: 1px solid var(--vvs-green);
    border-radius: 8px;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}
.vvs-cookie [data-vvs-analytics-decline] {
    color: var(--vvs-green);
    background: #fff;
}
.vvs-analytics-choice-open .vvs-sticky { display: none; }
.vvs-sticky a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
}
.vvs-sticky__call,
.vvs-sticky__lead {
    color: #fff;
    background: var(--vvs-green);
}
.vvs-sticky__max {
    color: var(--vvs-green);
    background: #fff4d8;
}

@media (min-width: 760px) {
    .vvs-wrap { width: min(1160px, calc(100% - 48px)); }
    .vvs-phone { display: inline-flex; }
    .vvs-hero { padding: 42px 0 44px; }
    .vvs-hero h1 { font-size: 56px; }
    .vvs-section__head h2,
    .vvs-split h2,
    .vvs-final h2,
    .vvs-content h1 { font-size: 40px; }
    .vvs-hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(300px, .78fr);
        align-items: center;
    }
    .vvs-hero__visual {
        grid-column: 2;
        grid-row: 1;
    }
    .vvs-hero__visual img {
        max-height: none;
    }
    .vvs-hero__panel {
        grid-column: 1 / -1;
    }
    .vvs-proof__grid,
    .vvs-buyer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .vvs-buyer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .vvs-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vvs-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    .vvs-split {
        grid-template-columns: minmax(0, 1fr) 360px;
        align-items: start;
    }
    .vvs-final {
        grid-template-columns: minmax(0, 1fr) 340px;
        align-items: center;
    }
    .vvs-footer__grid {
        grid-template-columns: minmax(0, 1fr) 320px;
    }
}

@media (min-width: 1020px) {
    .vvs-header { padding: 12px 28px; }
    .vvs-nav { display: flex; }
    .vvs-hero h1 { font-size: 68px; }
    .vvs-section__head h2,
    .vvs-split h2,
    .vvs-final h2,
    .vvs-content h1 { font-size: 46px; }
    .vvs-hero__grid {
        grid-template-columns: minmax(0, .95fr) minmax(340px, .7fr) minmax(330px, .58fr);
        gap: 24px;
    }
    .vvs-hero__visual {
        grid-column: 2;
        grid-row: 1;
    }
    .vvs-hero__panel {
        grid-column: 3;
        grid-row: 1;
    }
    .vvs-service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .vvs-section,
    .vvs-band {
        padding: 62px 0;
    }
    .vvs-sticky { display: none; }
    .vvs-footer { padding-bottom: 42px; }
}

@media (max-width: 390px) {
    .vvs-header {
        padding-left: 10px;
        padding-right: 10px;
    }
    .vvs-brand strong { font-size: 14px; }
    .vvs-brand small { font-size: 11px; }
    .vvs-channel {
        width: 38px;
        font-size: 11px;
    }
    .vvs-hero h1 {
        font-size: 36px;
    }
    .vvs-hero__lead {
        font-size: 16px;
    }
    .vvs-btn {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 15px;
    }
}
