/* ─── Fonts ─── */
@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Calibri Local";
  src: url("../fonts/Calibri.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Calibri Local";
  src: url("../fonts/Calibri-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ─── Tokens ─── */
:root {
  --text: #333333;
  --muted: #666666;
  --white: #ffffff;
  --blue: #0f69b4;
  --blue-dark: #082c49;
  --blue-light: #0a8ccc;
  --orange: #f49700;
  --orange-light: #fccb07;
  --warm: #f8f4f0;
  --line: #e5e5e5;
  --input: #e6e6e6;
  --shadow-card: 0 5px 30px rgba(0,0,0,.11);
  --shadow-soft: 0 10px 20px rgba(0,0,0,.1);
  --radius-card: 25px 0 25px 0;
  --font-title: "Futura PT", Arial, sans-serif;
  --font-ui: "Calibri Local", Calibri, Arial, sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 1.45;
  background: var(--white);
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.lang-switch {
  display: inline-flex;
  min-width: 68px;
  height: 26px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(15, 105, 180, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
}

.lang-switch button {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  width: 34px;
  height: 100%;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 2px 0 0;
}

.lang-switch .is-active {
  background: linear-gradient(90deg, var(--blue-light), var(--blue));
  color: var(--white);
}
.lang-switch button { cursor: pointer; }

/* скрываем бар Google Translate */
.goog-te-banner-frame.skiptranslate { display: none !important; }
#goog-gt-tt { display: none !important; }
body { top: 0 !important; }

/* ─── Layout ─── */
.vt-wrapper {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}
.vt-section { padding: 56px 0; }
.vt-center { display: flex; justify-content: center; }

/* ─── Section title ─── */
.vt-section h2,
.vt-contacts-card h2 {
  margin: 0 0 34px;
  color: var(--text);
  font-family: var(--font-title);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
}

/* ─── Buttons ─── */
.vt-btn {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 2px 35px 0;
  overflow: hidden;
  border: 0;
  border-radius: 45px;
  box-shadow: var(--shadow-soft);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition: box-shadow .25s ease, transform .25s ease;
  text-align: center;
}
.vt-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 1;
  transition: opacity .25s ease;
}
.vt-btn:hover, .vt-btn:focus-visible { box-shadow: none; transform: translateY(1px); }
.vt-btn:hover::after, .vt-btn:focus-visible::after { opacity: 0; }
.vt-btn--orange { background: var(--orange); }
.vt-btn--orange::after { background: linear-gradient(90deg, var(--orange-light), var(--orange)); }
.vt-btn--blue { min-height: 50px; background: var(--blue); }
.vt-btn--blue::after { background: linear-gradient(90deg, var(--blue-light), var(--blue)); }
.vt-btn--full { width: 100%; }

/* ─── Header / Nav ─── */
.vt-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.vt-site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
}
.vt-header-inner {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 26px;
  align-items: center;
  min-height: 84px;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}
.vt-logo img { width: 193px; height: auto; }
.vt-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 16px;
  font-weight: 700;
}
.vt-nav ul { display: flex; align-items: center; justify-content: center; gap: 12px; list-style: none; margin: 0; padding: 0; }
.vt-nav a { position: relative; flex-shrink: 0; padding: 10px 0; white-space: nowrap; }
.vt-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 1px; transform: scaleX(0); transform-origin: center; background: var(--text); transition: transform .25s ease; }
.vt-nav a:hover::after, .vt-nav .current-menu-item > a::after { transform: scaleX(1); }
.vt-header-actions { display: flex; align-items: center; gap: 18px; }
.vt-header-phone { white-space: nowrap; font-size: 22px; font-weight: 700; }
.vt-header-phone-icon { display: none; align-items: center; justify-content: center; }
.vt-header-phone-icon svg { display: block; }
.vt-header-actions .vt-btn { min-height: 36px; padding: 0 24px; font-size: 17px; white-space: nowrap; }
.vt-menu-toggle {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.vt-menu-toggle span { width: 20px; height: 2px; border-radius: 2px; background: var(--text); transition: transform .25s ease, opacity .25s ease; }
body.nav-open .vt-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .vt-menu-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .vt-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.vt-nav__close {
  display: none;
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border: 0; border-radius: 50%;
  background: var(--warm);
  cursor: pointer;
}
.vt-nav__close::before,
.vt-nav__close::after {
  content: ""; position: absolute;
  width: 16px; height: 2px; border-radius: 2px;
  background: var(--text);
}
.vt-nav__close::before { transform: rotate(45deg); }
.vt-nav__close::after  { transform: rotate(-45deg); }
.vt-nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8,44,73,.38);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
body.nav-open .vt-nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* ─── Hero block ─── */
.vt-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: center/cover no-repeat;
}
.vt-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 2;
  width: 100%;
  height: clamp(55px, 5vw, 80px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath d='M0 90 L645 90 C680 90 680 0 720 0 C760 0 760 90 795 90 L1440 90 Z' fill='%23ffffff'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
  pointer-events: none;
}
.vt-hero--no-bg { background-color: var(--warm); }
.vt-hero--no-bg::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath d='M0 90 C360 90 360 0 720 0 C1080 0 1080 90 1440 90 Z' fill='%23f5f0e8'/%3E%3C/svg%3E"); }
.vt-hero__shade {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.62) 45%, rgba(255,255,255,.82) 100%),
              radial-gradient(circle at 50% 38%, rgba(255,255,255,.62), transparent 52%);*/
}
.vt-hero .vt-wrapper { position: relative; z-index: 2; }
.vt-hero__content {
  display: grid;
  grid-template-columns: minmax(0,1fr) 390px;
  gap: 48px;
  align-items: center;
  padding: 64px 0 86px;
}
.vt-hero__copy { 
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 30px 30px rgba(255, 255, 255, 0.8);
    padding: 5px 0 10px;
}
.vt-hero__eyebrow { margin: 0 0 14px; color: var(--blue); font-family: var(--font-title); font-size: 26px; font-weight: 300; }
.vt-hero h1 { max-width: 800px; margin: 0 auto; font-family: var(--font-title); font-size: 52px; font-weight: 700; line-height: 1.08; }
.vt-hero__line { width: 100px; height: 5px; margin: 22px auto; border-radius: 20px; background: linear-gradient(90deg, var(--blue-light), var(--blue)); }
.vt-hero__lead { max-width: 680px; margin: 0 auto; font-family: var(--font-title); font-size: 28px; font-weight: 300; line-height: 1.22; }
.vt-hero__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 30px; }
.vt-scroll-mouse {
  position: absolute;
  left: 50%;
  bottom: 4px;
  z-index: 4;
  width: 44px;
  height: 44px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: transparent;
  transition: background-color .35s ease, transform .35s ease;
}
.vt-scroll-mouse:hover,
.vt-scroll-mouse:focus-visible {
  background: rgba(15, 105, 180, 0.08);
  transform: translateX(-50%) translateY(1px);
}
.vt-scroll-mouse::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 11px;
  width: 12px;
  height: 20px;
  transform: translateX(-50%);
  border: 2px solid var(--blue-light);
  border-radius: 12px;
  transition: border-color .35s ease;
}
.vt-scroll-mouse::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 17px;
  width: 3px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 3px;
  background: var(--blue-light);
  transition: background-color .35s ease;
}
.vt-scroll-mouse:hover::before,
.vt-scroll-mouse:focus-visible::before { border-color: var(--blue); }
.vt-scroll-mouse:hover::after,
.vt-scroll-mouse:focus-visible::after  { background: var(--blue); }

