:root {
    --vr-orange: #f36b16;
    --vr-orange-dark: #d95205;
    --vr-orange-soft: #fff1e6;

    --vr-text: #242833;
    --vr-muted: #6d6f74;

    --vr-bg: #fffdfb;
    --vr-soft: #faf7f4;
    --vr-white: #ffffff;
    --vr-border: #eadfd6;

    --vr-danger: #c64040;
    --vr-danger-bg: #fff6f6;

    --vr-warning: #b66a09;
    --vr-warning-bg: #fff9ed;

    --vr-radius-large: 28px;
    --vr-radius-medium: 20px;

    --vr-shadow:
        0 20px 60px rgba(63, 39, 21, 0.1);
}


/* ==================================================
   ОСНОВА
   ================================================== */

.vr-page,
.vr-page *,
.vr-page *::before,
.vr-page *::after {
    box-sizing: border-box;
}

.vr-page {
    width: 100%;
    overflow: hidden;

    background: var(--vr-bg);
    color: var(--vr-text);

    font-family: Montserrat, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

.vr-page img,
.vr-page video,
.vr-page iframe {
    display: block;
    max-width: 100%;
}

.vr-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/* ==================================================
   КНОПКИ
   ================================================== */

.vr-btn {
    display: inline-flex;
    min-height: 52px;

    align-items: center;
    justify-content: center;

    padding: 13px 24px;

    border: 1px solid transparent;
    border-radius: 14px;

    font: inherit;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.vr-btn:hover {
    transform: translateY(-2px);
}

.vr-btn--primary {
    background: var(--vr-orange);
    color: #ffffff !important;

    box-shadow:
        0 12px 28px rgba(243, 107, 22, 0.24);
}

.vr-btn--primary:hover {
    background: var(--vr-orange-dark);
}

.vr-btn--secondary {
    border-color: #e7ad84;

    background: #ffffff;
    color: var(--vr-text) !important;
}

.vr-btn--secondary:hover {
    border-color: var(--vr-orange);

    box-shadow:
        0 12px 28px rgba(63, 39, 21, 0.08);
}


/* ==================================================
   ПЕРВЫЙ ЭКРАН
   ================================================== */

.vr-hero {
    padding: 48px 0 30px;

    background:
        radial-gradient(
            circle at 86% 8%,
            rgba(243, 107, 22, 0.16),
            transparent 29%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffaf6 100%
        );
}

.vr-hero__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(410px, 0.92fr);

    align-items: center;
    gap: 50px;
}

.vr-hero__content,
.vr-hero__visual {
    min-width: 0;
}

.vr-eyebrow,
.vr-section-heading > span,
.vr-price-block__intro > span {
    display: inline-block;

    margin-bottom: 16px;

    color: var(--vr-orange-dark);

    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.vr-title {
    max-width: 720px;

    margin: 0;

    color: var(--vr-text);

    font-size: clamp(42px, 5.3vw, 72px);
    font-weight: 750;
    line-height: 1;
    letter-spacing: -0.052em;
}

.vr-title span {
    display: block;

    margin-top: 8px;

    color: var(--vr-orange);
}

.vr-lead {
    max-width: 650px;

    margin: 26px 0 0;

    color: var(--vr-muted);

    font-size: 18px;
}

.vr-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}

.vr-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;

    margin-top: 34px;
}

.vr-fact {
    min-width: 0;

    padding-top: 16px;

    border-top: 1px solid var(--vr-border);
}

.vr-fact strong,
.vr-fact span {
    display: block;
}

.vr-fact strong {
    color: var(--vr-text);

    font-size: 14px;
    line-height: 1.35;
}

.vr-fact span {
    margin-top: 5px;

    color: var(--vr-muted);

    font-size: 12px;
    line-height: 1.45;
}


/* Изображение первого экрана */

.vr-hero__visual {
    position: relative;

    min-height: 590px;
}

.vr-hero__visual > img {
    width: 100%;
    height: 590px;

    object-fit: cover;
    object-position: center;

    border-radius: 210px 24px 24px 24px;

    box-shadow: var(--vr-shadow);
}


/* Карточка цены */

.vr-price-card {
    position: absolute;
    right: -24px;
    bottom: 34px;
    z-index: 2;

    width: 245px;

    padding: 22px;

    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.95);

    box-shadow: var(--vr-shadow);

    backdrop-filter: blur(14px);
}

.vr-price-card__main,
.vr-price-card__special {
    display: grid;
}

.vr-price-card__main span,
.vr-price-card__special span {
    color: var(--vr-muted);

    font-size: 12px;
}

.vr-price-card__main strong {
    margin-top: 2px;

    color: var(--vr-text);

    font-size: 30px;
    line-height: 1.1;
}

.vr-price-card__special {
    margin-top: 14px;
    padding: 14px;

    border-radius: 16px;

    background: var(--vr-orange-soft);
}

.vr-price-card__special strong {
    margin-top: 2px;

    color: var(--vr-orange-dark);

    font-size: 28px;
    line-height: 1.1;
}

.vr-price-card__special small {
    margin-top: 5px;

    color: var(--vr-muted);

    font-size: 11px;
    line-height: 1.4;
}

.vr-price-card__link {
    display: inline-block;

    margin-top: 14px;

    color: var(--vr-orange-dark);

    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}


/* ==================================================
   НАВИГАЦИЯ ПО СТРАНИЦЕ
   ================================================== */

.vr-anchor-nav {
    position: sticky;
    top: 0;
    z-index: 50;

    border-top: 1px solid var(--vr-border);
    border-bottom: 1px solid var(--vr-border);

    background: rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(16px);
}

.vr-anchor-nav .vr-container {
    display: flex;
    gap: 28px;

    overflow-x: auto;

    padding-top: 14px;
    padding-bottom: 14px;

    scrollbar-width: none;
}

.vr-anchor-nav .vr-container::-webkit-scrollbar {
    display: none;
}

.vr-anchor-nav a {
    flex: 0 0 auto;

    color: var(--vr-text);

    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    transition: color 0.2s ease;
}

.vr-anchor-nav a:hover {
    color: var(--vr-orange);
}


/* ==================================================
   ОБЩИЕ СЕКЦИИ
   ================================================== */

.vr-section {
    position: relative;

    padding: 52px 0;

    scroll-margin-top: 78px;
}

.vr-section--soft {
    background: var(--vr-soft);
}

.vr-section-heading {
    max-width: 780px;

    margin: 0 auto 26px;

    text-align: center;
}

.vr-section-heading--left {
    margin-right: 0;
    margin-left: 0;

    text-align: left;
}

