:root {
    --vts-bg: #f5f3ee;
    --vts-surface: #ffffff;
    --vts-text: #171717;
    --vts-muted: #66645f;
    --vts-line: rgba(23, 23, 23, 0.14);
    --vts-accent: #f4a300;
    --vts-accent-hover: #d98f00;
    --vts-dark: #171717;
    --vts-radius: 24px;
    --vts-container: 1240px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--vts-bg);
    color: var(--vts-text);
}

.vts-site-main {
    overflow: hidden;
}

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

.vts-section {
    position: relative;
    padding: clamp(72px, 9vw, 136px) 0;
}

.vts-section:nth-child(even) {
    background: var(--vts-surface);
}

.vts-eyebrow {
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vts-section-heading {
    max-width: 840px;
    margin-bottom: 48px;
}

.vts-section-heading h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 5vw, 66px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.vts-section-heading > p:last-child {
    max-width: 720px;
    margin: 0;
    color: var(--vts-muted);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.55;
}

.vts-hero {
    min-height: min(860px, 100svh);
    display: flex;
    align-items: center;
    background: var(--vts-dark);
    color: #fff;
}

.vts-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 64px;
    align-items: center;
}

.vts-hero__title {
    max-width: 780px;
    margin: 0 0 28px;
    font-size: clamp(58px, 8.4vw, 124px);
    line-height: 0.82;
    letter-spacing: -0.065em;
    text-transform: uppercase;
}

.vts-hero__lead,
.vts-hero__price {
    margin: 0;
    font-size: clamp(25px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.vts-hero__price {
    color: var(--vts-accent);
}

.vts-hero__description {
    max-width: 650px;
    margin: 30px 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.6;
}

.vts-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 16px 24px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 180ms ease,
        background-color 180ms ease;
}

.vts-button:hover {
    transform: translateY(-2px);
}

.vts-button--primary {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 30px;
    background: var(--vts-accent);
    color: var(--vts-dark);
}

.vts-button--primary:hover {
    background: var(--vts-accent-hover);
    color: var(--vts-dark);
}

.vts-button--primary span {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vts-button--primary strong {
    font-size: 21px;
}

.vts-button--secondary {
    background: var(--vts-dark);
    color: #fff;
}

.vts-button--secondary:hover {
    color: #fff;
}

.vts-hero__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 30px 0 0;
    list-style: none;
}

.vts-hero__benefits li {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    font-size: 13px;
}

.vts-hero__image-placeholder {
    display: grid;
    place-items: center;
    min-height: 560px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--vts-radius);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.02)
        );
    color: rgba(255, 255, 255, 0.45);
}

.vts-card-grid {
    display: grid;
    gap: 22px;
}

.vts-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vts-card {
    padding: clamp(26px, 3vw, 40px);
    border: 1px solid var(--vts-line);
    border-radius: var(--vts-radius);
    background: var(--vts-surface);
}

.vts-card h3 {
    margin: 0 0 16px;
    font-size: clamp(23px, 2.5vw, 31px);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.vts-card p {
    color: var(--vts-muted);
    line-height: 1.6;
}

.vts-card__label {
    margin-top: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vts-phone-card__number {
    display: block;
    margin: 12px 0 20px;
    color: var(--vts-text);
    font-size: clamp(25px, 2.8vw, 37px);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.vts-feature-card__icon {
    display: inline-grid;
    place-items: center;
    min-width: 54px;
    min-height: 54px;
    margin-bottom: 28px;
    border-radius: 50%;
    background: var(--vts-accent);
    color: var(--vts-dark);
    font-weight: 800;
}

.vts-price-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vts-price-card__price {
    margin: 4px 0 22px;
    color: var(--vts-text) !important;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 800;
    line-height: 1;
}

.vts-price-card .vts-button {
    margin-top: auto;
}

.vts-price-note {
    margin: 28px 0 0;
    padding: 22px 26px;
    border-left: 4px solid var(--vts-accent);
    background: rgba(244, 163, 0, 0.1);
}

.vts-section-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 34px;
    padding: 26px 30px;
    border-radius: var(--vts-radius);
    background: var(--vts-accent);
}

.vts-section-cta p {
    margin: 0;
    font-weight: 700;
}

.vts-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--vts-line);
    border-bottom: 1px solid var(--vts-line);
}

