:root {
  --vd-bg: #f5f5f7;
  --vd-surface: #ffffff;
  --vd-ink: #1d1d1f;
  --vd-muted: #6e6e73;
  --vd-line: rgba(29, 29, 31, .12);
  --vd-brand: #9f2932;
  --vd-brand-dark: #761b23;
  --vd-dark: #111113;
  --vd-radius: 28px;
  --vd-shadow: 0 24px 80px rgba(0, 0, 0, .08);
  --vd-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
  background: var(--vd-bg);
}

body.vd-body {
  min-width: 320px;
  margin: 0;
  color: var(--vd-ink);
  background: var(--vd-bg);
  font-family: var(--vd-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.vd-body img {
  max-width: 100%;
}

.vd-body a,
.vd-body button,
.vd-body summary {
  -webkit-tap-highlight-color: transparent;
}

.vd-container {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.vd-kicker {
  margin: 0 0 12px;
  color: var(--vd-brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.vd-display {
  margin: 0;
  color: var(--vd-ink);
  font-family: var(--vd-font);
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 650;
  letter-spacing: -.052em;
  line-height: .98;
}

.vd-section-title {
  max-width: 900px;
  margin: 0;
  color: var(--vd-ink);
  font-family: var(--vd-font);
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 650;
  letter-spacing: -.05em;
  line-height: 1;
}

.vd-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.vd-section-intro > p {
  margin: 0;
  color: var(--vd-muted);
  font-size: 19px;
  line-height: 1.55;
}

.vd-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  color: #fff;
  background: var(--vd-brand);
  border: 1px solid var(--vd-brand);
  border-radius: 999px;
  font-family: var(--vd-font);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.vd-button:hover {
  color: #fff;
  background: var(--vd-brand-dark);
  transform: translateY(-1px);
}

.vd-button--ghost {
  color: var(--vd-ink);
  background: transparent;
  border-color: var(--vd-line);
}

.vd-button--ghost:hover {
  color: var(--vd-ink);
  background: rgba(29, 29, 31, .05);
}

.vd-button--light {
  color: var(--vd-ink);
  background: #fff;
  border-color: #fff;
}

.vd-button--light:hover {
  color: var(--vd-ink);
  background: #f0f0f2;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 2000;
  top: 0;
  padding: 12px 20px;
  background: rgba(245, 245, 247, .82);
  border-bottom: 1px solid rgba(29, 29, 31, .06);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.site-header__inner {
  display: grid;
  width: min(100%, 1240px);
  min-height: 58px;
  grid-template-columns: 180px 1fr auto;
  gap: 24px;
  align-items: center;
  margin-inline: auto;
}

.site-logo {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.site-logo img {
  display: block;
  width: 145px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.site-nav__link {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 6px;
  padding: 9px 13px;
  color: rgba(29, 29, 31, .78);
  border-radius: 999px;
  font-family: var(--vd-font);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-current,
.site-nav__services[open] > .site-nav__link {
  color: var(--vd-ink);
  background: rgba(29, 29, 31, .055);
}

.site-nav__services {
  position: relative;
}

.site-nav__summary {
  cursor: pointer;
  list-style: none;
}

.site-nav__summary::-webkit-details-marker {
  display: none;
}

.site-nav__summary svg {
  width: 10px;
  height: 7px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform .2s ease;
}

.site-nav__services[open] .site-nav__summary svg {
  transform: rotate(180deg);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 650px;
  padding: 22px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(29, 29, 31, .09);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .16);
  transform: translateX(-50%);
  backdrop-filter: blur(24px);
}

.site-nav__dropdown > p {
  margin: 0 0 13px;
  color: var(--vd-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav__service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

.site-nav__service-grid a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 13px;
  color: var(--vd-ink);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.35;
  text-decoration: none;
}

.site-nav__service-grid a:hover {
  color: var(--vd-brand);
  background: rgba(159, 41, 50, .07);
}

.site-nav__service-grid a span {
  color: var(--vd-muted);
  font-size: 13px;
}

.site-header__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.site-header__contact {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 1px;
  white-space: nowrap;
}

.site-header__phone,
.site-header__email {
  color: var(--vd-ink);
  font-family: var(--vd-font);
  text-decoration: none;
  transition: color .2s ease;
}

.site-header__phone {
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -.015em;
  line-height: 1.2;
}

.site-header__email {
  color: var(--vd-muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
}

.site-header__address {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 14px;
  color: var(--vd-muted);
  border-left: 1px solid var(--vd-line);
  font-family: var(--vd-font);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}

.site-header__address-label {
  margin-bottom: 1px;
  color: var(--vd-brand);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header__phone:hover,
.site-header__email:hover,
.site-header__address:hover,
.site-header__phone:focus-visible,
.site-header__email:focus-visible,
.site-header__address:focus-visible {
  color: var(--vd-brand);
  text-decoration: none;
}

.site-header__request {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 16px;
  color: #fff;
  background: var(--vd-brand);
  border: 1px solid var(--vd-brand);
  border-radius: 12px;
  font-family: var(--vd-font);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.site-header__request:hover,
.site-header__request:focus-visible { color: #fff; background: var(--vd-brand-dark); border-color: var(--vd-brand-dark); }
.site-header__request:hover { transform: translateY(-1px); }
.site-header__request:focus-visible { outline: 2px solid rgba(173, 39, 45, .25); outline-offset: 3px; }
.site-header__request-icon,
.site-header__request-mobile { display: none; }
.site-header__request-icon svg { display: block; width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }

.site-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--vd-line);
  border-radius: 50%;
}

.site-nav-toggle > span:not(.site-nav-toggle__label) {
  position: absolute;
  width: 17px;
  height: 1.5px;
  background: var(--vd-ink);
  transition: transform .2s ease;
}

.site-nav-toggle > span:first-child { transform: translateY(-3px); }
.site-nav-toggle > span:nth-child(2) { transform: translateY(3px); }
.site-nav-toggle__label { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(0 0 0 0); }
.site-header.is-nav-open .site-nav-toggle > span:first-child { transform: rotate(45deg); }
.site-header.is-nav-open .site-nav-toggle > span:nth-child(2) { transform: rotate(-45deg); }

/* Homepage */
.vd-home {
  overflow: hidden;
}

.vd-hero {
  padding: 42px 0 24px;
}

.vd-hero__stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 255, 255, .96) 0, rgba(255, 255, 255, .28) 34%, transparent 57%),
    linear-gradient(145deg, #e8e9ed 0%, #f7f7f8 48%, #d8d9dd 100%);
  border-radius: 36px;
}

.vd-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: 62%;
  min-height: 620px;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0 72px 68px;
}

.vd-hero__copy .vd-display span {
  color: var(--vd-brand);
}

.vd-hero__lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--vd-muted);
  font-size: clamp(18px, 2vw, 23px);
  letter-spacing: -.015em;
  line-height: 1.48;
}

.vd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.vd-hero__visual {
  position: absolute;
  z-index: 1;
  right: -5%;
  bottom: -7%;
  width: 53%;
  pointer-events: none;
}

.vd-hero__visual img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 35px 40px rgba(0, 0, 0, .22));
}


.vd-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 34px 0 76px;
}

.vd-trust__item {
  padding: 0 32px;
  border-right: 1px solid var(--vd-line);
}

.vd-trust__item:first-child { padding-left: 0; }
.vd-trust__item:last-child { padding-right: 0; border-right: 0; }
.vd-trust__item strong { display: block; margin-bottom: 5px; font-size: 18px; letter-spacing: -.02em; }
.vd-trust__item span { color: var(--vd-muted); font-size: 14px; line-height: 1.45; }

.vd-services {
  padding: 96px 0;
  background: var(--vd-surface);
}

.vd-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--vd-line);
}

.vd-service-link {
  display: grid;
  min-height: 150px;
  grid-template-columns: 44px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 30px 32px;
  color: var(--vd-ink);
  border-right: 1px solid var(--vd-line);
  border-bottom: 1px solid var(--vd-line);
  text-decoration: none;
  transition: background-color .25s ease;
}

.vd-service-link:nth-child(even) { border-right: 0; }
.vd-service-link:hover { background: #f5f5f7; }
.vd-service-link__number { color: var(--vd-muted); font-size: 13px; font-variant-numeric: tabular-nums; }
.vd-service-link__body strong { display: block; margin-bottom: 6px; font-size: clamp(20px, 2.2vw, 28px); font-weight: 620; letter-spacing: -.035em; line-height: 1.15; }
.vd-service-link__body span { color: var(--vd-muted); font-size: 14px; line-height: 1.5; }
.vd-service-link__arrow { display: grid; width: 40px; height: 40px; place-items: center; color: var(--vd-ink); border: 1px solid var(--vd-line); border-radius: 50%; font-size: 19px; transition: transform .2s ease, background-color .2s ease; }
.vd-service-link:hover .vd-service-link__arrow { background: #fff; transform: translate(2px, -2px); }

.vd-equipment {
  padding: 112px 0;
}

.vd-equipment__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
}

.vd-machine {
  --vd-reveal-x: -28px;
  position: relative;
  isolation: isolate;
  min-height: 620px;
  overflow: hidden;
  background: #e7e7e9;
  border-radius: 32px;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), box-shadow .55s cubic-bezier(.22, 1, .36, 1);
}

.vd-machine--dark {
  --vd-reveal-x: 28px;
  color: #fff;
  background: var(--vd-dark);
}

.vd-machine::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: radial-gradient(circle at 72% 78%, rgba(255, 255, 255, .72), transparent 34%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}

.vd-machine--dark::after {
  background: radial-gradient(circle at 70% 72%, rgba(255, 255, 255, .12), transparent 36%);
}

.vd-machine__copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 46px 48px;
}