/* ─── Lead form (CF7 wrapper) ─── */
.vt-hero-form {
  padding: 28px;
  border-radius: var(--radius-card);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(4px);
}
.vt-form-title { margin: 0 0 6px; font-family: var(--font-title); font-size: 28px; font-weight: 700; line-height: 1.05; text-align: center; }
.vt-form-note { margin: 0 0 16px; color: var(--muted); font-size: 17px; text-align: center; }
/* CF7 field overrides */
.vt-hero-form .wpcf7-form-control-wrap,
.vt-inline-form .wpcf7-form-control-wrap,
.vt-compact-form .wpcf7-form-control-wrap { display: block; margin-bottom: 8px; }
.wpcf7-form p { margin: 0 0 8px; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"] {
  width: 100%;
  height: 44px;
  padding: 0 20px;
  border: 1px solid var(--input);
  border-radius: 45px;
  background: var(--white);
  color: var(--text);
  font-size: 17px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  box-sizing: border-box;
}
.wpcf7-form input:not([type="submit"]):not([type="checkbox"]) {
    margin-bottom: 10px;
}
.wpcf7-form textarea {
  width: 100%;
  min-height: 82px;
  padding: 12px 20px;
  border: 1px solid var(--input);
  border-radius: 22px;
  background: var(--white);
  color: var(--text);
  font-size: 17px;
  outline: none;
  resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.wpcf7-form input:focus, .wpcf7-form textarea:focus { border-color: var(--text); box-shadow: 0 0 0 3px rgba(15,105,180,.12); }
.wpcf7-form input[type="checkbox"] { width: 16px; height: 16px; min-width: 16px; margin-top: 1px; accent-color: var(--orange); }
.wpcf7-form .wpcf7-acceptance { text-align: left; display: flex; align-items: flex-start; gap: 8px; color: var(--text); font-size: 14px; line-height: 1.2; margin-bottom: 12px; }
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item, 
.wpcf7-form .wpcf7-acceptance input {
    margin-left: 0;
}
.wpcf7-form input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 45px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 2px 35px 0;
  cursor: pointer;
  transition: opacity .2s ease;
  box-shadow: var(--shadow-soft);
}
.wpcf7-form input[type="submit"]:hover { opacity: .88; }
.wpcf7-not-valid-tip { font-size: 12px; color: #d32f2f; display: block; margin-top: 4px; padding-left: 20px; }
.wpcf7-response-output { margin-top: 14px; padding: 10px 16px; font-size: 14px; border-radius: 8px; border: 1px solid; }
.wpcf7-mail-sent-ok { border-color: #2d7a2d; color: #1b5e20; background: rgba(45,122,45,.08); }
.wpcf7-mail-sent-ng, .wpcf7-validation-errors { border-color: #c62828; color: #b71c1c; background: rgba(198,40,40,.06); }

/* ─── Services grid block ─── */
.vt-services { border-bottom: 1px solid var(--line); background: var(--white); }
.vt-services__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 26px; margin-bottom: 32px; }
.vt-service-card {
  min-height: 265px;
  padding: 28px;
  border: 1px solid rgba(14,106,181,.08);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.vt-goods-card, 
.vt-problems__grid article {
    transition: transform .25s ease, box-shadow .25s ease;
}
.vt-service-card:hover,
.vt-goods-card:hover, 
.vt-problems__grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.vt-service-card__icon {
  display: inline-flex;
  width: 58px; height: 58px;
  align-items: center; justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px 0 14px 0;
  /*background: rgba(244,151,0,.12);*/
}
.vt-service-card__icon svg { width: 58px; height: 58px; fill: none; stroke: var(--orange); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.vt-service-card__icon img { width: 58px; height: 58px; object-fit: contain; }
.vt-service-card h3 { margin: 0; font-family: var(--font-ui); font-size: 26px; font-weight: 700; line-height: 1.08; }
.vt-service-card p { margin: 12px 0 0; }

/* ─── Reliability block ─── */
.vt-reliability { background: linear-gradient(180deg, var(--white) 0%, var(--white) 58%, var(--warm) 58%, var(--warm) 100%); }
.vt-reliability__grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 18px; }
.vt-reliability__grid article { padding: 24px 18px; border-radius: var(--radius-card); box-shadow: var(--shadow-card); text-align: center; background: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.vt-reliability__grid article:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.12); }
.vt-mini-icon {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: var(--white);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
}
.vt-reliability__grid h3 { margin: 0; font-size: 21px; font-family: var(--font-ui); font-weight: 700; line-height: 23px; }
.vt-reliability__grid p { margin: 12px 0 0; color: var(--muted); font-size: 16px; }
.vt-trust-note {
  display: grid;
  grid-template-columns: 90px minmax(0,1fr);
  gap: 24px;
  align-items: center;
  max-width: 900px;
  margin: 34px auto 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-card);
}
.vt-trust-note p { margin: 0; color: var(--muted); }
.vt-trust-seal {
  display: flex;
  width: 90px; height: 90px;
  align-items: center; justify-content: center;
  border: 4px solid rgba(244,151,0,.35);
  border-radius: 50%;
  color: var(--blue);
  font-family: var(--font-title);
  font-size: 25px;
  font-weight: 700;
}

/* ─── Request band block ─── */
.vt-request-band { overflow: hidden; background: var(--white); }
.vt-request-band__inner { display: grid; grid-template-columns: 42% minmax(0,1fr); gap: 62px; align-items: center; }
.vt-request-band__photo { position: relative; }
.vt-request-band__photo::before {
  content: ""; position: absolute; inset: 8% -8% -8% 12%; z-index: -1;
  border-radius: 50%; background: var(--warm);
}
.vt-request-band__photo img { width: min(410px,100%); margin: 0 auto; border-radius: 50%; box-shadow: var(--shadow-card); }
.vt-request-band__content h2 { margin: 0; font-family: var(--font-title); font-size: 38px; line-height: 1.1; }
.vt-request-band__content > p { max-width: 620px; color: var(--muted); margin: 12px 0 0; text-align: center; }
.vt-inline-form { max-width: 460px; margin: 22px auto 0px; }

/* ─── Goods grid block ─── */
.vt-goods { background: var(--warm); }
.vt-goods__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.vt-goods-card { min-height: 235px; padding: 26px; border-radius: var(--radius-card); box-shadow: var(--shadow-card); background: var(--white); }
.vt-goods-card h3 { color: var(--blue-dark); font-size: 23px; font-family: var(--font-ui); font-weight: 700; margin: 0; line-height: 23px;}
.vt-goods-card p { margin: 12px 0 0; color: var(--muted); font-size: 17px; }
.vt-goods-card img {
    border-radius: var(--radius-card);
    margin-bottom: 15px;
}

/* ─── Cases slider block ─── */
.vt-cases { background: var(--white); }
.vt-slider { position: relative; }
.vt-slider__viewport { overflow: hidden; width: 100%; }
.vt-slider__track { display: flex; align-items: stretch; transition: transform .35s ease; will-change: transform; }
.vt-slider__slide { flex: 0 0 100%; min-width: 0; }
.vt-case-card {
  display: grid;
  grid-template-columns: 42% minmax(0,1fr);
  gap: 34px;
  align-items: center;
  min-height: 456px;
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: none;
  border: 1px solid var(--line);
}
.vt-case-card img { width: 100%; height: 380px; border-radius: var(--radius-card); object-fit: cover; }
.vt-case-card h3 { font-size: 30px; margin-bottom: 16px; font-family: var(--font-ui); font-weight: 700; line-height: 33px; }
.vt-case-card p { margin: 8px 0 0; color: var(--muted); font-size: 18px; }
.vt-case-card strong { color: var(--text); }
.vt-slider__arrow {
  position: absolute; top: 50%; z-index: 5;
  width: 54px; height: 54px;
  transform: translateY(-50%);
  border: 0; border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: box-shadow .25s ease, transform .25s ease;
}
.vt-slider__arrow::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 13px; height: 13px;
  border-top: 3px solid var(--blue);
  border-right: 3px solid var(--blue);
  transition: opacity .25s ease;
}
.vt-slider__arrow--prev { left: -27px; }
.vt-slider__arrow--next { right: -27px; }
.vt-slider__arrow--prev::before { transform: translate(-35%,-50%) rotate(-135deg); }
.vt-slider__arrow--next::before { transform: translate(-65%,-50%) rotate(45deg); }
.vt-slider__arrow:hover { box-shadow: none; }
.vt-slider__arrow:hover::before { opacity: .55; }
.vt-slider__counter { display: none; }