.vr-section-heading h2,
.vr-price-block h2 {
    margin: 0;

    color: var(--vr-text);

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.vr-section-heading p {
    margin: 10px 0 0;

    color: var(--vr-muted);

    font-size: 16px;
}


/* ==================================================
   ДЛЯ ПОДРОСТКОВ И ВЗРОСЛЫХ
   Изображение сверху, текст снизу
   ================================================== */

.vr-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.vr-audience-card,
.vr-audience-card.vr-audience-card--vertical {
    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 0;
    overflow: hidden;

    border: 1px solid var(--vr-border);
    border-radius: var(--vr-radius-large);

    background: #ffffff;

    box-shadow:
        0 15px 45px rgba(63, 39, 21, 0.055);
}

.vr-audience-card__photo {
    width: 100%;
    height: 360px;
    flex: 0 0 auto;
    overflow: hidden;

    background: #fff7f1;
}

.vr-audience-card__photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;
}

.vr-audience-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;

    min-width: 0;

    padding: 28px 30px 32px;
}

.vr-card-label {
    margin-bottom: 8px;

    color: var(--vr-orange-dark);

    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.vr-audience-card h3 {
    max-width: 440px;

    margin: 0 0 18px;

    color: var(--vr-text);

    font-size: 24px;
    line-height: 1.22;
}

.vr-audience-card .vr-check-list {
    display: flex;
    flex-direction: column;
    gap: 4px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.vr-audience-card .vr-check-list li {
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr);
    column-gap: 7px;
    align-items: start;

    margin: 0;
    padding: 1px 0;

    line-height: 1.34;
}

.vr-audience-card .vr-check-list li::before {
    position: static;

    display: block;
    width: 14px;

    margin: 0;
    padding: 0;

    color: var(--vr-orange);

    content: "✓";

    font-weight: 900;
    line-height: 1.34;
}


/* Планшеты */

@media (max-width: 1050px) {

    .vr-audience-grid {
        grid-template-columns: 1fr;
    }

    .vr-audience-card__photo {
        height: 400px;
    }
}


/* Телефоны */

@media (max-width: 700px) {

    .vr-audience-card__photo {
        height: 290px;
    }

    .vr-audience-card__content {
        padding: 24px 22px 27px;
    }

    .vr-audience-card h3 {
        margin-bottom: 16px;

        font-size: 22px;
    }

    .vr-audience-card .vr-check-list {
        gap: 3px;
    }

    .vr-audience-card .vr-check-list li {
        grid-template-columns: 14px minmax(0, 1fr);
        column-gap: 6px;

        padding: 1px 0;

        line-height: 1.32;
    }
}

@media (max-width: 420px) {

    .vr-audience-card__photo {
        height: 250px;
    }
}


/* ==================================================
   КАК ПРОХОДИТ
   ================================================== */

.vr-process-layout,
.vr-report-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;

    align-items: center;
    gap: 70px;
}

.vr-section--report .vr-report-layout {
    align-items: start;
    gap: 44px;
}

.vr-process-copy,
.vr-report-copy {
    min-width: 0;
}

.vr-steps {
    display: grid;
    gap: 23px;

    margin: 34px 0 0;
    padding: 0;

    list-style: none;
}

.vr-steps li {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 17px;

    align-items: start;
}

.vr-steps li > span {
    display: grid;

    width: 46px;
    height: 46px;

    place-items: center;

    border: 1px solid #efb98f;
    border-radius: 50%;

    color: var(--vr-orange-dark);

    font-size: 12px;
    font-weight: 800;
}

.vr-steps strong {
    display: block;

    color: var(--vr-text);

    font-size: 17px;
}

.vr-steps p {
    margin: 5px 0 0;

    color: var(--vr-muted);

    font-size: 14px;
}


/* ==================================================
   INSTAGRAM — ОСНОВНОЕ ВИДЕО
   ================================================== */

.vr-phone-video--instagram {
    width: min(100%, 390px);
    min-width: 0;

    margin-inline: auto;
}

.vr-instagram-embed {
    width: 100%;
    min-width: 0;
    min-height: 650px;
    overflow: hidden;

    border: 1px solid var(--vr-border);
    border-radius: 24px;

    background: #ffffff;

    box-shadow: var(--vr-shadow);
}

.vr-instagram-embed .instagram-media,
.vr-instagram-embed iframe {
    display: block !important;

    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;

    margin: 0 !important;

    border: 0 !important;

    box-shadow: none !important;
}


/* ==================================================
   ЧТО ВХОДИТ — КОМПАКТНЫЕ КАРТОЧКИ
   Номер рядом с заголовком
   ================================================== */

#included.vr-section {
    padding-top: 48px;
    padding-bottom: 48px;
}

#included .vr-section-heading {
    margin-bottom: 26px;
}

#included .vr-section-heading > span {
    margin-bottom: 9px;
}

#included .vr-section-heading h2 {
    font-size: clamp(30px, 3.4vw, 42px);
}

.vr-included-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.vr-included-grid article {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    grid-template-areas:
        "number title"
        ". description";

    column-gap: 8px;
    row-gap: 6px;
    align-content: start;

    min-width: 0;
    min-height: 126px;

    padding: 17px 18px;

    border: 1px solid var(--vr-border);
    border-radius: 18px;

    background: #ffffff;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vr-included-grid article:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(63, 39, 21, 0.07);
}