.vd-machine__copy h3 {
  margin: 0 0 12px;
  color: inherit;
  font-family: var(--vd-font);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 620;
  letter-spacing: -.045em;
  line-height: 1;
}

.vd-machine__copy p {
  margin: 0;
  color: var(--vd-muted);
  font-size: 17px;
  line-height: 1.55;
}

.vd-machine--dark .vd-machine__copy p { color: rgba(255, 255, 255, .62); }

.vd-machine__image {
  position: absolute;
  right: -4%;
  bottom: -4%;
  width: 78%;
  max-height: 76%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .2));
  transition: transform .7s cubic-bezier(.22, 1, .36, 1), filter .7s ease;
}

.vd-machine--dark .vd-machine__image {
  right: -10%;
  width: 90%;
}

@media (hover: hover) and (pointer: fine) {
  .vd-machine:hover {
    box-shadow: 0 28px 70px rgba(0, 0, 0, .12);
    transform: translateY(-6px);
  }

  .vd-machine:hover::after { opacity: 1; }
  .vd-machine:hover .vd-machine__image {
    filter: drop-shadow(0 36px 44px rgba(0, 0, 0, .24));
    transform: translateY(-10px) scale(1.022);
  }
}

@keyframes vd-machine-card-reveal {
  from {
    opacity: .35;
    scale: .985;
    translate: var(--vd-reveal-x) 48px;
  }
  to {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}

@keyframes vd-machine-copy-reveal {
  from { opacity: 0; translate: 0 20px; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes vd-machine-image-reveal {
  from {
    clip-path: inset(20% 0 0 0 round 28px);
    opacity: 0;
    scale: .96;
    translate: 0 46px;
  }
  to {
    clip-path: inset(0 0 0 0 round 0);
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}

@supports (animation-timeline: view()) {
  .vd-machine {
    animation: vd-machine-card-reveal linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 36%;
  }

  .vd-machine--dark { animation-range: entry 14% cover 42%; }

  .vd-machine__copy {
    animation: vd-machine-copy-reveal linear both;
    animation-timeline: view();
    animation-range: entry 20% cover 38%;
  }

  .vd-machine__image {
    animation: vd-machine-image-reveal linear both;
    animation-timeline: view();
    animation-range: entry 12% cover 46%;
  }
}

.vd-process {
  padding: 108px 0;
  color: #fff;
  background: var(--vd-dark);
}

.vd-process .vd-section-title { color: #fff; }
.vd-process .vd-section-intro > p { color: rgba(255, 255, 255, .58); }

.vd-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.vd-process__steps::before {
  position: absolute;
  z-index: 2;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--vd-brand);
  box-shadow: 0 0 18px rgba(173, 39, 45, .52);
  content: "";
  scale: 0 1;
  transform-origin: left center;
}

.vd-process__steps::after {
  position: absolute;
  z-index: 4;
  top: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #ff5a61;
  border: 2px solid #ffb0b4;
  border-radius: 50%;
  box-shadow: 0 0 10px #d7454c, 0 0 24px rgba(215, 69, 76, .8);
  content: "";
  opacity: 0;
}

.vd-process__step {
  position: relative;
  min-height: 260px;
  padding: 28px 28px 0;
  border-right: 1px solid rgba(255, 255, 255, .18);
  transition: background-color .35s ease;
}

.vd-process__step::after {
  position: absolute;
  z-index: 2;
  top: 0;
  right: -1px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, var(--vd-brand), rgba(173, 39, 45, .08));
  content: "";
  opacity: 0;
  scale: 1 0;
  transform-origin: center top;
}

.vd-process__step:first-child { padding-left: 0; }
.vd-process__step:last-child { border-right: 0; }
.vd-process__step:last-child::after { display: none; }
.vd-process__step span { color: rgba(255, 255, 255, .42); font-size: 13px; }
.vd-process__step h3 { margin: 54px 0 12px; color: #fff; font-family: var(--vd-font); font-size: 24px; font-weight: 600; letter-spacing: -.025em; line-height: 1.2; }
.vd-process__step p { margin: 0; color: rgba(255, 255, 255, .58); font-size: 15px; line-height: 1.55; }

@media (hover: hover) and (pointer: fine) {
  .vd-process__step:hover { background: rgba(255, 255, 255, .035); }
  .vd-process__step:hover span { color: #d7454c; }
}

@keyframes vd-process-title-reveal {
  from {
    clip-path: inset(0 0 100% 0);
    opacity: .2;
    translate: 0 30px;
  }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes vd-process-copy-reveal {
  from { opacity: 0; translate: 0 18px; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes vd-process-line-reveal {
  from { scale: 0 1; }
  to { scale: 1 1; }
}

@keyframes vd-process-line-reveal-y {
  from { scale: 1 0; }
  to { scale: 1 1; }
}

@keyframes vd-process-runner {
  0% { left: 0; opacity: 0; }
  3% { opacity: 1; }
  97% { opacity: 1; }
  100% { left: calc(100% - 10px); opacity: 0; }
}

@keyframes vd-process-runner-y {
  0% { top: 0; opacity: 0; }
  3% { opacity: 1; }
  97% { opacity: 1; }
  100% { top: calc(100% - 10px); opacity: 0; }
}

@keyframes vd-process-step-reveal {
  from {
    background-color: rgba(255, 255, 255, 0);
    opacity: .22;
    translate: 0 20px;
  }
  to {
    background-color: rgba(255, 255, 255, .025);
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes vd-process-number-reveal {
  from { color: rgba(255, 255, 255, .25); }
  to { color: #d7454c; }
}

@keyframes vd-process-divider-reveal {
  from { opacity: 0; scale: 1 0; }
  to { opacity: 1; scale: 1 1; }
}

.vd-process.is-process-ready:not(.is-process-animated) .vd-section-title {
  clip-path: inset(0 0 100% 0);
  opacity: .2;
  translate: 0 30px;
}

.vd-process.is-process-ready:not(.is-process-animated) .vd-section-intro > p,
.vd-process.is-process-ready:not(.is-process-animated) .vd-process__step {
  opacity: .22;
  translate: 0 20px;
}

.vd-process.is-process-animated .vd-section-title {
  animation: vd-process-title-reveal .7s cubic-bezier(.22, 1, .36, 1) both;
}

.vd-process.is-process-animated .vd-section-intro > p {
  animation: vd-process-copy-reveal .65s .22s cubic-bezier(.22, 1, .36, 1) both;
}

.vd-process.is-process-animated .vd-process__steps::before {
  animation: vd-process-line-reveal 3.4s .5s cubic-bezier(.32, 0, .12, 1) both;
}

.vd-process.is-process-animated .vd-process__steps::after {
  animation: vd-process-runner 3.4s .5s cubic-bezier(.32, 0, .12, 1) both;
}

.vd-process__step:nth-child(1) { --vd-process-delay: .55s; }
.vd-process__step:nth-child(2) { --vd-process-delay: 1.3s; }
.vd-process__step:nth-child(3) { --vd-process-delay: 2.05s; }
.vd-process__step:nth-child(4) { --vd-process-delay: 2.8s; }

.vd-process.is-process-animated .vd-process__step {
  animation: vd-process-step-reveal .65s var(--vd-process-delay) cubic-bezier(.22, 1, .36, 1) both;
}

.vd-process.is-process-animated .vd-process__step > span {
  animation: vd-process-number-reveal .4s var(--vd-process-delay) ease both;
}

.vd-process.is-process-animated .vd-process__step::after {
  animation: vd-process-divider-reveal .65s var(--vd-process-delay) cubic-bezier(.22, 1, .36, 1) both;
}

.vd-brands {
  padding: 90px 0;
  background: #fff;
}

.vd-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.vd-brand-pill {
  padding: 12px 18px;
  color: var(--vd-muted);
  background: var(--vd-bg);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
}

.vd-region {
  padding: 24px 0 112px;
  background: #fff;
}

.vd-region__panel {
  display: grid;
  min-height: 470px;
  grid-template-columns: 1.05fr .95fr;
  overflow: hidden;
  color: #fff;
  background: var(--vd-brand);
  border-radius: 36px;
}

.vd-region__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}

.vd-region__copy .vd-kicker { color: rgba(255, 255, 255, .65); }
.vd-region__copy h2 { margin: 0; color: #fff; font-family: var(--vd-font); font-size: clamp(42px, 5vw, 68px); font-weight: 630; letter-spacing: -.05em; line-height: 1; }
.vd-region__copy p { max-width: 580px; margin: 22px 0 30px; color: rgba(255, 255, 255, .72); font-size: 18px; line-height: 1.55; }
.vd-region__visual { position: relative; min-height: 470px; overflow: hidden; background: #96242b; }
.vd-region__visual::before { position: absolute; z-index: 1; inset: 0; background: radial-gradient(circle at 72% 24%, rgba(255, 255, 255, .1), transparent 42%); content: ''; pointer-events: none; }
.vd-region__map { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.vd-region__legend { position: absolute; z-index: 2; top: 28px; left: 28px; display: flex; flex-direction: column; padding-left: 14px; border-left: 2px solid rgba(255, 255, 255, .72); }
.vd-region__legend small { color: rgba(255, 255, 255, .52); font-size: 9px; font-weight: 650; letter-spacing: .11em; line-height: 1.2; text-transform: uppercase; }
.vd-region__legend strong { margin-top: 5px; color: #fff; font-size: 17px; font-weight: 620; letter-spacing: -.015em; line-height: 1.1; }
.vd-region__caption { position: absolute; z-index: 2; right: 24px; bottom: 22px; max-width: 300px; margin: 0; padding-top: 11px; color: rgba(255, 255, 255, .7); border-top: 1px solid rgba(255, 255, 255, .34); font-size: 12px; line-height: 1.45; }

/* Editorial internal pages */
.vd-page {
  padding-bottom: 112px;
}

.vd-page-hero {
  padding: 96px 0 72px;
}

.vd-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .55fr);
  gap: 70px;
  align-items: end;
}

.vd-page-hero h1 {
  margin: 0;
  color: var(--vd-ink);
  font-family: var(--vd-font);
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: .92;
}

.vd-page-hero__lead {
  margin: 0;
  color: var(--vd-muted);
  font-size: 20px;
  letter-spacing: -.015em;
  line-height: 1.55;
}

.vd-editorial-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: linear-gradient(145deg, #e2e3e7, #f8f8f9);
  border-radius: 36px;
}

.vd-editorial-image img {
  position: absolute;
  right: 3%;
  bottom: -8%;
  width: 62%;
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 38px 46px rgba(0, 0, 0, .2));
}

.vd-editorial-image__copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 54px;
}

.vd-editorial-image__copy h2 {
  margin: 0;
  color: var(--vd-ink);
  font-family: var(--vd-font);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 620;
  letter-spacing: -.05em;
  line-height: 1;
}

.vd-editorial-image__copy p {
  margin: 22px 0 0;
  color: var(--vd-muted);
  font-size: 18px;
  line-height: 1.55;
}

.vd-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 112px 0;
}

.vd-story h2 {
  margin: 0;
  color: var(--vd-ink);
  font-family: var(--vd-font);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 630;
  letter-spacing: -.05em;
  line-height: 1;
}

.vd-story__text {
  color: var(--vd-muted);
  font-size: 18px;
  line-height: 1.7;
}

.vd-story__text p { margin: 0 0 20px; }

.vd-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--vd-line);
}

.vd-value {
  min-height: 310px;
  padding: 36px 34px;
  border-right: 1px solid var(--vd-line);
  border-bottom: 1px solid var(--vd-line);
}

.vd-value:last-child { border-right: 0; }
.vd-value__number { color: var(--vd-brand); font-size: 13px; }
.vd-value h3 { margin: 80px 0 12px; color: var(--vd-ink); font-family: var(--vd-font); font-size: 27px; font-weight: 620; letter-spacing: -.035em; line-height: 1.15; }
.vd-value p { margin: 0; color: var(--vd-muted); font-size: 15px; line-height: 1.6; }

/* Footer */
.site-footer {
  padding: 24px 20px 20px;
  color: #fff;
  background: var(--vd-bg);
}

.site-footer__inner {
  width: min(100%, 1240px);
  margin-inline: auto;
  overflow: hidden;
  background: var(--vd-dark);
  border-radius: 34px;
}

.site-footer__cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.site-footer__cta .vd-kicker { color: rgba(255, 255, 255, .48); }
.site-footer__cta h2 { max-width: 760px; margin: 0; color: #fff; font-family: var(--vd-font); font-size: clamp(42px, 5vw, 70px); font-weight: 620; letter-spacing: -.05em; line-height: 1; }

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .8fr 1fr;
  gap: 48px;
  padding: 58px 64px;
}

.site-footer__brand img { filter: brightness(0) invert(1); opacity: .9; }
.site-footer__brand p { max-width: 320px; margin: 22px 0 0; color: rgba(255, 255, 255, .5); font-size: 14px; line-height: 1.6; }
.site-footer__column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.site-footer__column h3 { margin: 0 0 8px; color: rgba(255, 255, 255, .4); font-family: var(--vd-font); font-size: 11px; font-weight: 700; letter-spacing: .09em; line-height: 1.3; text-transform: uppercase; }
.site-footer__column a,
.site-footer__column span { color: rgba(255, 255, 255, .74); font-size: 14px; line-height: 1.45; text-decoration: none; }
.site-footer__column a:hover { color: #fff; }
.site-footer__contacts a { font-size: 15px; font-weight: 600; }
.site-footer__contacts span { margin-top: 7px; color: rgba(255, 255, 255, .48); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 64px; color: rgba(255, 255, 255, .36); border-top: 1px solid rgba(255, 255, 255, .1); font-size: 12px; }

/* Lead form */
.has-lead-modal { overflow: hidden; }
.vd-lead-modal[hidden] { display: none; }
.vd-lead-modal { position: fixed; z-index: 5000; inset: 0; display: grid; place-items: center; padding: 24px; }
.vd-lead-modal__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; background: rgba(17, 17, 19, .52); border: 0; opacity: 0; cursor: default; backdrop-filter: blur(10px); transition: opacity .2s ease; }
.vd-lead-modal__dialog { position: relative; width: min(100%, 520px); max-height: calc(100vh - 48px); overflow: auto; background: #fff; border: 1px solid rgba(29, 29, 31, .1); border-radius: 24px; box-shadow: 0 30px 100px rgba(0, 0, 0, .22); opacity: 0; transform: translateY(14px) scale(.99); transition: opacity .2s ease, transform .2s ease; }
.vd-lead-modal.is-open .vd-lead-modal__backdrop { opacity: 1; }
.vd-lead-modal.is-open .vd-lead-modal__dialog { opacity: 1; transform: none; }
.vd-lead-modal__close { position: absolute; z-index: 2; top: 16px; right: 16px; width: 38px; height: 38px; padding: 0; background: rgba(29, 29, 31, .055); border: 0; border-radius: 50%; cursor: pointer; }
.vd-lead-modal__close span { position: absolute; top: 18px; left: 10px; width: 18px; height: 1px; background: var(--vd-ink); transform: rotate(45deg); }
.vd-lead-modal__close span:last-child { transform: rotate(-45deg); }
.vd-lead-modal__intro { padding: 42px 44px 12px; }
.vd-lead-modal__intro .vd-kicker { margin-bottom: 9px; }
.vd-lead-modal__intro h2 { margin: 0; color: var(--vd-ink); font-size: 42px; font-weight: 620; letter-spacing: -.045em; line-height: 1; }
.vd-lead-modal__intro > p:not(.vd-kicker) { margin: 14px 0 0; color: var(--vd-muted); font-size: 15px; line-height: 1.5; }
.vd-lead-form { display: flex; flex-direction: column; gap: 15px; padding: 20px 44px 40px; }
.vd-lead-field { display: flex; min-width: 0; flex-direction: column; gap: 7px; }
.vd-lead-field > span { color: var(--vd-muted); font-size: 12px; font-weight: 650; }
.vd-lead-field input { width: 100%; min-height: 58px; box-sizing: border-box; padding: 15px 17px; color: var(--vd-ink); background: #f5f5f7; border: 1px solid transparent; border-radius: 14px; outline: none; font: 550 18px/1.4 var(--vd-font); transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.vd-lead-field input:focus { background: #fff; border-color: rgba(159, 41, 50, .5); box-shadow: 0 0 0 3px rgba(159, 41, 50, .09); }
.vd-lead-field input::placeholder { color: rgba(110, 110, 115, .58); }
.vd-lead-consent { display: flex; align-items: flex-start; gap: 9px; color: var(--vd-muted); font-size: 12px; line-height: 1.45; cursor: pointer; }
.vd-lead-consent input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--vd-brand); }
.vd-lead-consent a { color: inherit; text-underline-offset: 2px; }
.vd-lead-form__footer { display: flex; flex-direction: column; align-items: stretch; gap: 9px; margin-top: 2px; }
.vd-lead-form__footer .vd-button { width: 100%; }
.vd-lead-form__status { margin: 0; color: var(--vd-brand); font-size: 12px; line-height: 1.4; }
.vd-lead-form__honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.vd-lead-success { padding: 58px 44px 44px; text-align: left; }
.vd-lead-success > span { display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 24px; color: #fff; background: var(--vd-brand); border-radius: 50%; font-size: 22px; }
.vd-lead-success h3 { margin: 0; color: var(--vd-ink); font-size: 36px; font-weight: 620; letter-spacing: -.04em; line-height: 1; }
.vd-lead-success p { margin: 18px 0 28px; color: var(--vd-muted); font-size: 16px; line-height: 1.55; }

/* Existing contacts/privacy/service aligned with new system */
.contact-page,
.service-page {
  background: var(--vd-bg) !important;
  font-family: var(--vd-font) !important;
}

.contact-page { padding-top: 88px !important; }
.contact-page__container { max-width: 1240px !important; }
.contact-page__heading h1,
.service-hero h1 { font-family: var(--vd-font) !important; font-weight: 650 !important; letter-spacing: -.055em !important; }
.contact-card,
.service-hero,
.service-article,
.service-contact-box,
.service-data,
.service-faq,
.service-final-cta { border-color: var(--vd-line) !important; border-radius: 28px !important; box-shadow: none !important; }
.contact-route,
.service-button { border-radius: 999px !important; }
.service-page { padding-top: 52px !important; }
.service-page__container { max-width: 1240px !important; }
.service-hero { background: #fff !important; }
.service-hero__facts { background: var(--vd-dark) !important; }

/* Service detail: editorial workshop sheet */
.service-page--editorial {
  --service-brand: var(--vd-brand);
  --service-brand-dark: #851f28;
  --service-ink: var(--vd-ink);
  --service-muted: var(--vd-muted);
  --service-line: var(--vd-line);
  padding: 34px 24px 112px !important;
}

.service-page--editorial .service-page__container { max-width: 1320px !important; }
.service-page--editorial .service-breadcrumbs { margin: 0 0 22px; color: #77777d; font-size: 12px; }
.service-page--editorial .service-breadcrumbs a { color: var(--vd-ink); }

.service-page--editorial .service-hero {
  grid-template-columns: minmax(0, 1.55fr) minmax(350px, .62fr);
  overflow: visible;
  border: 1px solid #cfcfd4 !important;
  border-radius: 0 !important;
}

.service-page--editorial .service-hero__content { padding: 38px 54px 46px; }
.service-page--editorial .service-hero__marker {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  margin: 0 0 54px;
  padding-bottom: 12px;
  color: #6e6e73;
  border-bottom: 1px solid #d8d8dc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.3;
  text-transform: uppercase;
}
.service-page--editorial .service-hero__marker span:first-child { color: var(--vd-brand); }
.service-page--editorial .service-eyebrow { margin-bottom: 15px; font-size: 11px; letter-spacing: .14em; }
.service-page--editorial .service-hero h1 {
  max-width: 850px;
  font-size: clamp(42px, 5.2vw, 72px) !important;
  line-height: .98 !important;
  letter-spacing: -.052em !important;
}
.service-page--editorial .service-lead { max-width: 760px; margin-top: 25px; font-size: 18px; line-height: 1.55; }
.service-page--editorial .service-actions { margin-top: 31px; }
.service-page--editorial .service-button {
  min-height: 50px;
  padding: 13px 21px;
  border-radius: 4px !important;
  font-size: 14px;
  letter-spacing: -.01em;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}
.service-page--editorial .service-button:hover { transform: none; }
.service-page--editorial .service-button--secondary { color: var(--vd-ink); border-color: #bfc0c5; }
.service-page--editorial .service-button--secondary:hover { color: var(--vd-ink); background: #eeeeF0; border-color: #8e8e93; }
.service-page--editorial .service-hero__note {
  max-width: 600px;
  margin: 35px 0 0;
  padding-left: 16px;
  color: #77777d;
  border-left: 2px solid var(--vd-brand);
  font-size: 13px;
  line-height: 1.55;
}

.service-page--editorial .service-hero__facts {
  justify-content: flex-start;
  padding: 0 !important;
  border-radius: 0 !important;
}
.service-page--editorial .service-hero__facts-head {
  display: flex;
  justify-content: space-between;
  padding: 19px 24px !important;
  border-bottom: 1px solid rgba(255, 255, 255, .18) !important;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-page--editorial .service-hero__facts dl { margin: 0; }
.service-page--editorial .service-hero__facts dl > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 1.15fr);
  gap: 20px;
  padding: 28px 24px !important;
  border-bottom: 1px solid rgba(255, 255, 255, .18) !important;
}
.service-page--editorial .service-hero__facts dt,
.service-page--editorial .service-hero__facts dd { margin: 0; }
.service-page--editorial .service-hero__facts dt { color: rgba(255, 255, 255, .55); font-size: 11px; font-weight: 650; text-transform: uppercase; }
.service-page--editorial .service-hero__facts dt small { display: block; margin-bottom: 12px; color: var(--vd-brand-light, #d04a54); font-size: 10px; }
.service-page--editorial .service-hero__facts dd { align-self: end; color: #fff; font-size: 17px; font-weight: 600; line-height: 1.35; }
.service-page--editorial .service-hero__facts > p { margin: auto 0 0; padding: 25px 24px; color: rgba(255, 255, 255, .52); font-size: 12px; line-height: 1.5; }

.service-page--editorial .service-workflow {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  margin-top: 30px;
  border-top: 1px solid #bfc0c5;
  border-bottom: 1px solid #bfc0c5;
}
.service-page--editorial .service-workflow__title { margin: 0; padding: 25px 22px 25px 0; color: #77777d; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-page--editorial .service-workflow ol { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; }
.service-page--editorial .service-workflow li { min-width: 0; min-height: 132px; padding: 23px 20px; border-left: 1px solid #d8d8dc; }
.service-page--editorial .service-workflow li > span { display: block; margin-bottom: 24px; color: var(--vd-brand); font: 650 10px/1 var(--vd-font); }
.service-page--editorial .service-workflow strong { display: block; margin-bottom: 7px; color: var(--vd-ink); font-size: 15px; }
.service-page--editorial .service-workflow small { display: block; color: #77777d; font-size: 12px; line-height: 1.45; }

.service-page--editorial .service-content-grid { grid-template-columns: minmax(0, 1fr) 332px; gap: 64px; margin-top: 76px; }
.service-page--editorial .service-article {
  max-width: 860px;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 17px;
  line-height: 1.72;
}
.service-page--editorial .service-article h2 { margin-bottom: 22px; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.08; letter-spacing: -.04em; }
.service-page--editorial .service-article h2:not(:first-child) { margin-top: 56px; padding-top: 24px; border-top: 1px solid #bfc0c5; }
.service-page--editorial .service-article h3 { margin-top: 36px; font-size: 22px; letter-spacing: -.025em; }
.service-page--editorial .service-article p,
.service-page--editorial .service-article li { color: #4f4f55; }
.service-page--editorial .service-article li { margin-bottom: 8px; }

.service-page--editorial .service-contact-box {
  top: 104px;
  padding: 27px !important;
  background: #fff !important;
  border: 1px solid #bfc0c5 !important;
  border-top: 4px solid var(--vd-brand) !important;
  border-radius: 0 !important;
}
.service-page--editorial .service-contact-box__label { margin-bottom: 30px; color: var(--vd-brand); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-page--editorial .service-contact-box h2 { font-size: 25px; letter-spacing: -.035em; }
.service-page--editorial .service-contact-box p:not(.service-contact-box__label) { margin-bottom: 22px; font-size: 14px; }
.service-page--editorial .service-contact-box .service-button { margin-bottom: 26px; }
.service-page--editorial .service-contact-box a { margin-bottom: 8px; color: var(--vd-ink); font-size: 15px; }
.service-page--editorial .service-contact-box a:hover { color: var(--vd-brand); }
.service-page--editorial .service-contact-box span { margin-top: 13px; font-size: 13px; }

.service-page--editorial .service-data {
  gap: 0;
  margin-top: 78px;
  padding: 0 !important;
  background: transparent !important;
  border: solid #bfc0c5 !important;
  border-width: 1px 0 !important;
  border-radius: 0 !important;
}
.service-page--editorial .service-data__block { min-width: 0; padding: 31px 30px 36px; border-left: 1px solid #d8d8dc; }
.service-page--editorial .service-data__block:first-child { padding-left: 0; border-left: 0; }
.service-page--editorial .service-data h2 { margin-bottom: 19px; color: var(--vd-brand); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.service-page--editorial .service-data ul { padding-left: 18px; color: #4f4f55; font-size: 14px; line-height: 1.65; }

.service-page--editorial .service-faq {
  margin-top: 84px;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}
.service-page--editorial .service-faq > h2 { max-width: 700px; margin-bottom: 34px; font-size: clamp(34px, 4vw, 52px); line-height: 1; letter-spacing: -.045em; }
.service-page--editorial .service-faq__list { border-color: #bfc0c5; }
.service-page--editorial .service-faq details { border-color: #bfc0c5; }
.service-page--editorial .service-faq summary { padding: 24px 54px 24px 0; font-size: 17px; font-weight: 620; }
.service-page--editorial .service-faq summary::after { top: 20px; color: var(--vd-ink); font-size: 23px; }
.service-page--editorial .service-faq details > div { padding-bottom: 26px; color: #5e5e64; }

.service-page--editorial .service-final-cta {
  position: relative;
  margin-top: 90px;
  padding: 54px 58px !important;
  color: #fff;
  background: var(--vd-dark) !important;
  border: 0 !important;
  border-radius: 0 !important;
}
.service-page--editorial .service-final-cta::before { position: absolute; top: 0; right: 0; left: 0; height: 4px; content: ''; background: var(--vd-brand); }
.service-page--editorial .service-final-cta h2 { margin-bottom: 13px; color: #fff; font-size: clamp(34px, 4.1vw, 54px); line-height: .99; letter-spacing: -.045em; }
.service-page--editorial .service-final-cta p:last-child { color: rgba(255, 255, 255, .55); }
.service-page--editorial .service-final-cta .service-button { flex: 0 0 auto; }

@media (max-width: 991px) {
  .service-page--editorial .service-hero { grid-template-columns: 1fr; }
  .service-page--editorial .service-hero__facts { display: block; }
  .service-page--editorial .service-hero__facts dl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-page--editorial .service-hero__facts dl > div { display: block; border-right: 1px solid rgba(255, 255, 255, .18); }
  .service-page--editorial .service-hero__facts > p { display: none; }
  .service-page--editorial .service-workflow { grid-template-columns: 1fr; }
  .service-page--editorial .service-workflow__title { padding-left: 0; }
  .service-page--editorial .service-content-grid { grid-template-columns: 1fr; gap: 38px; }
  .service-page--editorial .service-contact-box { position: static; }
}

@media (max-width: 700px) {
  .service-page--editorial { padding: 22px 14px 72px !important; }
  .service-page--editorial .service-breadcrumbs { margin-bottom: 16px; }
  .service-page--editorial .service-hero__content { padding: 24px 20px 30px; }
  .service-page--editorial .service-hero__marker { grid-template-columns: 1fr auto; margin-bottom: 38px; }
  .service-page--editorial .service-hero__marker span:nth-child(2) { display: none; }
  .service-page--editorial .service-hero h1 { font-size: clamp(34px, 10.5vw, 46px) !important; line-height: 1.01 !important; }
  .service-page--editorial .service-lead { margin-top: 20px; font-size: 16px; }
  .service-page--editorial .service-actions { display: grid; grid-template-columns: 1fr; }
  .service-page--editorial .service-hero__note { margin-top: 27px; }
  .service-page--editorial .service-hero__facts dl { grid-template-columns: 1fr; }
  .service-page--editorial .service-hero__facts dl > div { display: grid; min-height: 0; grid-template-columns: 1fr 1.15fr; padding: 20px !important; border-right: 0; }
  .service-page--editorial .service-hero__facts dt small { margin-bottom: 8px; }
  .service-page--editorial .service-workflow { margin-top: 24px; }
  .service-page--editorial .service-workflow ol { grid-template-columns: 1fr 1fr; }
  .service-page--editorial .service-workflow li { min-height: 128px; padding: 20px 15px; border-top: 1px solid #d8d8dc; }
  .service-page--editorial .service-workflow li:nth-child(odd) { border-left: 0; }
  .service-page--editorial .service-content-grid { margin-top: 54px; }
  .service-page--editorial .service-article { font-size: 16px; }
  .service-page--editorial .service-article h2 { font-size: 31px; }
  .service-page--editorial .service-contact-box { padding: 24px 20px !important; }
  .service-page--editorial .service-data { grid-template-columns: 1fr; margin-top: 58px; }
  .service-page--editorial .service-data__block,
  .service-page--editorial .service-data__block:first-child { padding: 25px 0; border-top: 1px solid #d8d8dc; border-left: 0; }
  .service-page--editorial .service-data__block:first-child { border-top: 0; }
  .service-page--editorial .service-faq { margin-top: 60px; }
  .service-page--editorial .service-faq > h2 { font-size: 36px; }
  .service-page--editorial .service-faq summary { padding: 21px 42px 21px 0; font-size: 15px; }
  .service-page--editorial .service-faq details > div { padding-right: 0; font-size: 15px; }
  .service-page--editorial .service-final-cta { align-items: flex-start; flex-direction: column; margin-top: 64px; padding: 38px 22px !important; }
  .service-page--editorial .service-final-cta h2 { font-size: 36px; }
  .service-page--editorial .service-final-cta .service-button { width: 100%; }
}

.privacy-page {
  max-width: 900px !important;
  padding: 96px 20px 120px !important;
  color: var(--vd-ink) !important;
  font-family: var(--vd-font) !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
}

.privacy-page h1,
.privacy-page h2 { color: var(--vd-ink) !important; font-family: var(--vd-font) !important; font-weight: 650 !important; letter-spacing: -.04em; }
.privacy-page h1 { font-size: clamp(48px, 6vw, 76px) !important; line-height: 1 !important; }
.privacy-page h2 { margin-top: 48px !important; font-size: 28px !important; }
.privacy-page a { color: var(--vd-brand) !important; }

@media (max-width: 1080px) {
  .site-header__inner { grid-template-columns: 150px 1fr auto; gap: 14px; }
  .site-nav__link { padding-inline: 10px; font-size: 13px; }
  .vd-hero__stage,
  .vd-hero__copy { min-height: 590px; }
  .vd-hero__copy { width: 66%; padding-left: 50px; }
  .vd-hero__visual { right: -8%; width: 56%; }
  .vd-region__copy { padding: 50px; }
}

@media (max-width: 900px) {
  .site-header__inner { display: flex; justify-content: space-between; }
  .site-nav-toggle { position: relative; display: inline-flex; }
  .site-header__contact { align-items: flex-end; }
  .site-header__phone { font-size: 14px; }
  .site-header__email { font-size: 10px; }
  .site-header__address { max-width: 124px; padding-left: 10px; font-size: 9px; white-space: normal; }
  .site-header__request { min-height: 40px; padding: 0 12px; }
  .site-header__request-label { display: none; }
  .site-header__request-icon,
  .site-header__request-mobile { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    max-height: calc(100vh - 95px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--vd-line);
    border-radius: 22px;
    box-shadow: var(--vd-shadow);
  }
  .site-header.is-nav-open .site-nav { display: flex; }
  .site-nav__link { justify-content: space-between; min-height: 48px; padding: 12px 14px; font-size: 16px; border-radius: 12px; }
  .site-nav__services { width: 100%; }
  .site-nav__dropdown { position: static; width: 100%; padding: 8px 0 4px; background: transparent; border: 0; border-radius: 0; box-shadow: none; transform: none; }
  .site-nav__dropdown > p { padding-inline: 14px; }
  .site-nav__service-grid { grid-template-columns: 1fr; }
  .site-nav__service-grid a { min-height: 44px; padding-inline: 14px; }

  .vd-section-intro,
  .vd-page-hero__grid { grid-template-columns: 1fr; gap: 24px; }
  .vd-hero__stage { min-height: 760px; }
  .vd-hero__copy { width: 100%; min-height: auto; padding: 64px 44px 0; }
  .vd-hero__lead { max-width: 600px; }
  .vd-hero__visual { right: -3%; bottom: -6%; width: 72%; }
  .vd-trust { grid-template-columns: 1fr; gap: 0; }
  .vd-trust__item { padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--vd-line); }
  .vd-trust__item:last-child { border-bottom: 0; }
  .vd-equipment__grid,
  .vd-region__panel,
  .vd-story { grid-template-columns: 1fr; }
  .vd-machine { min-height: 560px; }
  .vd-region__visual { min-height: 380px; }
  .vd-process__steps { grid-template-columns: repeat(2, 1fr); }
  .vd-process__step:nth-child(2) { border-right: 0; }
  .vd-process__step { border-bottom: 1px solid rgba(255, 255, 255, .18); }
  .vd-values { grid-template-columns: 1fr; }
  .vd-value { min-height: 240px; border-right: 0; }
  .vd-value h3 { margin-top: 48px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .vd-container { width: min(100% - 28px, 1240px); }
  .site-header { padding: 8px 14px; }
  .site-header__inner { min-height: 54px; }
  .site-logo img { width: 128px; }
  .vd-display { font-size: clamp(30px, 8.5vw, 36px); line-height: 1.04; }
  .vd-section-title { font-size: 42px; }
  .vd-section-intro > p { font-size: 17px; }
  .vd-hero { padding-top: 18px; }
  .vd-hero__stage { min-height: 830px; border-radius: 22px; }
  .vd-hero__copy { padding: 40px 24px 0; }
  .vd-hero__copy .vd-kicker { margin-bottom: 14px; font-size: 11px; letter-spacing: .08em; }
  .vd-hero__lead { margin-top: 20px; font-size: 16px; line-height: 1.48; }
  .vd-hero__actions { flex-direction: column; gap: 10px; margin-top: 26px; }
  .vd-hero__actions .vd-button { width: 100%; min-height: 50px; padding: 12px 18px; border-radius: 14px; font-size: 14px; }
  .vd-hero__actions .vd-button--ghost { background: rgba(255, 255, 255, .9); border-color: rgba(29, 29, 31, .16); }
  .vd-hero__visual { right: auto; bottom: 4px; left: 50%; width: 94%; transform: translateX(-50%); }
  .vd-hero__visual img { filter: drop-shadow(0 24px 30px rgba(0, 0, 0, .2)); }
  .vd-trust { padding-bottom: 52px; }
  .vd-services,
  .vd-equipment,
  .vd-process,
  .vd-brands { padding-block: 72px; }
  .vd-service-list { grid-template-columns: 1fr; }
  .vd-service-link,
  .vd-service-link:nth-child(even) { min-height: 126px; grid-template-columns: 32px 1fr auto; gap: 12px; padding: 24px 0; border-right: 0; }
  .vd-service-link__body strong { font-size: 22px; }
  .vd-machine { min-height: 570px; border-radius: 24px; }
  .vd-machine__copy { padding: 32px 28px; }
  .vd-machine__copy h3 { font-size: 38px; }
  .vd-machine__image,
  .vd-machine--dark .vd-machine__image { right: auto; bottom: -1%; left: 50%; width: 92%; max-height: 52%; transform: translateX(-50%); }
  .vd-machine:hover { box-shadow: none; transform: none; }
  .vd-machine:hover::after { opacity: 0; }
  .vd-machine:hover .vd-machine__image,
  .vd-machine--dark:hover .vd-machine__image { filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .2)); transform: translateX(-50%); }
  .vd-brands .vd-section-title { max-width: 100%; font-size: clamp(30px, 9vw, 38px); letter-spacing: -.04em; overflow-wrap: break-word; }
  .vd-process__steps { grid-template-columns: 1fr; }
  .vd-process__step,
  .vd-process__step:first-child { min-height: 210px; padding: 26px 0 26px 28px; border-right: 0; }
  .vd-process__step h3 { margin-top: 42px; }
  .vd-process__steps { border-top: 0; border-left: 1px solid rgba(255, 255, 255, .18); }
  .vd-process__steps::before { top: 0; right: auto; bottom: 0; left: -1px; width: 2px; height: auto; scale: 1 0; transform-origin: center top; }
  .vd-process__steps::after { top: 0; left: -5px; }
  .vd-process__step::after { display: none; }
  .vd-process.is-process-animated .vd-process__steps::before { animation-name: vd-process-line-reveal-y; }
  .vd-process.is-process-animated .vd-process__steps::after { animation-name: vd-process-runner-y; }
  .vd-region { padding-bottom: 72px; }
  .vd-region__panel { border-radius: 26px; }
  .vd-region__copy { padding: 42px 28px; }
  .vd-region__copy h2 { font-size: 44px; }
  .vd-region__visual { min-height: 400px; }
  .vd-region__legend { top: 16px; left: 16px; }
  .vd-region__caption { right: 16px; bottom: 16px; left: 16px; max-width: none; }
  .vd-page-hero { padding: 68px 0 48px; }
  .vd-page-hero h1 { font-size: 58px; }
  .vd-page-hero__lead { font-size: 17px; }
  .vd-editorial-image { min-height: 590px; border-radius: 26px; }
  .vd-editorial-image__copy { padding: 36px 28px; }
  .vd-editorial-image img { right: -15%; bottom: -3%; width: 95%; }
  .vd-story { gap: 34px; padding: 74px 0; }
  .vd-story__text { font-size: 16px; }
  .site-footer { padding: 14px; }
  .site-footer__inner { border-radius: 26px; }
  .site-footer__cta { align-items: flex-start; flex-direction: column; padding: 44px 28px; }
  .site-footer__cta h2 { font-size: 42px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 34px; padding: 44px 28px; }
  .site-footer__brand { grid-column: auto; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; padding: 22px 28px; }
  .vd-lead-modal { align-items: end; padding: 0; }
  .vd-lead-modal__dialog { width: 100%; max-height: calc(100dvh - 12px); border-radius: 22px 22px 0 0; }
  .vd-lead-modal__intro { padding: 34px 56px 10px 24px; }
  .vd-lead-modal__intro h2 { max-width: 380px; font-size: 34px; }
  .vd-lead-modal__intro > p:not(.vd-kicker) { margin-top: 16px; font-size: 14px; }
  .vd-lead-modal__close { top: 14px; right: 14px; }
  .vd-lead-form { gap: 14px; padding: 20px 24px max(28px, env(safe-area-inset-bottom)); }
  .vd-lead-success { padding: 42px 24px max(36px, env(safe-area-inset-bottom)); }
  .vd-lead-success h3 { font-size: 34px; }
  .contact-page { padding-top: 58px !important; }
  .service-page { padding-top: 28px !important; }
}

@media (max-width: 520px) {
  .site-header { padding-inline: 10px; }
  .site-header__actions { max-width: 218px; flex-wrap: wrap; gap: 5px; }
  .site-logo img { width: 102px; }
  .site-header__phone { font-size: 12.5px; }
  .site-header__email { font-size: 9.5px; }
  .site-header__address { order: 4; width: 100%; max-width: none; align-items: flex-end; padding: 4px 0 0; border-top: 1px solid var(--vd-line); border-left: 0; font-size: 8.5px; }
  .site-header__address-label { display: none; }
  .site-header__request { width: 40px; padding: 0; }
  .site-header__request-mobile { display: none; }
  .site-nav-toggle { width: 42px; height: 42px; }
}

@media (max-width: 350px) {
  .site-logo img { width: 88px; }
  .site-header__phone { font-size: 11.5px; }
  .site-header__email { font-size: 9px; }
  .site-header__address { display: none; }
  .site-header__request,
  .site-nav-toggle { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .vd-machine,
  .vd-machine__copy,
  .vd-machine__image {
    animation: none !important;
    clip-path: none !important;
    opacity: 1 !important;
    scale: 1 !important;
    translate: 0 0 !important;
  }
  .vd-machine:hover,
  .vd-machine:hover .vd-machine__image { transform: none !important; }
  .vd-process .vd-section-title,
  .vd-process .vd-section-intro > p,
  .vd-process__steps::before,
  .vd-process__steps::after,
  .vd-process__step,
  .vd-process__step > span,
  .vd-process__step::after {
    animation: none !important;
    clip-path: none !important;
    opacity: 1 !important;
    scale: 1 !important;
    translate: 0 0 !important;
  }
}