/* ─── Problems grid block ─── */
.vt-problems { position: relative; background: var(--warm); }
.vt-problems__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.vt-problems__grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 24px; border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); background: var(--white);
}
.vt-problems__icon { position: relative; width: 48px; height: 48px; border-radius: 14px 0 14px 0; }
.vt-problems__icon::before { content: ""; position: absolute; left: 14px; right: 14px; top: 23px; height: 3px; background: var(--blue); }
.vt-problems__icon::after { content: ""; position: absolute; top: 14px; bottom: 14px; left: 23px; width: 3px; background: var(--blue); }
.vt-problems__icon--img::before, .vt-problems__icon--img::after { content: none; }
.vt-problems__icon--img { display: flex; align-items: center; justify-content: center; }
.vt-problems__icon--img img { width: 48px; height: 48px; object-fit: contain; }
.vt-problems__grid p { color: var(--muted); margin: 0; }
.vt-problems__summary {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 28px; align-items: center;
  margin-top: 30px; padding: 28px;
  border-radius: var(--radius-card);
  background: var(--white); box-shadow: var(--shadow-card);
}
.vt-problems__summary p { margin: 0; color: var(--text); }

/* ─── Interested cards block ─── */
.vt-interested { background: var(--white); }
.vt-interested__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px; }
.vt-interested__grid .vt-interest-card:only-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
.vt-interest-card {
  display: grid;
  grid-template-columns: 220px minmax(0,1fr);
  gap: 24px; align-items: center;
  padding: 20px; border-radius: var(--radius-card);
  background: var(--white); box-shadow: var(--shadow-card);
}
.vt-interest-card img { width: 220px; height: 170px; border-radius: 25px 0 25px 0; object-fit: cover; }
.vt-interest-card h3 { font-size: 26px; font-family: var(--font-ui); font-weight: 700; margin: 0; line-height: 29px; }
.vt-interest-card p { margin: 8px 0 0; color: var(--muted); }
.vt-interest-card a { display: inline-flex; margin-top: 16px; color: var(--blue); font-weight: 700; }
.vt-interest-card a:hover { color: var(--orange); }