.vts-stat {
    padding: 38px 24px;
    border-right: 1px solid var(--vts-line);
}

.vts-stat:last-child {
    border-right: 0;
}

.vts-stat strong,
.vts-stat span {
    display: block;
}

.vts-stat strong {
    margin-bottom: 10px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
}

.vts-stat span {
    color: var(--vts-muted);
}

.vts-review-card {
    margin: 0;
}

.vts-review-card__rating {
    margin-bottom: 22px;
    color: var(--vts-accent-hover);
    letter-spacing: 0.12em;
}

.vts-review-card cite {
    font-style: normal;
    font-weight: 700;
}

.vts-contacts {
    background: var(--vts-dark) !important;
    color: #fff;
}

.vts-contacts__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.vts-contacts h2 {
    margin: 0 0 20px;
    font-size: clamp(42px, 6vw, 82px);
    line-height: 0.95;
    letter-spacing: -0.045em;
}

.vts-contact-list {
    font-style: normal;
}

.vts-contact-list p {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.vts-contact-list a {
    color: #fff;
}

.legacy-anchor {
    display: block;
    position: absolute;
    top: -90px;
    visibility: hidden;
}

@media (max-width: 1024px) {
    .vts-hero__inner,
    .vts-contacts__inner {
        grid-template-columns: 1fr;
    }

    .vts-hero__visual {
        order: -1;
    }

    .vts-hero__image-placeholder {
        min-height: 340px;
    }

    .vts-card-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .vts-stat:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 680px) {
    .vts-container {
        width: min(calc(100% - 28px), var(--vts-container));
    }

    .vts-section {
        padding: 68px 0;
    }

    .vts-hero {
        min-height: auto;
        padding-top: 110px;
    }

    .vts-hero__inner {
        gap: 38px;
    }

    .vts-hero__title {
        font-size: clamp(52px, 17vw, 82px);
    }

    .vts-card-grid--three,
    .vts-stats {
        grid-template-columns: 1fr;
    }

    .vts-stat {
        border-right: 0;
        border-bottom: 1px solid var(--vts-line);
    }

    .vts-stat:last-child {
        border-bottom: 0;
    }

    .vts-section-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .vts-button {
        width: 100%;
    }
}

/* ==========================================================
   Пакет 03.2 — нормализация Blocksy и макета
   ========================================================== */

.vts-custom-front-page .site-main,
.vts-custom-front-page .ct-container,
.vts-custom-front-page .content-area,
.vts-custom-front-page .site-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.vts-custom-front-page #main-container {
    padding: 0;
}

.vts-custom-front-page .entry-header,
.vts-custom-front-page .page-title,
.vts-custom-front-page .hero-section {
    display: none !important;
}

.vts-container {
    width: min(calc(100% - 64px), 1320px);
}

.vts-header {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
}

.vts-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    min-height: 92px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.vts-header__brand,
.vts-header__phone {
    color: #fff;
    text-decoration: none;
}

.vts-header__brand strong,
.vts-header__brand span,
.vts-header__phone strong,
.vts-header__phone span {
    display: block;
}

.vts-header__brand strong {
    font-size: 20px;
    letter-spacing: -0.02em;
}

.vts-header__brand span,
.vts-header__phone span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vts-header__nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.vts-header__nav a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.vts-header__nav a:hover {
    color: #fff;
}

.vts-header__phone {
    text-align: right;
}

.vts-header__phone strong {
    margin-top: 3px;
    font-size: 18px;
}

.vts-hero {
    padding-top: 140px;
}

.vts-hero__inner {
    grid-template-columns: minmax(560px, 1.25fr) minmax(420px, 0.75fr);
    gap: clamp(48px, 6vw, 96px);
}

.vts-hero__content {
    min-width: 0;
}