.vr-included-grid article > span {
    grid-area: number;
    align-self: center;

    color: var(--vr-orange);

    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.vr-included-grid h3 {
    grid-area: title;
    align-self: center;

    margin: 0;

    color: var(--vr-text);

    font-size: 15px;
    line-height: 1.25;
}

.vr-included-grid p {
    grid-area: description;

    margin: 0;

    color: var(--vr-muted);

    font-size: 12px;
    line-height: 1.45;
}


/* Планшеты */

@media (max-width: 1050px) {

    #included.vr-section {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .vr-included-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* Телефоны */

@media (max-width: 700px) {

    #included.vr-section {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    #included .vr-section-heading {
        margin-bottom: 22px;
    }

    .vr-included-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .vr-included-grid article {
        min-height: auto;

        grid-template-columns: 22px minmax(0, 1fr);
        column-gap: 7px;

        padding: 16px;
    }

    .vr-included-grid h3 {
        font-size: 15px;
    }
}


/* ==================================================
   ПРИМЕР ОТЧЁТА
   ================================================== */

.vr-section--report {
    padding-top: 28px;
    padding-bottom: 28px;

    background: #1d1f23;
    color: #ffffff;
}

.vr-section--report .vr-section-heading {
    margin-bottom: 18px;
}

.vr-section--report .vr-section-heading > span {
    margin-bottom: 10px;
}

.vr-section--report .vr-section-heading h2 {
    color: #ffffff;
}

.vr-section--report .vr-section-heading p {
    margin-top: 10px;
}

.vr-section--report .vr-report-copy,
.vr-section--report .vr-pdf-viewer {
    align-self: start;
}

.vr-section--report .vr-section-heading p,
.vr-section--report .vr-check-list {
    color: rgba(255, 255, 255, 0.72);
}

.vr-section--report .vr-check-list {
    display: flex;
    flex-direction: column;
    gap: 0;

    margin: 0;
}

.vr-section--report .vr-check-list li {
    min-height: 0;

    margin: 0;
    padding: 5px 0 5px 28px;

    line-height: 1.32;
}

.vr-section--report .vr-check-list li::before {
    top: 5px;
}

.vr-section--report .vr-btn--secondary {
    margin-top: 18px;

    border-color: rgba(255, 255, 255, 0.38);

    background: transparent;
    color: #ffffff !important;
}

.vr-section--report .vr-btn--secondary:hover {
    border-color: #ffffff;

    background: #ffffff;
    color: #1d1f23 !important;
}

.vr-pdf-viewer {
    min-width: 0;
    overflow: hidden;

    border-radius: 20px;

    background: #333333;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.3);
}

.vr-pdf-viewer iframe {
    width: 100%;
    height: 620px;

    border: 0;

    background: #ffffff;
}


/* ==================================================
   ОТЗЫВЫ — ГОРИЗОНТАЛЬНАЯ ЛЕНТА
   ================================================== */

.vr-section--reviews {
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffaf6 100%
        );
}

.vr-reviews-slider {
    position: relative;

    width: 100%;
    min-width: 0;

    padding-inline: 30px;
}

.vr-review-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start;

    width: 100% !important;
    max-width: 100% !important;

    gap: 20px !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    margin: 0 !important;
    padding: 8px 4px 24px !important;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;

    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.vr-review-track::-webkit-scrollbar {
    display: none;
}