/* ─── Documents slider block ─── */
.vt-documents { border-top: 1px solid var(--line); background: var(--white); }
.vt-docs-slider { padding: 0 8px; }
.vt-docs-slider .vt-slider__track { gap: 24px; }
.vt-docs-slider .vt-slider__slide { flex-basis: calc((100% - 72px) / 4); }
.vt-doc-card {
  position: relative;
  display: flex; min-height: 285px;
  flex-direction: column; justify-content: flex-start;
  padding: 22px 0px;
  border: 10px solid #eaf4fb;
  border-radius: 4px;
  background: linear-gradient(180deg,rgba(255,255,255,.94),rgba(255,255,255,.94)),
              repeating-linear-gradient(0deg,#d7e5ef 0,#d7e5ef 1px,transparent 1px,transparent 18px);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.vt-doc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.vt-doc-card::after {
  content: "";
  position: absolute; top: 14px; right: 14px;
  width: 24px; height: 24px;
  border-top: 2px solid var(--blue); border-right: 2px solid var(--blue);
  border-radius: 0 4px 0 0;
  opacity: 0;
  transform: translate(4px,-4px);
  transition: opacity .25s ease, transform .25s ease;
}
.vt-doc-card:hover::after { opacity: 1; transform: translate(0,0); }
/*.vt-doc-card::before {
  content: ""; position: absolute; left: 50%; top: 26px;
  width: 64px; height: 64px; transform: translateX(-50%);
  border: 4px solid rgba(15,105,180,.25); border-radius: 50%;
}*/
.vt-doc-card__num {
  display: block;
  margin: 0 auto 5px;
  color: var(--blue); font-family: var(--font-title); font-size: 22px; font-weight: 700;
}
.vt-doc-card h3 { font-size: 26px; font-family: var(--font-ui); font-weight: 700; margin: 0; line-height: 29px; }
.vt-doc-card p { margin: 8px 0 0; color: var(--muted); font-size: 16px; }

/* ─── World section block ─── */
.vt-world {
  overflow: hidden;
  background: linear-gradient(rgba(10,140,204,.92),rgba(15,105,180,.92)),
              radial-gradient(circle at 20% 20%,rgba(255,255,255,.22),transparent 24%),
              var(--blue);
  color: var(--white);
}
.vt-world__inner { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); gap: 34px; align-items: center; }
.vt-world h2 { margin-bottom: 18px; color: var(--white); text-align: left; }
.vt-world p { max-width: 570px; margin-top: 0; font-size: 20px; }
.vt-world__chips { display: flex; flex-wrap: wrap; gap: 14px; }
.vt-world__chips span {
  display: inline-flex; min-height: 42px; align-items: center;
  padding: 2px 20px 0;
  line-height: 1;
  border: 1px solid rgba(255,255,255,.4); border-radius: 45px;
  background: rgba(255,255,255,.12); font-weight: 700;
}