.vts-hero__title {
    max-width: none;
    color: #fff !important;
    font-size: clamp(62px, 7vw, 112px);
    line-height: 0.88;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.vts-hero__title br {
    display: block;
}

.vts-hero__lead {
    color: #fff;
}

.vts-hero__description {
    font-size: 19px;
}

.vts-section-heading h2,
.vts-card h3,
.vts-phone-card__number,
.vts-stat strong {
    color: var(--vts-text);
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.vts-card p {
    font-size: 16px;
}

.vts-phone-card__number {
    font-size: clamp(27px, 2.3vw, 36px);
}

.vts-card {
    min-height: 100%;
}

.vts-footer {
    padding: 24px 0;
    background: #0d0d0d;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.vts-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.vts-footer p {
    margin: 0;
}

.vts-footer nav {
    display: flex;
    gap: 24px;
}

.vts-footer a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

@media (max-width: 1100px) {
    .vts-header__nav {
        display: none;
    }

    .vts-header__inner {
        grid-template-columns: 1fr auto;
    }

    .vts-hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    }

    .vts-hero__title {
        font-size: clamp(58px, 8vw, 88px);
    }
}

@media (max-width: 860px) {
    .vts-container {
        width: min(calc(100% - 36px), 1320px);
    }

    .vts-hero__inner {
        grid-template-columns: 1fr;
    }

    .vts-hero__visual {
        order: initial;
    }

    .vts-hero__title {
        max-width: 700px;
    }
}

@media (max-width: 680px) {
    .vts-header__inner {
        min-height: 76px;
    }

    .vts-header__brand span {
        display: none;
    }

    .vts-header__phone span {
        display: none;
    }

    .vts-header__phone strong {
        font-size: 14px;
    }

    .vts-hero {
        padding-top: 112px;
    }

    .vts-hero__title {
        font-size: clamp(49px, 15vw, 72px);
        line-height: 0.9;
    }

    .vts-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ==========================================================
   Пакет 04.3 — реальное изображение Hero
   ========================================================== */

.vts-hero__figure {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--vts-radius);
    background: #efefed;
    isolation: isolate;
}

.vts-hero__figure::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(23, 23, 23, 0.02),
            rgba(23, 23, 23, 0.22)
        );
    content: "";
    pointer-events: none;
}

.vts-hero__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center;
}

.vts-hero__image-placeholder {
    display: none;
}

@media (max-width: 1024px) {
    .vts-hero__figure,
    .vts-hero__image {
        min-height: 420px;
    }
}

@media (max-width: 680px) {
    .vts-hero__figure,
    .vts-hero__image {
        min-height: 300px;
    }
}

/* ==========================================================
   Пакет 04.5R — иконки преимуществ
   ========================================================== */

.vts-feature-card__icon {
    overflow: hidden;
    width: 72px;
    height: 72px;
    padding: 0;
    border-radius: 18px;
    background: #ffa900;
}

.vts-feature-card__icon-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.vts-gallery__link:hover 


@media (max-width: 1024px) {
    
}

@media (max-width: 680px) {
    .vts-feature-card__icon {
        width: 64px;
        height: 64px;
    }

    

    
}


/* ==========================================================
   Пакет 04.5R — иконки преимуществ
   ========================================================== */

.vts-feature-card__icon {
    overflow: hidden;
    width: 72px;
    height: 72px;
    padding: 0;
    border-radius: 18px;
    background: #ffa900;
}

.vts-feature-card__icon-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 680px) {
    .vts-feature-card__icon {
        width: 64px;
        height: 64px;
    }
}

/* Пакет 05 — целевые секции услуг */

.vts-services {
    background: #fff !important;
}

.vts-service-list {
    display: grid;
    gap: 34px;
}

.vts-service {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    overflow: hidden;
    border: 1px solid var(--vts-line);
    border-radius: 30px;
    background: var(--vts-bg);
    scroll-margin-top: 90px;
}

.vts-service--reverse .vts-service__media {
    order: 2;
}

.vts-service__media,
.vts-service__image {
    min-height: 520px;
}

.vts-service__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vts-service__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 5vw, 70px);
}

.vts-service__content h3 {
    margin: 0 0 22px;
    color: var(--vts-text);
    font-size: clamp(34px, 4.4vw, 60px);
    line-height: .98;
    letter-spacing: -.045em;
}

.vts-service__lead {
    margin: 0 0 24px;
    color: var(--vts-muted);
    font-size: 18px;
    line-height: 1.55;
}

.vts-service__list {
    display: grid;
    gap: 11px;
    padding: 0;
    margin: 0 0 34px;
    list-style: none;
}

.vts-service__list li {
    position: relative;
    padding-left: 27px;
}