.vr-review-card {
    display: block !important;
    flex: 0 0 355px !important;

    width: 355px !important;
    min-width: 355px !important;
    max-width: 355px !important;

    margin: 0 !important;
    padding: 0 !important;

    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.vr-review-embed {
    display: block;

    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 650px;

    overflow: hidden;

    margin: 0 !important;
    padding: 0 !important;

    border: 1px solid var(--vr-border);
    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 18px 50px rgba(63, 39, 21, 0.08);
}

.vr-review-embed .instagram-media,
.vr-review-embed iframe {
    display: block !important;

    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    box-shadow: none !important;
}


/* Стрелки ленты */

.vr-reviews-arrow {
    position: absolute !important;
    top: 300px !important;
    z-index: 10 !important;

    display: grid !important;

    width: 50px !important;
    height: 50px !important;

    place-items: center;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 50% !important;

    background: var(--vr-orange) !important;
    color: #ffffff !important;

    font-family: Montserrat, Arial, sans-serif !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    line-height: 1 !important;

    cursor: pointer;

    box-shadow:
        0 12px 30px rgba(243, 107, 22, 0.28);

    transform: translateY(-50%);

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.vr-reviews-arrow:hover {
    background: var(--vr-orange-dark) !important;

    transform:
        translateY(-50%)
        scale(1.06);
}

.vr-reviews-arrow--prev {
    left: 0 !important;
    right: auto !important;
}

.vr-reviews-arrow--next {
    right: 0 !important;
    left: auto !important;
}

.vr-reviews-hint {
    display: none;

    margin-top: 8px;

    color: var(--vr-muted);

    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.vr-reviews-hint span {
    color: var(--vr-orange);

    font-size: 17px;
}


/* ==================================================
   СТОИМОСТЬ
   ================================================== */

.vr-section--price {
    padding-top: 26px;
    padding-bottom: 42px;
}

.vr-price-block {
    display: grid;
    grid-template-columns:
        minmax(230px, 1.02fr)
        minmax(210px, 0.78fr)
        minmax(270px, 1fr);

    align-items: stretch;
    gap: 14px;

    padding: 26px;

    border: 1px solid #f0d4bf;
    border-radius: var(--vr-radius-large);

    background: #fff3e9;
}


/* Левая колонка */

.vr-price-block__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    min-width: 0;

    padding: 20px;
}

.vr-price-block__intro > span {
    margin-bottom: 12px;
}

.vr-price-block__intro h2 {
    margin: 0;

    color: var(--vr-text);

    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.vr-price-block__intro p {
    margin: 10px 0 0;

    color: var(--vr-muted);

    font-size: 13px;
    line-height: 1.5;
}

.vr-btn--manager {
    width: auto;
    min-height: 46px;

    margin-top: 22px;
    padding: 11px 17px;

    border: 1px solid var(--vr-orange);
    border-radius: 12px;

    background: transparent;
    color: var(--vr-orange-dark) !important;

    font-size: 13px;
    font-weight: 700;

    box-shadow: none;
}

.vr-btn--manager:hover {
    border-color: var(--vr-orange);

    background: var(--vr-orange);
    color: #ffffff !important;
}


/* Карточки стоимости */

.vr-price-option {
    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 280px;

    padding: 22px 20px;

    border-radius: 20px;

    background: #ffffff;
}

.vr-price-option > span {
    display: block;

    color: var(--vr-muted);

    font-size: 12px;
    line-height: 1.4;
}

.vr-price-option > strong {
    display: block;

    margin-top: 9px;

    color: var(--vr-text);

    font-size: 34px;
    line-height: 1.05;
    white-space: nowrap;
}

.vr-price-option p {
    margin: 7px 0 0;

    color: var(--vr-muted);

    font-size: 12px;
    line-height: 1.5;
}


/* Специальная стоимость */

.vr-price-option--accent {
    background: var(--vr-orange);
    color: #ffffff;
}

.vr-price-option--accent > span,
.vr-price-option--accent ul {
    color: rgba(255, 255, 255, 0.92);
}

.vr-price-option--accent > strong {
    color: #ffffff;
}

.vr-price-option ul {
    margin: 14px 0 0;
    padding-left: 18px;

    font-size: 12px;
    line-height: 1.45;
}

.vr-price-option li + li {
    margin-top: 8px;
}


/* Кнопки оплаты */

.vr-price-pay-btn {
    display: inline-flex;

    width: 100%;
    min-height: 44px;

    align-items: center;
    justify-content: center;

    margin-top: auto;
    padding: 11px 16px;

    border: 1px solid var(--vr-orange);
    border-radius: 12px;

    background: var(--vr-orange);
    color: #ffffff !important;

    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.vr-price-pay-btn:hover {
    transform: translateY(-2px);

    border-color: var(--vr-orange-dark);

    background: var(--vr-orange-dark);
}

.vr-price-pay-btn--light {
    border-color: #ffffff;

    background: #ffffff;
    color: var(--vr-orange-dark) !important;
}

.vr-price-pay-btn--light:hover {
    border-color: #fff1e6;

    background: #fff1e6;
    color: var(--vr-orange-dark) !important;
}


/* Планшеты */

@media (max-width: 1050px) {

    .vr-price-block {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .vr-price-block__intro {
        grid-column: 1 / -1;
    }

    .vr-price-option {
        min-height: 270px;
    }
}


/* Телефоны */

@media (max-width: 700px) {

    .vr-section--price {
        padding-top: 20px;
        padding-bottom: 34px;
    }

    .vr-price-block {
        grid-template-columns: 1fr;

        padding: 16px;
    }

    .vr-price-block__intro,
    .vr-price-option {
        padding: 18px;
    }

    .vr-price-block__intro {
        grid-column: auto;
    }

    .vr-price-block__intro h2 {
        font-size: 27px;
    }

    .vr-btn--manager {
        width: 100%;
    }

    .vr-price-option {
        min-height: 250px;
    }
}


/* ==================================================
   ОГРАНИЧЕНИЯ
   ================================================== */

.vr-restrictions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.vr-restriction-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;

    min-width: 0;

    padding: 30px;

    border: 1px solid var(--vr-border);
    border-radius: 24px;
}

.vr-restriction-card--danger {
    border-color: #efd5d5;

    background: var(--vr-danger-bg);
}

.vr-restriction-card--warning {
    border-color: #efdfbf;

    background: var(--vr-warning-bg);
}

.vr-restriction-card__icon {
    display: grid;

    width: 48px;
    height: 48px;

    place-items: center;

    border-radius: 50%;

    font-size: 24px;
    font-weight: 800;
}

.vr-restriction-card--danger
.vr-restriction-card__icon {
    background: #ffe0e0;
    color: var(--vr-danger);
}

.vr-restriction-card--warning
.vr-restriction-card__icon {
    background: #ffedc8;
    color: var(--vr-warning);
}

.vr-restriction-card h3 {
    margin: 3px 0 16px;

    color: var(--vr-text);

    font-size: 20px;
    line-height: 1.25;
}

.vr-restriction-card ul {
    margin: 0;
    padding-left: 18px;

    color: var(--vr-muted);

    font-size: 14px;
}

.vr-restriction-card li + li {
    margin-top: 7px;
}

.vr-safety-note {
    display: grid;
    grid-template-columns:
        minmax(220px, 0.75fr)
        minmax(300px, 1.4fr)
        auto;

    align-items: center;
    gap: 26px;

    margin-top: 18px;
    padding: 24px 28px;

    border: 1px solid var(--vr-border);
    border-radius: 20px;

    background: #ffffff;
}

.vr-safety-note strong {
    color: var(--vr-text);

    font-size: 16px;
    line-height: 1.4;
}

.vr-safety-note p {
    margin: 0;

    color: var(--vr-muted);

    font-size: 14px;
    line-height: 1.55;
}

.vr-safety-note__btn {
    width: auto;
    min-width: 210px;

    white-space: nowrap;
}


/* ==================================================
   ПЛАНШЕТЫ
   ================================================== */

@media (max-width: 1050px) {

    .vr-section--report {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .vr-section--report .vr-report-layout {
        gap: 30px;
    }

    .vr-hero__grid,
    .vr-process-layout,
    .vr-report-layout {
        grid-template-columns: 1fr;
    }

    .vr-hero__visual {
        min-height: 520px;
    }

    .vr-hero__visual > img {
        height: 520px;
    }

    .vr-price-card {
        right: 24px;
    }

    .vr-audience-grid {
        grid-template-columns: 1fr;
    }

    .vr-reviews-slider {
        padding-inline: 22px;
    }

    .vr-review-card {
        flex-basis: 330px !important;

        width: 330px !important;
        min-width: 330px !important;
        max-width: 330px !important;
    }

    .vr-reviews-arrow--prev {
        left: -2px !important;
    }

    .vr-reviews-arrow--next {
        right: -2px !important;
    }
}


/* ==================================================
   ТЕЛЕФОНЫ
   ================================================== */

@media (max-width: 700px) {

    .vr-section--report {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .vr-section--report .vr-section-heading {
        margin-bottom: 14px;
    }

    .vr-section--report .vr-check-list li {
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .vr-section--report .vr-check-list li::before {
        top: 4px;
    }

    .vr-section--report .vr-btn--secondary {
        margin-top: 16px;
    }

    .vr-container {
        width: min(100% - 24px, 1180px);
    }

    .vr-hero {
        padding-top: 28px;
    }

    .vr-title {
        font-size: 42px;
        line-height: 1.02;
    }

    .vr-lead {
        font-size: 16px;
    }

    .vr-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .vr-btn {
        width: 100%;
    }

    .vr-facts {
        grid-template-columns: 1fr;
    }

    .vr-hero__visual {
        min-height: 470px;
    }

    .vr-hero__visual > img {
        height: 470px;

        border-radius: 100px 20px 20px 20px;
    }

    .vr-price-card {
        right: 12px;
        bottom: 12px;

        width: min(240px, calc(100% - 24px));
    }

    .vr-anchor-nav .vr-container {
        gap: 20px;
    }

    .vr-section {
        padding: 42px 0;

        scroll-margin-top: 66px;
    }

    .vr-section-heading {
        margin-bottom: 22px;
    }

    .vr-section-heading h2,
    .vr-price-block h2 {
        font-size: 34px;
    }

    .vr-section-heading p {
        font-size: 15px;
    }

    .vr-audience-card {
        grid-template-columns: 1fr;

        min-height: 0;
    }

    .vr-audience-card__photo {
        height: 260px;
    }

    .vr-audience-card__content {
        padding: 28px 22px;
    }

    .vr-audience-card h3 {
        font-size: 22px;
    }

    .vr-process-layout,
    .vr-report-layout {
        gap: 38px;
    }

    .vr-instagram-embed {
        min-height: 590px;

        border-radius: 20px;
    }

    .vr-restrictions-grid {
        grid-template-columns: 1fr;
    }

    .vr-pdf-viewer iframe {
        height: 480px;
    }


    /* Отзывы на телефоне */

    .vr-reviews-slider {
        width: calc(100% + 12px);

        padding-inline: 0;
    }

    .vr-review-track {
        gap: 14px !important;

        padding-right: 24px !important;
        padding-bottom: 18px !important;
    }

    .vr-review-card {
        flex-basis: min(86vw, 355px) !important;

        width: min(86vw, 355px) !important;
        min-width: min(86vw, 355px) !important;
        max-width: min(86vw, 355px) !important;
    }

    .vr-review-embed {
        min-height: 610px;

        border-radius: 20px;
    }

    .vr-reviews-arrow {
        display: none !important;
    }

    .vr-reviews-hint {
        display: block;
    }


    /* Ограничения */

    .vr-restriction-card {
        grid-template-columns: 42px minmax(0, 1fr);

        padding: 22px;
    }

    .vr-restriction-card__icon {
        width: 42px;
        height: 42px;
    }

    .vr-safety-note {
        grid-template-columns: 1fr;
        gap: 10px;

        padding: 22px;
    }

    .vr-safety-note__btn {
        width: 100%;
        min-width: 0;
    }
}



@media (max-width: 900px) {

    .vr-safety-note {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .vr-safety-note__btn {
        width: 100%;
        min-width: 0;

        margin-top: 4px;
    }
}

/* ==================================================
   ОЧЕНЬ МАЛЕНЬКИЕ ЭКРАНЫ
   ================================================== */

@media (max-width: 420px) {

    .vr-title {
        font-size: 36px;
    }

    .vr-section-heading h2,
    .vr-price-block h2 {
        font-size: 30px;
    }

    .vr-review-card {
        flex-basis: calc(100vw - 42px) !important;

        width: calc(100vw - 42px) !important;
        min-width: calc(100vw - 42px) !important;
        max-width: calc(100vw - 42px) !important;
    }
}


/* ==================================================
   УМЕНЬШЕНИЕ АНИМАЦИИ
   ================================================== */

@media (prefers-reduced-motion: reduce) {

    .vr-page *,
    .vr-page *::before,
    .vr-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ==================================================
   СМИ О НАС
   ================================================== */

.vr-section--media {
    padding-top: 48px;
    padding-bottom: 48px;

    background:
        linear-gradient(
            180deg,
            #fffaf6 0%,
            #ffffff 100%
        );
}

.vr-media-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(280px, 0.55fr);

    align-items: center;
    gap: 34px;
}

.vr-media-video {
    position: relative;

    width: 100%;
    overflow: hidden;

    border: 1px solid var(--vr-border);
    border-radius: 24px;

    background: #17191d;

    box-shadow:
        0 20px 60px rgba(63, 39, 21, 0.1);
}

.vr-media-video::before {
    display: block;

    padding-top: 56.25%;

    content: "";
}

.vr-media-video iframe {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}

.vr-media-content {
    padding: 28px;

    border: 1px solid var(--vr-border);
    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 16px 45px rgba(63, 39, 21, 0.06);
}

.vr-media-label {
    margin-bottom: 12px;

    color: var(--vr-orange-dark);

    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.vr-media-content h3 {
    margin: 0;

    color: var(--vr-text);

    font-size: 27px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.vr-media-content p {
    margin: 16px 0 24px;

    color: var(--vr-muted);

    font-size: 14px;
    line-height: 1.6;
}

.vr-media-content .vr-btn {
    width: 100%;
}


/* Планшеты */

@media (max-width: 1050px) {

    .vr-media-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vr-media-content {
        padding: 25px;
    }
}


/* Телефоны */

@media (max-width: 700px) {

    .vr-section--media {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .vr-media-video,
    .vr-media-content {
        border-radius: 20px;
    }

    .vr-media-content {
        padding: 22px;
    }

    .vr-media-content h3 {
        font-size: 23px;
    }
}

/* ==================================================
   УМЕНЬШЕННЫЕ РАССТОЯНИЯ МЕЖДУ ОСНОВНЫМИ БЛОКАМИ
   ================================================== */

#restrictions {
    padding-bottom: 40px;
}

#smi {
    padding-top: 40px;
}

#reviews {
    padding-top: 48px;
    padding-bottom: 48px;
}

@media (max-width: 700px) {

    #restrictions {
        padding-bottom: 32px;
    }

    #smi {
        padding-top: 32px;
    }

    #reviews {
        padding-top: 38px;
        padding-bottom: 38px;
    }
}

/* ==================================================
   ФИНАЛЬНАЯ МОБИЛЬНАЯ АДАПТАЦИЯ
   ================================================== */

@media (max-width: 700px) {

    /* Общая геометрия */

    .vr-page {
        font-size: 15px;
    }

    .vr-container {
        width: min(100% - 28px, 1180px);
    }

    .vr-section {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .vr-section-heading {
        margin-bottom: 20px;
    }

    .vr-section-heading > span,
    .vr-eyebrow,
    .vr-price-block__intro > span {
        margin-bottom: 8px;

        font-size: 10px;
        letter-spacing: 0.045em;
    }

    .vr-section-heading h2,
    .vr-price-block h2 {
        font-size: 28px;
        line-height: 1.08;
        letter-spacing: -0.035em;
    }

    .vr-section-heading p {
        margin-top: 9px;

        font-size: 14px;
        line-height: 1.5;
    }


    /* Первый экран */

    .vr-hero {
        padding-top: 22px;
        padding-bottom: 18px;
    }

    .vr-hero__grid {
        gap: 24px;
    }

    .vr-title {
        font-size: 34px;
        line-height: 1;
        letter-spacing: -0.042em;
    }

    .vr-title span {
        margin-top: 6px;

        font-size: 0.84em;
        line-height: 1.03;
    }

    .vr-lead {
        margin-top: 16px;

        font-size: 15px;
        line-height: 1.5;
    }

    .vr-actions {
        gap: 9px;
        margin-top: 20px;
    }

    .vr-btn {
        min-height: 46px;

        padding: 11px 16px;

        border-radius: 12px;

        font-size: 14px;
    }

    .vr-facts {
        gap: 10px;
        margin-top: 20px;
    }

    .vr-fact {
        padding-top: 11px;
    }

    .vr-fact strong {
        font-size: 13px;
    }

    .vr-fact span {
        font-size: 11px;
    }

    .vr-hero__visual {
        min-height: 365px;
    }

    .vr-hero__visual > img {
        height: 365px;

        border-radius: 72px 18px 18px 18px;
    }

    .vr-price-card {
        right: 10px;
        bottom: 10px;

        width: 205px;
        max-width: calc(100% - 20px);

        padding: 14px;

        border-radius: 17px;
    }

    .vr-price-card__main strong {
        font-size: 22px;
    }

    .vr-price-card__special {
        margin-top: 10px;
        padding: 11px;
    }

    .vr-price-card__special strong {
        font-size: 20px;
    }

    .vr-price-card__link {
        margin-top: 10px;

        font-size: 11px;
    }


    /* Навигация */

    .vr-anchor-nav .vr-container {
        gap: 16px;

        padding-top: 11px;
        padding-bottom: 11px;
    }

    .vr-anchor-nav a {
        font-size: 12px;
    }


    /* Карточки подростков и взрослых */

    .vr-audience-grid {
        gap: 14px;
    }

    .vr-audience-card,
    .vr-audience-card.vr-audience-card--vertical {
        border-radius: 20px;
    }

    .vr-audience-card__photo {
        height: 230px;
    }

    .vr-audience-card__content {
        padding: 20px 18px 22px;
    }

    .vr-card-label {
        margin-bottom: 6px;

        font-size: 12px;
    }

    .vr-audience-card h3 {
        margin-bottom: 14px;

        font-size: 20px;
        line-height: 1.18;
    }

    .vr-audience-card .vr-check-list {
        gap: 2px;
    }

    .vr-audience-card .vr-check-list li {
        grid-template-columns: 12px minmax(0, 1fr);
        column-gap: 5px;

        padding: 0;

        font-size: 14px;
        line-height: 1.32;
    }

    .vr-audience-card .vr-check-list li::before {
        width: 12px;

        font-size: 13px;
        line-height: 1.32;
    }


    /* Как проходит */

    .vr-process-layout,
    .vr-report-layout {
        gap: 26px;
    }

    .vr-steps {
        gap: 14px;

        margin-top: 22px;
    }

    .vr-steps li {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
    }

    .vr-steps li > span {
        width: 38px;
        height: 38px;

        font-size: 10px;
    }

    .vr-steps strong {
        font-size: 15px;
    }

    .vr-steps p {
        margin-top: 3px;

        font-size: 13px;
        line-height: 1.45;
    }

    .vr-instagram-embed {
        min-height: 540px;

        border-radius: 18px;
    }


    /* Что входит */

    #included.vr-section {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    #included .vr-section-heading {
        margin-bottom: 18px;
    }

    .vr-included-grid {
        gap: 8px;
    }

    .vr-included-grid article {
        grid-template-columns: 21px minmax(0, 1fr);
        column-gap: 6px;
        row-gap: 4px;

        min-height: auto;

        padding: 14px;

        border-radius: 15px;
    }

    .vr-included-grid article > span {
        font-size: 10px;
    }

    .vr-included-grid h3 {
        font-size: 14px;
        line-height: 1.2;
    }

    .vr-included-grid p {
        font-size: 11px;
        line-height: 1.4;
    }


    /* Отчёт */

    .vr-section--report {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .vr-section--report .vr-section-heading h2 {
        font-size: 25px;
    }

    .vr-section--report .vr-check-list li {
        padding-top: 3px;
        padding-bottom: 3px;

        font-size: 13px;
    }

    .vr-section--report .vr-btn--secondary {
        margin-top: 14px;
    }

    .vr-pdf-viewer iframe {
        height: 430px;
    }


    /* Отзывы */

    #reviews {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .vr-review-card {
        flex-basis: min(82vw, 330px) !important;

        width: min(82vw, 330px) !important;
        min-width: min(82vw, 330px) !important;
        max-width: min(82vw, 330px) !important;
    }

    .vr-review-embed {
        min-height: 570px;

        border-radius: 18px;
    }


    /* Стоимость */

    .vr-section--price {
        padding-top: 18px;
        padding-bottom: 30px;
    }

    .vr-price-block {
        gap: 10px;

        padding: 12px;

        border-radius: 20px;
    }

    .vr-price-block__intro,
    .vr-price-option {
        padding: 16px;
    }

    .vr-price-block__intro h2 {
        font-size: 25px;
        line-height: 1.06;
    }

    .vr-price-block__intro p {
        margin-top: 8px;

        font-size: 13px;
    }

    .vr-btn--manager {
        min-height: 44px;

        margin-top: 16px;
        padding: 10px 14px;

        font-size: 13px;
    }

    .vr-price-option {
        min-height: 220px;

        border-radius: 17px;
    }

    .vr-price-option > span {
        font-size: 11px;
    }

    .vr-price-option > strong {
        margin-top: 7px;

        font-size: 30px;
    }

    .vr-price-option p {
        font-size: 12px;
        line-height: 1.45;
    }

    .vr-price-option ul {
        margin-top: 11px;
        padding-left: 16px;

        font-size: 11px;
        line-height: 1.4;
    }

    .vr-price-option li + li {
        margin-top: 6px;
    }

    .vr-price-pay-btn {
        min-height: 42px;

        padding: 10px 14px;

        font-size: 13px;
    }


    /* Ограничения */

    #restrictions {
        padding-top: 34px;
        padding-bottom: 30px;
    }

    .vr-restrictions-grid {
        gap: 10px;
    }

    .vr-restriction-card {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 11px;

        padding: 17px;

        border-radius: 18px;
    }

    .vr-restriction-card__icon {
        width: 36px;
        height: 36px;

        font-size: 19px;
    }

    .vr-restriction-card h3 {
        margin: 2px 0 10px;

        font-size: 17px;
    }

    .vr-restriction-card ul {
        padding-left: 16px;

        font-size: 12px;
        line-height: 1.45;
    }

    .vr-restriction-card li + li {
        margin-top: 5px;
    }

    .vr-safety-note {
        gap: 8px;

        margin-top: 12px;
        padding: 17px;

        border-radius: 17px;
    }

    .vr-safety-note strong {
        font-size: 14px;
    }

    .vr-safety-note p {
        font-size: 12px;
    }

    .vr-safety-note__btn {
        min-height: 44px;
    }


    /* СМИ о нас */

    .vr-section--media,
    #smi {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .vr-media-layout {
        gap: 14px;
    }

    .vr-media-video,
    .vr-media-content {
        border-radius: 18px;
    }

    .vr-media-content {
        padding: 18px;
    }

    .vr-media-label {
        margin-bottom: 8px;

        font-size: 10px;
    }

    .vr-media-content h3 {
        font-size: 21px;
        line-height: 1.15;
    }

    .vr-media-content p {
        margin: 11px 0 16px;

        font-size: 12px;
        line-height: 1.5;
    }
}


/* Очень узкие телефоны */

@media (max-width: 420px) {

    .vr-container {
        width: min(100% - 22px, 1180px);
    }

    .vr-title {
        font-size: 31px;
    }

    .vr-section-heading h2,
    .vr-price-block h2 {
        font-size: 26px;
    }

    .vr-audience-card__photo {
        height: 210px;
    }

    .vr-audience-card__content {
        padding: 18px 16px 20px;
    }

    .vr-price-block__intro h2 {
        font-size: 23px;
    }

    .vr-price-option > strong {
        font-size: 28px;
    }

    .vr-review-card {
        flex-basis: calc(100vw - 34px) !important;

        width: calc(100vw - 34px) !important;
        min-width: calc(100vw - 34px) !important;
        max-width: calc(100vw - 34px) !important;
    }
}

/* ==================================================
   ФИНАЛЬНАЯ ЗАЩИТА ОТ СТИЛЕЙ ОСНОВНОГО ШАБЛОНА
   Этот блок должен оставаться самым последним в файле
   ================================================== */

.vr-page,
.vr-page * {
    font-family: Montserrat, Arial, sans-serif;
}

.vr-page h1,
.vr-page h2,
.vr-page h3,
.vr-page h4,
.vr-page p,
.vr-page ul,
.vr-page ol,
.vr-page li {
    margin-top: 0;
}

.vr-page p {
    margin-bottom: 0;
}

.vr-page ul,
.vr-page ol {
    margin-bottom: 0;
}


/* ==================================================
   СПИСКИ В КАРТОЧКАХ ДЛЯ ПОДРОСТКОВ И ВЗРОСЛЫХ
   ================================================== */

.vr-page .vr-audience-card .vr-check-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

.vr-page .vr-audience-card .vr-check-list li {
    display: grid !important;
    grid-template-columns: 13px minmax(0, 1fr) !important;
    column-gap: 6px !important;
    align-items: start !important;

    position: static !important;

    margin: 0 !important;
    padding: 1px 0 !important;

    font-size: 14px !important;
    line-height: 1.32 !important;

    list-style: none !important;
}

.vr-page .vr-audience-card .vr-check-list li::before {
    position: static !important;

    display: block !important;
    width: 13px !important;

    margin: 0 !important;
    padding: 0 !important;

    color: var(--vr-orange) !important;

    content: "✓" !important;

    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.32 !important;
}


/* ==================================================
   СПИСОК В БЛОКЕ ПЕРСОНАЛЬНОГО ОТЧЁТА
   ================================================== */

.vr-page .vr-section--report .vr-check-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    color: rgba(255, 255, 255, 0.72) !important;

    list-style: none !important;
}

.vr-page .vr-section--report .vr-check-list li {
    position: relative !important;

    display: block !important;

    min-height: 0 !important;

    margin: 0 !important;
    padding: 4px 0 4px 24px !important;

    color: rgba(255, 255, 255, 0.72) !important;

    font-size: 14px !important;
    line-height: 1.34 !important;

    list-style: none !important;
}

.vr-page .vr-section--report .vr-check-list li::before {
    position: absolute !important;
    top: 4px !important;
    left: 0 !important;

    display: block !important;
    width: 16px !important;

    margin: 0 !important;
    padding: 0 !important;

    color: var(--vr-orange) !important;

    content: "✓" !important;

    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1.34 !important;
}


/* ==================================================
   СПИСКИ В БЛОКЕ ОГРАНИЧЕНИЙ
   ================================================== */

.vr-page .vr-restriction-card ul {
    margin: 0 !important;
    padding-left: 18px !important;
}

.vr-page .vr-restriction-card li {
    margin: 0 !important;
    padding: 0 !important;
}

.vr-page .vr-restriction-card li + li {
    margin-top: 7px !important;
}


/* ==================================================
   СПИСОК В КАРТОЧКЕ 250 BYN
   ================================================== */

.vr-page .vr-price-option ul {
    margin: 14px 0 0 !important;
    padding-left: 18px !important;
}

.vr-page .vr-price-option li {
    margin: 0 !important;
    padding: 0 !important;
}

.vr-page .vr-price-option li + li {
    margin-top: 8px !important;
}


/* ==================================================
   МОБИЛЬНАЯ ВЕРСИЯ — ПРИНУДИТЕЛЬНЫЕ ПРАВИЛА
   ================================================== */

@media (max-width: 700px) {

    .vr-page .vr-section {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }

    .vr-page .vr-section-heading {
        margin-bottom: 20px !important;
    }

    .vr-page .vr-section-heading h2 {
        margin: 0 !important;

        font-size: 28px !important;
        line-height: 1.08 !important;
        letter-spacing: -0.035em !important;
    }

    .vr-page .vr-section-heading p {
        margin: 8px 0 0 !important;

        font-size: 14px !important;
        line-height: 1.48 !important;
    }

    .vr-page .vr-audience-card__photo {
        height: 230px !important;
    }

    .vr-page .vr-audience-card__content {
        padding: 20px 18px 22px !important;
    }

    .vr-page .vr-audience-card h3 {
        margin: 0 0 14px !important;

        font-size: 20px !important;
        line-height: 1.18 !important;
    }

    .vr-page .vr-audience-card .vr-check-list {
        gap: 2px !important;
    }

    .vr-page .vr-audience-card .vr-check-list li {
        grid-template-columns: 12px minmax(0, 1fr) !important;
        column-gap: 5px !important;

        padding: 0 !important;

        font-size: 14px !important;
        line-height: 1.3 !important;
    }

    .vr-page .vr-audience-card .vr-check-list li::before {
        width: 12px !important;

        font-size: 13px !important;
        line-height: 1.3 !important;
    }

    .vr-page .vr-section--report .vr-check-list li {
        padding: 3px 0 3px 22px !important;

        font-size: 13px !important;
        line-height: 1.34 !important;
    }

    .vr-page .vr-section--report .vr-check-list li::before {
        top: 3px !important;

        width: 15px !important;

        font-size: 13px !important;
        line-height: 1.34 !important;
    }

    .vr-page .vr-price-block__intro h2 {
        font-size: 25px !important;
        line-height: 1.07 !important;
    }

    .vr-page .vr-price-option {
        min-height: 220px !important;
    }

    .vr-page .vr-price-option ul {
        margin-top: 11px !important;
        padding-left: 16px !important;

        font-size: 11px !important;
        line-height: 1.4 !important;
    }

    .vr-page .vr-price-option li + li {
        margin-top: 6px !important;
    }

    .vr-page .vr-restriction-card ul {
        padding-left: 16px !important;

        font-size: 12px !important;
        line-height: 1.45 !important;
    }

    .vr-page .vr-restriction-card li + li {
        margin-top: 5px !important;
    }
}


/* Очень узкие телефоны */

@media (max-width: 420px) {

    .vr-page .vr-section-heading h2 {
        font-size: 26px !important;
    }

    .vr-page .vr-audience-card__photo {
        height: 210px !important;
    }

    .vr-page .vr-audience-card__content {
        padding: 18px 16px 20px !important;
    }
}

/* ==================================================
   ФИНАЛЬНЫЕ ИСПРАВЛЕНИЯ: СПИСКИ + НАВИГАЦИЯ
   ================================================== */

/* Возвращаем маркеры обычным спискам */
.vr-page .vr-restriction-card ul,
.vr-page .vr-price-option ul {
    list-style: disc !important;
    list-style-position: outside !important;
}

.vr-page .vr-restriction-card li,
.vr-page .vr-price-option li {
    display: list-item !important;
}

.vr-page .vr-restriction-card li::marker {
    color: var(--vr-orange);
    font-size: 0.9em;
}

.vr-page .vr-price-option--accent li::marker {
    color: rgba(255, 255, 255, 0.95);
}

/* Чек-листы остаются без стандартных маркеров */
.vr-page .vr-audience-card .vr-check-list,
.vr-page .vr-section--report .vr-check-list {
    list-style: none !important;
}

.vr-page .vr-audience-card .vr-check-list li,
.vr-page .vr-section--report .vr-check-list li {
    display: grid !important;
}

/* В отчёте возвращаем корректную структуру строк */
.vr-page .vr-section--report .vr-check-list li {
    display: block !important;
}


/* ==================================================
   ПОНЯТНАЯ НАВИГАЦИЯ ПО СТРАНИЦЕ
   ================================================== */

.vr-anchor-nav {
    position: sticky;
    top: 0;
    z-index: 80;

    border-top: 1px solid rgba(219, 102, 24, 0.13);
    border-bottom: 1px solid rgba(219, 102, 24, 0.18);

    background: rgba(255, 252, 248, 0.96);
    box-shadow: 0 8px 26px rgba(31, 35, 48, 0.06);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.vr-anchor-nav .vr-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;

    padding-top: 13px;
    padding-bottom: 13px;
}

.vr-anchor-nav .vr-container::before {
    display: block;
    width: 100%;

    margin-bottom: 2px;

    color: var(--vr-orange);

    content: "Навигация по странице";

    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vr-anchor-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;

    padding: 8px 14px;

    border: 1px solid rgba(219, 102, 24, 0.18);
    border-radius: 999px;

    background: #fff;
    color: var(--vr-dark);

    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;

    box-shadow: 0 4px 14px rgba(31, 35, 48, 0.045);

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.vr-anchor-nav a:hover,
.vr-anchor-nav a:focus-visible {
    border-color: var(--vr-orange);

    background: var(--vr-orange);
    color: #fff;

    transform: translateY(-1px);
}

.vr-anchor-nav a:active {
    transform: translateY(0);
}


/* ==================================================
   МОБИЛЬНАЯ НАВИГАЦИЯ
   ================================================== */

@media (max-width: 700px) {

    .vr-anchor-nav {
        position: sticky;
        top: 0;
    }

    .vr-anchor-nav .vr-container {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;

        width: 100%;
        max-width: none;

        padding: 10px 14px 11px;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .vr-anchor-nav .vr-container::-webkit-scrollbar {
        display: none;
    }

    .vr-anchor-nav .vr-container::before {
        position: sticky;
        left: 0;
        z-index: 2;

        flex: 0 0 auto;
        width: auto;

        margin: 0 4px 0 0;
        padding: 7px 10px;

        border-radius: 999px;

        background: var(--vr-orange);
        color: #fff;

        content: "Разделы";

        font-size: 10px;
        line-height: 1;
        letter-spacing: 0.05em;
        white-space: nowrap;

        box-shadow: 8px 0 14px rgba(255, 252, 248, 0.9);
    }

    .vr-anchor-nav a {
        flex: 0 0 auto;

        min-height: 34px;

        padding: 7px 12px;

        font-size: 12px;
        white-space: nowrap;

        scroll-snap-align: start;
    }

    .vr-page .vr-restriction-card ul {
        padding-left: 18px !important;
    }

    .vr-page .vr-price-option ul {
        padding-left: 18px !important;
    }
}

/* ==================================================
   УМЕНЬШЕНИЕ БЛОКА «ДВА НАПРАВЛЕНИЯ» НА ДЕСКТОПЕ
   ================================================== */

@media (min-width: 901px) {

    #audiences.vr-section {
        padding-top: 42px !important;
        padding-bottom: 42px !important;
    }

    #audiences .vr-section-heading {
        max-width: 860px;
        margin: 0 auto 24px !important;
    }

    #audiences .vr-section-heading > span {
        margin-bottom: 7px !important;

        font-size: 12px !important;
    }

    #audiences .vr-section-heading h2 {
        font-size: clamp(34px, 3vw, 48px) !important;
        line-height: 1.05 !important;
    }

    #audiences .vr-section-heading p {
        max-width: 760px;
        margin: 8px auto 0 !important;

        font-size: 16px !important;
        line-height: 1.45 !important;
    }

    #audiences .vr-audience-grid {
        gap: 18px !important;
    }

    #audiences .vr-audience-card {
        border-radius: 24px !important;
    }

    #audiences .vr-audience-card__photo {
        height: 300px !important;
    }

    #audiences .vr-audience-card__photo img {
        width: 100%;
        height: 100% !important;

        object-fit: contain !important;
        object-position: center bottom !important;
    }

    #audiences .vr-audience-card__content {
        padding: 22px 24px 24px !important;
    }

    #audiences .vr-card-label {
        margin-bottom: 6px !important;

        font-size: 12px !important;
    }

    #audiences .vr-audience-card h3 {
        margin-bottom: 13px !important;

        font-size: 24px !important;
        line-height: 1.12 !important;
    }

    #audiences .vr-audience-card .vr-check-list {
        gap: 2px !important;
    }

    #audiences .vr-audience-card .vr-check-list li {
        font-size: 14px !important;
        line-height: 1.3 !important;
    }
}


/* Чуть компактнее на средних ноутбуках */

@media (min-width: 901px) and (max-width: 1280px) {

    #audiences .vr-audience-card__photo {
        height: 270px !important;
    }

    #audiences .vr-audience-card h3 {
        font-size: 22px !important;
    }
}

/* ==================================================
   ЕЩЁ МЕНЬШЕ ИЛЛЮСТРАЦИИ В БЛОКЕ «ДВА НАПРАВЛЕНИЯ»
   ================================================== */

@media (min-width: 901px) {

    #audiences .vr-audience-card__photo {
        height: 230px !important;

        display: flex !important;
        align-items: flex-end !important;
        justify-content: center !important;

        overflow: hidden !important;
    }

    #audiences .vr-audience-card__photo img {
        width: auto !important;
        max-width: 72% !important;
        height: auto !important;
        max-height: 205px !important;

        object-fit: contain !important;
        object-position: center bottom !important;
    }
}

@media (min-width: 901px) and (max-width: 1280px) {

    #audiences .vr-audience-card__photo {
        height: 210px !important;
    }

    #audiences .vr-audience-card__photo img {
        max-width: 68% !important;
        max-height: 185px !important;
    }
}