/* ─── Bottom request block ─── */
.vt-bottom-request { background: var(--white); }
.vt-bottom-request__inner { display: grid; grid-template-columns: 42% minmax(0,1fr); gap: 62px; align-items: center; }
.vt-brochure { position: relative; min-height: 370px; }
.vt-brochure::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 300px; height: 300px; transform: translate(-50%,-50%);
  border-radius: 50%; background: var(--warm);
}
.vt-brochure__page {
  position: absolute; left: 50%; top: 50%;
  width: 230px; min-height: 305px;
  transform: translate(-50%,-50%) rotate(-12deg);
  padding: 42px 28px;
  border-radius: 3px; background: var(--white);
  box-shadow: 0 25px 55px rgba(0,0,0,.18); text-align: center;
}
.vt-brochure__page img { width: 140px; margin: 0 auto 34px; }
.vt-brochure__page p { margin: 0; font-family: var(--font-title); font-size: 24px; font-weight: 700; line-height: 1.1; }
.vt-brochure__line { display: block; width: 82px; height: 5px; margin: 28px auto 0; border-radius: 8px; background: linear-gradient(90deg, var(--orange-light), var(--orange)); }
.vt-bottom-request__img-wrap { border-radius: var(--radius-card); overflow: hidden; }
.vt-bottom-request__img-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.vt-bottom-request__content h2 { margin: 0; font-family: var(--font-title); font-size: 38px; line-height: 1.1; }
.vt-bottom-request__content > p { text-align: center;max-width: 620px; color: var(--muted); margin: 12px 0 0; }
.vt-bottom-request__content a { color: var(--text); font-weight: 700; }
.vt-compact-form { max-width: 460px; margin-top: 22px; margin-left: auto; margin-right: auto; }