.vts-service__list li::before {
    position: absolute;
    top: .42em;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--vts-accent);
    content: "";
}

.vts-service__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-top: auto;
}

.vts-service__price {
    margin: 0;
    color: var(--vts-text);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1;
}

.vts-service__footer .vts-button {
    width: auto;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .vts-service {
        grid-template-columns: 1fr;
    }

    .vts-service--reverse .vts-service__media {
        order: initial;
    }

    .vts-service__media,
    .vts-service__image {
        min-height: 400px;
    }
}

@media (max-width: 680px) {
    .vts-service {
        border-radius: 22px;
    }

    .vts-service__media,
    .vts-service__image {
        min-height: 260px;
    }

    .vts-service__content {
        padding: 28px 22px 30px;
    }

    .vts-service__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .vts-service__footer .vts-button {
        width: 100%;
    }
}

/* Пакет 06.1 — конверсионная коррекция */

.vts-hero__title {
    max-width: 760px;
    font-size: clamp(48px, 5.6vw, 82px);
    line-height: .94;
}

.vts-hero__lead {
    margin-bottom: 8px;
    font-size: clamp(22px, 2.5vw, 30px);
}

.vts-hero__price {
    font-size: clamp(28px, 3.2vw, 42px);
}

.vts-hero__description {
    max-width: 580px;
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
    line-height: 1.55;
}

.vts-hero__figure,
.vts-hero__image {
    min-height: 610px;
}

.vts-quick-call {
    background: #fff !important;
}

.vts-quick-call__inner,
.vts-final-call__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 52px;
    align-items: center;
}

.vts-quick-call h2,
.vts-final-call h2 {
    margin: 0 0 16px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: .98;
    letter-spacing: -.045em;
}

.vts-quick-call__phone,
.vts-final-call__phone {
    display: flex;
    flex-direction: column;
    min-width: 320px;
    padding: 24px 30px;
    border-radius: 22px;
    background: var(--vts-accent);
    color: var(--vts-dark);
    text-decoration: none;
}

.vts-quick-call__phone span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.vts-quick-call__phone strong,
.vts-final-call__phone {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
}

.vts-final-call {
    padding: clamp(70px, 9vw, 120px) 0;
    background: var(--vts-accent);
}

.vts-final-call__phone {
    background: var(--vts-dark);
    color: #fff;
    text-align: center;
}

.vts-contacts__phone {
    display: inline-block;
    margin-top: 24px;
    color: #fff;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.vts-sticky-call {
    display: none;
}

.vts-desktop-call {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 800;
    display: flex;
    flex-direction: column;
    padding: 15px 22px;
    border-radius: 18px;
    background: var(--vts-accent);
    color: var(--vts-dark);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    text-decoration: none;
    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease;
}

.vts-desktop-call.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vts-desktop-call.is-pulsing {
    animation: vts-call-pulse .75s ease;
}

.vts-desktop-call span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.vts-desktop-call strong {
    font-size: 18px;
}

@keyframes vts-call-pulse {
    50% {
        transform: scale(1.055);
        box-shadow: 0 16px 48px rgba(244, 163, 0, .48);
    }
}

@media (max-width: 860px) {
    body {
        padding-bottom: 64px;
    }

    .vts-desktop-call {
        display: none;
    }

    .vts-sticky-call {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 900;
        display: grid;
        grid-template-columns: 70% 30%;
        min-height: 64px;
        background: #111;
        box-shadow: 0 -8px 30px rgba(0, 0, 0, .22);
    }

    .vts-sticky-call a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 64px;
        font-weight: 800;
        text-decoration: none;
    }

    .vts-sticky-call__main {
        background: var(--vts-accent);
        color: var(--vts-dark);
    }

    .vts-sticky-call__number {
        color: #fff;
        font-size: 14px;
    }

    .vts-quick-call__inner,
    .vts-final-call__inner {
        grid-template-columns: 1fr;
    }

    .vts-quick-call__phone,
    .vts-final-call__phone {
        min-width: 0;
    }

    .vts-hero__figure,
    .vts-hero__image {
        min-height: 420px;
    }
}

@media (max-width: 680px) {
    .vts-hero__title {
        font-size: clamp(43px, 13vw, 62px);
    }

    .vts-hero__figure,
    .vts-hero__image {
        min-height: 300px;
    }
}