/* ─── Contacts block ─── */
.vt-contacts { position: relative; min-height: 470px; overflow: hidden; background: #e9f2e7; }
.vt-contacts__map {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,rgba(255,255,255,.72),rgba(255,255,255,.55)),
              repeating-linear-gradient(22deg,transparent 0,transparent 34px,rgba(15,105,180,.14) 35px,transparent 37px),
              repeating-linear-gradient(-18deg,transparent 0,transparent 44px,rgba(244,151,0,.17) 45px,transparent 47px),
              linear-gradient(135deg,#d6ead5,#f9f5e7 52%,#d8eff8);
}
.vt-contacts__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vt-map-line { position: absolute; height: 8px; border-radius: 40px; background: rgba(244,151,0,.45); }
.vt-map-line--one { left: -8%; top: 35%; width: 62%; transform: rotate(8deg); }
.vt-map-line--two { right: -6%; top: 58%; width: 74%; transform: rotate(-10deg); background: rgba(15,105,180,.35); }
.vt-map-line--three { left: 24%; bottom: 18%; width: 46%; transform: rotate(18deg); }
.vt-map-pin {
  position: absolute; left: 58%; top: 48%;
  width: 32px; height: 32px;
  transform: translate(-50%,-50%) rotate(45deg);
  border-radius: 50% 50% 50% 0;
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(244,151,0,.34);
}
.vt-map-pin::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 12px; height: 12px; transform: translate(-50%,-50%);
  border-radius: 50%; background: var(--white);
}
.vt-contacts__inner { position: relative; min-height: 470px; pointer-events: none; }
.vt-contacts-card { pointer-events: auto; }
.vt-contacts-card {
  position: absolute; left: 15px; top: 68px;
  width: min(430px,calc(100% - 30px));
  padding: 32px;
  border-radius: var(--radius-card);
  background: var(--white); box-shadow: var(--shadow-card);
}
.vt-contacts-card h2 { margin-bottom: 20px; font-size: 34px; text-align: left; }
.vt-contacts-card p { color: var(--muted); margin: 8px 0 0; }
.vt-contacts-card a:not(.vt-btn) { color: var(--text); font-weight: 700; }
.vt-contacts-card .vt-btn { margin-top: 22px; }
.vt-contacts-card .phone {
    font-size: 25px;
}

/* ─── Phone / email / acceptance link hovers ─── */
a[href^="tel:"],
a[href^="mailto:"] {
  transition: color .2s ease, opacity .2s ease;
}
a[href^="tel:"]:hover,
a[href^="tel:"]:focus-visible,
a[href^="mailto:"]:hover,
a[href^="mailto:"]:focus-visible {
  color: var(--blue);
  opacity: .82;
}
.vt-footer a[href^="tel:"]:hover,
.vt-footer a[href^="tel:"]:focus-visible,
.vt-footer a[href^="mailto:"]:hover,
.vt-footer a[href^="mailto:"]:focus-visible {
  color: var(--white);
  opacity: .72;
}
.wpcf7-acceptance a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease, opacity .2s ease;
}
.wpcf7-acceptance a:hover,
.wpcf7-acceptance a:focus-visible {
  color: var(--blue-dark);
  opacity: .85;
}

/* ─── Footer ─── */
.vt-footer { background: var(--blue-dark); color: var(--white); }
.vt-footer__inner { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.vt-footer__inner__links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}
.vt-footer__logo img { width: 150px; height: auto;}
.vt-footer__policy {
  border: 0; background: transparent; color: var(--white);
  font-size: 16px; text-decoration: underline; text-underline-offset: 4px; cursor: pointer;
}

/* ─── Modal ─── */
.vt-modal { position: fixed; inset: 0; z-index: 150; display: none; align-items: center; justify-content: center; padding: 24px; }
.vt-modal.is-open { display: flex; }
.vt-modal__overlay { position: absolute; inset: 0; background: rgba(11,11,11,.8); }
.vt-modal__dialog {
  position: relative; z-index: 1;
  width: min(680px,100%); max-height: min(720px,calc(100vh - 48px));
  overflow: auto; padding: 42px;
  border-radius: var(--radius-card);
  background: var(--white); box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.vt-modal__dialog h2 { margin: 0 0 22px; font-family: var(--font-title); font-size: 34px; line-height: 1.1; text-align: center; }
.vt-modal__dialog p { margin: 14px 0 0; color: var(--muted); }
.vt-modal__close {
  position: absolute; right: 18px; top: 18px;
  width: 34px; height: 34px;
  border: 0; border-radius: 50%; background: var(--warm);
}
.vt-modal__close::before, .vt-modal__close::after {
  content: ""; position: absolute; left: 9px; right: 9px; top: 16px; height: 2px; background: var(--text);
}
.vt-modal__close::before { transform: rotate(45deg); }
.vt-modal__close::after { transform: rotate(-45deg); }

/* ─── Toast ─── */
.vt-toast {
  position: fixed; right: 24px; bottom: 24px; z-index: 200;
  max-width: 360px; padding: 18px 22px;
  transform: translateY(24px);
  border-radius: var(--radius-card);
  background: var(--blue-dark); box-shadow: var(--shadow-card);
  color: var(--white);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.vt-toast.is-visible { transform: translateY(0); opacity: 1; }

/* ─── Page header (inner pages) ─── */
.vt-page-header { padding: 48px 0 40px; background: var(--warm); border-bottom: 1px solid var(--line); }
.vt-page-header h1 { font-family: var(--font-title); font-size: 48px; font-weight: 700; line-height: 1.06; margin: 0 0 12px; }
.vt-page-header p { color: var(--muted); font-size: 20px; }

.blocks-container {
    padding-left: 15px;
    padding-right: 15px;
}

/* ─── Responsive ─── */
@media (max-width: 1320px) {
  .vt-slider__arrow--prev { left: 10px; }
  .vt-slider__arrow--next { right: 10px; }
  .vt-case-slider { padding: 0 58px; }
  .vt-docs-slider { padding: 0 58px; }
}

/* 1280→1025 — desktop nav, уменьшаем размеры */
@media (max-width: 1280px) {
  .vt-header-inner { gap: 18px; min-height: 72px; }
  .vt-nav { gap: 16px; font-size: 14px; }
  .vt-nav ul { gap: 10px; }
  .vt-header-phone { font-size: 18px; }
  .vt-header-actions { gap: 12px; }
  .vt-header-actions .vt-btn { padding: 0 18px; font-size: 15px; }
}

/* ≤1024 — мобильное меню */
@media (max-width: 1024px) {
  .vt-header-inner { grid-template-columns: auto 1fr auto auto; gap: 14px; }
  .vt-header-actions { grid-column: 3; }
  .vt-menu-toggle { display: flex; grid-column: 4; }
  .vt-nav-overlay { display: block; }
  .vt-nav__close { display: flex; }
  .vt-nav {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    height: 100dvh; z-index: 110;
    width: min(340px, 88vw);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 0; padding: 100px 28px 32px;
    overflow-y: auto;
    transform: translateX(110%);
    visibility: hidden;
    background: var(--white); box-shadow: -14px 0 40px rgba(0,0,0,.14);
    transition: transform .28s cubic-bezier(.4,0,.2,1), visibility 0s .28s;
  }
  .vt-nav ul { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
  body.nav-open .vt-nav { transform: translateX(0); visibility: visible; transition: transform .28s cubic-bezier(.4,0,.2,1), visibility 0s 0s; }
  .vt-nav a { display: block; width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 18px; white-space: normal; }
  .vt-nav a::after { display: none; }
  .vt-header-actions .vt-btn { display: none; }
  /* Content layout */
  .vt-hero__content { grid-template-columns: 1fr; }
  .vt-hero-form { max-width: 520px; margin: 0 auto; }
  .vt-services__grid, .vt-goods__grid, .vt-problems__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .vt-reliability__grid { display: flex; flex-wrap: wrap; justify-content: center; }
  .vt-reliability__grid article { flex: 0 0 calc(33.333% - 12px); }
  .vt-interested__grid, .vt-request-band__inner, .vt-bottom-request__inner, .vt-world__inner { grid-template-columns: 1fr; }
  .vt-request-band__content, .vt-bottom-request__content { text-align: center; }
  .vt-request-band__content > p, .vt-bottom-request__content > p, .vt-inline-form, .vt-compact-form { margin-right: auto; margin-left: auto; }
  .vt-world h2, .vt-world p { text-align: center; }
  .vt-world p { margin-right: auto; margin-left: auto; }
  .vt-world__chips {justify-content: center;}
}
@media (max-width: 991px) {
    .vt-hero::after,
    .vt-scroll-mouse__wrapper {
        display: none;
    }
}
@media (max-width: 780px) {
  .vt-header-phone { display: none; }
  .vt-header-phone-icon { display: inline-flex; }
  .vt-services__grid, .vt-goods__grid, .vt-problems__grid { grid-template-columns: 1fr; }
  .vt-reliability__grid article { flex: 0 0 calc(50% - 9px); }
  .vt-case-card { grid-template-columns: 1fr; min-height: 0; align-items: start; gap: 18px; }
  .vt-case-card__img-wrap { display: block; }
  .vt-case-card img { height: 200px; }
  .vt-case-slider { padding: 0 48px; }
  .vt-interest-card { grid-template-columns: 1fr; }
  .vt-interest-card img { width: 100%; height: 180px; }
  .vt-docs-slider .vt-slider__slide { flex-basis: calc((100% - 24px) / 2); }
  .vt-contacts-card { position: static; margin: 24px 15px; width: auto; }
  .vt-contacts { min-height: auto; }
  .vt-contacts__inner { min-height: auto; }
  .vt-trust-note { grid-template-columns: 1fr; text-align: center; }
  .vt-problems__summary { grid-template-columns: 1fr; text-align: center; }
  .vt-trust-seal {margin: auto;}
}
@media (max-width: 520px) {
    .vt-header-inner { gap: 10px; min-height: 60px; }
    .vt-logo img { width: 150px; }
    .vt-section h2, .vt-contacts-card h2 { font-size: 32px; }
    .vt-hero h1 { font-size: 36px; }
    .vt-hero__lead { font-size: 20px; }
    .vt-hero__eyebrow { font-size: 20px; }
    /* Case slider — стрелки под слайдом, 1 слайд по центру */
    .vt-case-slider { padding: 0 0 56px; }
    .vt-case-slider .vt-slider__track { gap: 10px; }
    .vt-case-slider .vt-slider__slide { flex-basis: 100%; }
    .vt-case-slider .vt-slider__arrow { top: auto; bottom: 6px; transform: none; width: 40px; height: 40px; }
    .vt-case-slider .vt-slider__arrow--prev { left: calc(50% - 44px); }
    .vt-case-slider .vt-slider__arrow--next { right: calc(50% - 44px); left: auto; }
    .vt-case-card { padding: 16px; gap: 12px; overflow: hidden; }
    .vt-case-card img { height: 160px; }
    .vt-case-card h3 { font-size: 20px; line-height: 1.25; margin-bottom: 8px; }
    .vt-case-card p { font-size: 15px; }
    .vt-docs-slider .vt-slider__slide { flex-basis: 100%; }
    .vt-reliability__grid article { flex: 0 0 100%; }
    .vt-footer__inner { flex-direction: column; padding: 20px 0; text-align: center; }
    /* Contacts — карта под контентом */
    .vt-contacts { display: flex; flex-direction: column; background: transparent; }
    .vt-contacts__map { position: relative; order: 2; height: 260px; border-radius: 0 0 var(--radius-card) var(--radius-card); overflow: hidden; }
    .vt-contacts__inner { order: 1; }

    .vt-btn, .wpcf7-form input[type="submit"] {
        font-size: 14px;
    }
  
    .wpcf7-form .wpcf7-acceptance,
    body .cookie-notice-container #cn-notice-text,
    body .cookie-notice-container #cn-more-info,
    body .cookie-notice-container #cn-accept-cookie {
        font-size: 12px;
    }
    
    body .cookie-notice-container #cn-notice-text {
        line-height: 1.2;
    }
  
    body .cookie-notice-container #cn-notice-buttons {
        display: flex;
        gap: 5px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .vt-footer__inner__links {
        gap: 10px;
        flex-direction: column;
        align-items: flex-end;
        margin-left: auto;
    }
    
    h1.wp-block-heading {
        font-size: 36px;
    }
}

/* ─── Barba transition ─── */
[data-barba="container"] { transition: opacity .22s ease; }


.skiptranslate {
    display: none;
}

.wp-block-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}

.blocks-container .wp-block-heading {
    font-family: var(--font-title);
    text-align: left;
}

h1.wp-block-heading {
    margin-bottom: 40px;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.08;
}

h2.wp-block-heading,
h3.wp-block-heading,
h4.wp-block-heading,
h5.wp-block-heading,
h6.wp-block-heading {
    margin-top: 50px;
}

.wpcf7-spinner {
    position: absolute;
}

.wpcf7-acceptance label {
    display: flex;
    gap: 5px; 
    align-items: center;
}