/*
 * Global site header.
 */

.vt-site-header {
  --vt-header-primary: var(--vt-color-brand);
  --vt-site-header-height: 81px;

  position: relative;
  z-index: 20;
  min-height: 81px;
  background: rgb(255 255 255 / 0.8);
  border-bottom: 1px solid rgb(241 245 249 / 0.5);
  backdrop-filter: blur(6px);
}

.vt-site-header__container {
  --vt-container-max: 1280px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: var(--vt-space-6);
}

.vt-site-header__logo {
  flex: 0 0 auto;
  width: 5.1875rem; /* 83px — Figma 286:2766 */
  max-width: 34vw;
}

.vt-site-header__logo img {
  display: block;
  width: 100%;
  height: 3rem; /* 48px */
  max-width: 5.1875rem;
  max-height: 3rem;
  object-fit: contain;
  object-position: left center;
}

.vt-site-header__site-name {
  color: var(--vt-color-text);
  font-size: var(--vt-font-size-lg);
  font-weight: var(--vt-font-weight-bold);
  line-height: var(--vt-line-height-snug);
  text-decoration: none;
}

.vt-site-header__nav {
  min-width: 0;
}

.vt-site-header__menu {
  display: flex;
  align-items: center;
  gap: var(--vt-space-8);
  margin: 0;
  padding: 0;
  list-style: none;
}

.vt-site-header__menu a {
  display: flex;
  align-items: center;
  min-height: 48px;
  color: var(--vt-color-neutral-800);
  font-size: var(--vt-text-nav-size);
  font-weight: var(--vt-font-weight-medium);
  line-height: var(--vt-text-nav-line-height);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.vt-site-header__menu a:hover,
.vt-site-header__menu a:focus,
.vt-site-header__menu .current-menu-item > a,
.vt-site-header__menu .current-menu-ancestor > a,
.vt-site-header__menu .current_page_item > a {
  color: var(--vt-header-primary);
}

.vt-site-header__menu .current-menu-item > a,
.vt-site-header__menu .current-menu-ancestor > a,
.vt-site-header__menu .current_page_item > a {
  border-bottom-color: var(--vt-header-primary);
}

.vt-site-header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.vt-icon {
  display: block;
  flex-shrink: 0;
  color: inherit;
}

.vt-site-header__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--vt-space-4);
  padding: var(--vt-space-2);
  color: var(--vt-color-neutral-800);
  text-decoration: none;
  border-radius: var(--vt-radius-full);
}

.vt-site-header__search:hover,
.vt-site-header__search:focus {
  color: var(--vt-header-primary);
}

.vt-site-header__search-icon {
  width: 20px;
  height: 20px;
}

.vt-site-header__language,
.vt-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: var(--vt-space-1);
  padding: 7px 13px;
  color: var(--vt-color-neutral-800);
  font-size: var(--vt-text-small-size);
  font-weight: var(--vt-font-weight-medium);
  line-height: var(--vt-text-small-line-height);
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--vt-color-neutral-100);
  border-radius: var(--vt-radius-full);
}

.vt-site-header__language:hover,
.vt-site-header__language:focus {
  color: var(--vt-header-primary);
  text-decoration: none;
}

.vt-site-header__language-icon {
  width: 16px;
  height: 16px;
}

.vt-site-header__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 24px;
  margin: 0;
  padding: 0;
  color: var(--vt-color-neutral-800);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.vt-site-header__menu-toggle:hover,
.vt-site-header__menu-toggle:focus {
  color: var(--vt-header-primary);
}

.vt-site-header__menu-toggle:focus-visible {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-site-header__menu-toggle-icon {
  width: 20px;
  height: 24px;
}

/*
 * Fullscreen mobile navigation.
 */

.vt-mobile-menu {
  --vt-header-primary: var(--vt-color-brand);
  --vt-mobile-language-open-bg: #d5b5ff;

  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding:
    max(env(safe-area-inset-top), 0px)
    max(env(safe-area-inset-right), 0px)
    max(env(safe-area-inset-bottom), 0px)
    max(env(safe-area-inset-left), 0px);
  overflow: hidden auto;
  color: #363636;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--vt-motion-duration-fast) var(--vt-motion-ease),
    visibility var(--vt-motion-duration-fast) var(--vt-motion-ease);
}

.vt-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vt-mobile-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  min-height: 100%;
  padding: 30px;
}

.vt-mobile-menu__toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  min-height: 40px;
}

.vt-mobile-menu__close {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  color: var(--vt-color-neutral-800);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.vt-mobile-menu__close:hover,
.vt-mobile-menu__close:focus {
  color: var(--vt-header-primary);
}

.vt-mobile-menu__close:focus-visible {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-mobile-menu__close-icon {
  width: 20px;
  height: 20px;
}

.vt-mobile-menu__language {
  width: 100%;
}

.vt-mobile-menu__language-control {
  position: relative;
  width: 100%;
}

.vt-mobile-menu__language-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 40px;
  margin: 0;
  padding: 4px 25px;
  color: #363636;
  font-family: var(--vt-font-sans);
  font-size: 1.125rem;
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.5556;
  text-align: left;
  background: #ffffff;
  border: 1px solid #cacaca;
  border-radius: 4px;
  cursor: pointer;
}

.vt-mobile-menu__language-trigger:hover,
.vt-mobile-menu__language-trigger:focus {
  color: #363636;
}

.vt-mobile-menu__language-trigger:focus-visible {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-mobile-menu__language-trigger.is-open,
.vt-mobile-menu__language-trigger.is-open:hover,
.vt-mobile-menu__language-trigger.is-open:focus {
  color: #363636;
  background: var(--vt-mobile-language-open-bg);
}

.vt-mobile-menu__language-current {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vt-mobile-menu__language-chevron {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: #363636;
  transition: transform var(--vt-motion-duration-fast) var(--vt-motion-ease);
}

.vt-mobile-menu__language-trigger.is-open .vt-mobile-menu__language-chevron {
  transform: rotate(180deg);
}

.vt-mobile-menu__language-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  z-index: 1;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid #cacaca;
  border-radius: 4px;
  box-shadow: var(--vt-shadow-sm);
}

.vt-mobile-menu__language-option {
  margin: 0;
}

.vt-mobile-menu__language-link {
  display: block;
  padding: 8px 25px;
  color: #363636;
  font-family: var(--vt-font-sans);
  font-size: 1.125rem;
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.5556;
  text-decoration: none;
}

.vt-mobile-menu__language-link:hover,
.vt-mobile-menu__language-link:focus {
  color: var(--vt-header-primary);
  background: var(--vt-color-neutral-50);
  text-decoration: none;
}

.vt-mobile-menu__language-link:focus-visible {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: -2px;
}

.vt-mobile-menu__language-link[aria-current="true"] {
  font-weight: var(--vt-font-weight-medium);
}

.vt-mobile-menu__nav {
  width: 100%;
  padding-block: 15px;
}

.vt-mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vt-mobile-menu__list > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding-block: 15px;
  border-bottom: 2px solid transparent;
}

.vt-mobile-menu__list a {
  display: block;
  width: 100%;
  color: #363636;
  font-family: var(--vt-font-sans);
  font-size: 1.125rem;
  font-weight: var(--vt-font-weight-medium);
  line-height: 1.5556;
  text-align: center;
  text-decoration: none;
}

.vt-mobile-menu__list a:hover,
.vt-mobile-menu__list a:focus {
  color: #363636;
}

.vt-mobile-menu__list a:focus-visible {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-mobile-menu__list .current-menu-item,
.vt-mobile-menu__list .current-menu-ancestor,
.vt-mobile-menu__list .current_page_item,
.vt-mobile-menu__list .current_page_ancestor {
  border-bottom-color: var(--vt-header-primary);
}

body.vt-mobile-menu-open {
  overflow: hidden;
}

@media (min-width: 1025px) {
  .vt-mobile-menu,
  .vt-mobile-menu.is-open {
    display: none;
  }
}

@media (max-width: 1024px) {
  .vt-site-header__container {
    --vt-container-padding: 41px;

    flex-wrap: nowrap;
    min-height: 80px;
    padding-block: 0;
  }

  .vt-site-header {
    min-height: 81px;
  }

  .vt-site-header__logo {
    width: 170px;
    max-width: 170px;
  }

  .vt-site-header__logo img {
    max-width: 170px;
    max-height: 48px;
  }

  .vt-site-header__nav {
    display: none;
  }

  .vt-site-header__language {
    display: none;
  }

  .vt-site-header__menu-toggle {
    display: inline-flex;
  }
}

/*
 * Button component.
 */

.vt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--vt-space-2);
  min-height: 2.75rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--vt-radius-full);
  font-family: var(--vt-font-sans);
  font-size: var(--vt-font-size-sm);
  font-weight: var(--vt-font-weight-semibold);
  line-height: var(--vt-line-height-tight);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color var(--vt-motion-duration-fast) var(--vt-motion-ease),
    border-color var(--vt-motion-duration-fast) var(--vt-motion-ease),
    color var(--vt-motion-duration-fast) var(--vt-motion-ease),
    box-shadow var(--vt-motion-duration-fast) var(--vt-motion-ease);
}

.vt-button:hover,
.vt-button:focus {
  text-decoration: none;
}

.vt-button--primary {
  color: var(--vt-color-text-inverse);
  background: var(--vt-color-brand);
  border-color: var(--vt-color-brand);
}

.vt-button--primary:hover,
.vt-button--primary:focus {
  color: var(--vt-color-text-inverse);
  background: var(--vt-color-brand-dark);
  border-color: var(--vt-color-brand-dark);
}

.vt-button--secondary {
  color: var(--vt-color-brand);
  background: var(--vt-color-brand-soft);
  border-color: var(--vt-color-brand-soft);
}

.vt-button--secondary:hover,
.vt-button--secondary:focus {
  color: var(--vt-color-brand-dark);
  background: var(--vt-color-neutral-100);
  border-color: var(--vt-color-neutral-100);
}

.vt-button--outline {
  color: var(--vt-color-brand);
  background: transparent;
  border-color: var(--vt-color-brand);
}

.vt-button--outline:hover,
.vt-button--outline:focus {
  color: var(--vt-color-text-inverse);
  background: var(--vt-color-brand);
  border-color: var(--vt-color-brand);
}

.vt-button--text {
  min-height: 0;
  padding: 0;
  color: var(--vt-color-brand);
  background: transparent;
  border-color: transparent;
  border-radius: 0;
}

.vt-button--text:hover,
.vt-button--text:focus {
  color: var(--vt-color-brand-dark);
}

/*
 * Breadcrumb component.
 */

.vt-breadcrumb {
  color: var(--vt-color-text-muted);
  font-size: var(--vt-text-small-size);
  font-weight: var(--vt-font-weight-regular);
  line-height: var(--vt-text-small-line-height);
}

.vt-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vt-breadcrumb__item {
  display: inline-flex;
  align-items: center;
}

.vt-breadcrumb__item:not(:last-child) {
  padding-right: var(--vt-space-3);
}

.vt-breadcrumb__link {
  color: var(--vt-color-link);
  text-decoration: none;
}

.vt-breadcrumb__link:hover,
.vt-breadcrumb__link:focus {
  color: var(--vt-color-link-hover);
  text-decoration: underline;
}

.vt-breadcrumb__current,
.vt-breadcrumb__text {
  color: var(--vt-color-text-muted);
}

.vt-breadcrumb__separator {
  display: inline-flex;
  align-items: center;
  padding-inline: var(--vt-space-1);
  color: var(--vt-color-neutral-500);
}

.vt-breadcrumb__separator .vt-icon {
  width: 14px;
  height: 14px;
}

.vt-breadcrumb__item:not(:first-child) .vt-breadcrumb__link,
.vt-breadcrumb__item:not(:first-child) .vt-breadcrumb__current,
.vt-breadcrumb__item:not(:first-child) .vt-breadcrumb__text {
  padding-left: var(--vt-space-2);
}

/*
 * Shared card styles.
 */

.vt-card {
  min-width: 0;
  overflow: hidden;
  background: var(--vt-color-surface);
  border: 1px solid var(--vt-color-border);
  border-radius: var(--vt-radius-lg);
  box-shadow: var(--vt-shadow-sm);
}

.vt-card__media {
  display: block;
  overflow: hidden;
  background: var(--vt-color-surface-alt);
  text-decoration: none;
}

.vt-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.vt-card__placeholder {
  display: grid;
  min-height: 14rem;
  place-items: center;
  padding: var(--vt-space-6);
  color: var(--vt-color-text-muted);
  font-size: var(--vt-font-size-sm);
  background: var(--vt-color-surface-alt);
}

.vt-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--vt-space-3);
  min-width: 0;
  padding: var(--vt-space-5);
}

.vt-card__eyebrow {
  margin: 0;
  color: var(--vt-color-brand);
  font-size: var(--vt-font-size-xs);
  font-weight: var(--vt-font-weight-semibold);
  line-height: var(--vt-line-height-tight);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vt-card__title {
  margin: 0;
  min-width: 0;
  color: var(--vt-color-text);
  font-size: var(--vt-font-size-lg);
  line-height: var(--vt-line-height-snug);
}

.vt-card__title a {
  color: inherit;
  text-decoration: none;
}

.vt-card__title a:hover,
.vt-card__title a:focus {
  color: var(--vt-color-link-hover);
}

.vt-card__description {
  margin: 0;
  min-width: 0;
  color: var(--vt-color-text-muted);
  font-size: var(--vt-font-size-sm);
  line-height: var(--vt-line-height-base);
}

.vt-card__action {
  margin-top: auto;
  padding-top: var(--vt-space-2);
}

/*
 * Product card.
 */

.vt-product-card {
  height: 100%;
  border: 1px solid rgb(241 245 249 / 0.4);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.03);
}

.vt-product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  background: var(--vt-color-neutral-0);
}

.vt-product-card__image {
  display: block;
  width: 100%;
  aspect-ratio: auto;
  height: 238px;
  object-fit: contain;
  object-position: center;
}

.vt-product-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 238px;
  background: var(--vt-color-neutral-0);
}

.vt-product-card__body {
  gap: 20px;
  min-height: 0;
  padding: 20px;
}

.vt-product-card__title {
  color: var(--vt-color-neutral-800);
  font-size: var(--vt-text-card-size);
  font-weight: var(--vt-font-weight-bold);
  line-height: var(--vt-text-card-line-height);
}

.vt-product-card__action {
  margin-top: 0;
  padding-top: 20px;
  border-top: 1px solid rgb(241 245 249 / 0.3);
}

.vt-product-card__description {
  display: none;
}

/*
 * News card.
 */

.vt-news-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
  height: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.vt-news-card__media {
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  text-decoration: none;
}

.vt-news-card__image,
.vt-news-card__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 390 / 223;
  object-fit: cover;
}

.vt-news-card__placeholder {
  background: #f1f5f9;
}

.vt-news-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.vt-news-card__category {
  color: var(--vt-color-brand);
  font-size: 0.75rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 1rem;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
}

.vt-news-card__separator {
  color: rgb(100 116 139 / 0.5);
  font-size: 0.75rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 1rem;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
}

.vt-news-card__date {
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: var(--vt-font-weight-regular);
  line-height: 1rem;
  text-transform: uppercase;
}

.vt-news-card__title {
  margin: 0;
  min-width: 0;
}

.vt-news-card__title-link {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 1.75rem;
  text-decoration: none;
}

.vt-news-card__title-link:hover,
.vt-news-card__title-link:focus {
  color: var(--vt-color-brand);
  text-decoration: none;
}

.vt-news-card__title-link:focus-visible {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-news-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0;
  color: #64748b;
  font-size: var(--vt-font-size-base);
  line-height: 1.4rem;
}

/*
 * Project card ? Projects page (Figma 61:688).
 */

.vt-project-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  width: 100%;
  height: auto;
  padding-block: 0.625rem;
  cursor: default;
}

.vt-project-card__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 590 / 291.98;
  border-radius: 1rem;
  box-shadow:
    0 1px 3px 0 rgb(0 0 0 / 0.1),
    0 1px 2px -1px rgb(0 0 0 / 0.1);
  background: rgb(0 0 0 / 0.05);
  pointer-events: none;
}

.vt-project-card__image,
.vt-project-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vt-project-card__placeholder {
  background: #e2e8f0;
}

.vt-project-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.vt-project-card__title {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  margin: 0;
  color: #000;
  font-family: var(--vt-font-heading);
  font-size: 1.25rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 1.75rem;
  cursor: default;
}

/* Tender package table — scoped to project cards only.
 * Border + top inset live on the wrapper: padding-top on <table>
 * with border-collapse:collapse does not create visible space. */
.vt-project-card__packages {
  --vt-project-accent: #0c508c;
  width: 100%;
  margin: 0;
  padding-top: 1.0625rem; /* 17px — Figma HorizontalBorder pt */
  border-top: 1px solid var(--vt-project-accent);
}

.vt-project-card__table {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  background: transparent;
  table-layout: fixed;
  color: #1e293b;
  font-family: var(--vt-font-sans);
}

.vt-project-card__table caption {
  padding: 0;
  caption-side: top;
}

.vt-project-card__table thead,
.vt-project-card__table tbody,
.vt-project-card__table tr {
  background: transparent;
  border: 0;
}

.vt-project-card__th,
.vt-project-card__td {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  vertical-align: top;
  text-align: left;
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}

.vt-project-card__th {
  /* Label box ends at y=33; first data at y=46 → 13px gap (Figma 842:3071). */
  padding-bottom: 0.8125rem;
  color: var(--vt-project-accent, #0c508c);
  font-size: 0.75rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 1rem;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
}

.vt-project-card__th--package,
.vt-project-card__td--package {
  width: 75%;
  padding-right: 1rem; /* 16px column gutter */
}

.vt-project-card__th--value,
.vt-project-card__td--value {
  width: 25%;
}

.vt-project-card--hide-values .vt-project-card__th--package,
.vt-project-card--hide-values .vt-project-card__td--package {
  width: 100%;
  padding-right: 0;
}

.vt-project-card__td {
  /* Data row1 ends y=63; row2 starts y=75 → 12px gap (Figma 842:3071). */
  padding-bottom: 0.75rem;
  color: #1e293b;
  font-size: 1rem;
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.0625rem;
  height: auto;
}

.vt-project-card__row:last-child .vt-project-card__td {
  padding-bottom: 0;
}

/*
 * Partner logo.
 */

.vt-partner-logo {
  height: 100%;
}

.vt-partner-logo__link,
.vt-partner-logo__content {
  display: grid;
  min-width: 0;
  min-height: 7rem;
  place-items: center;
  padding: var(--vt-space-5);
  color: var(--vt-color-text);
  background: var(--vt-color-surface);
  border: 1px solid var(--vt-color-border);
  border-radius: var(--vt-radius-lg);
  text-align: center;
  text-decoration: none;
}

.vt-partner-logo__link:hover,
.vt-partner-logo__link:focus {
  border-color: var(--vt-color-brand-light);
  box-shadow: var(--vt-shadow-sm);
}

.vt-partner-logo__image {
  width: 100%;
  max-width: 10rem;
  max-height: 4.5rem;
  object-fit: contain;
}

.vt-partner-logo__text {
  color: var(--vt-color-text);
  font-size: var(--vt-font-size-sm);
  font-weight: var(--vt-font-weight-semibold);
  line-height: var(--vt-line-height-snug);
}

.vt-partner-logo--home {
  width: 100%;
  height: auto;
}

.vt-partner-logo--home .vt-partner-logo__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 100%;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.vt-partner-logo--home .vt-partner-logo__image {
  width: auto;
  height: auto;
  max-width: none;
  max-height: 5.625rem;
  object-fit: contain;
}

/*
 * Products page and product category cards.
 */

.vt-products-page {
  --vt-products-primary: var(--vt-color-brand-dark);
  --vt-container-max: 1280px;
  --vt-container-padding: clamp(1rem, 5.55vw, 5rem);
  --vt-product-card-col-width: 287px;
  --vt-product-card-col-gap: 24px;
  --vt-product-card-image-ratio: 287 / 238.5;
}

.vt-product-category-page {
  --vt-container-padding: 30px;
}

.vt-products-page .vt-container {
  padding-inline: clamp(var(--vt-space-4), 2.08vw, 1.875rem);
}

.vt-page-hero--products {
  position: relative;
  min-height: 399px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 0;
  color: var(--vt-color-text-inverse);
  background: linear-gradient(90deg, var(--vt-products-primary) 0%, rgb(10 81 142 / 0.8) 100%);
}

.vt-page-hero--products::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: var(--vt-page-hero-overlay-gradient);
  opacity: 0.9;
}

.vt-page-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vt-page-hero--products .vt-page-hero__container {
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: center;
  min-height: 399px;
  text-align: center;
}

.vt-page-hero--products .vt-page-hero__content {
  align-items: center;
}

.vt-page-hero--products .vt-page-hero__title {
  max-width: 860px;
  margin: 0;
  color: var(--vt-color-text-inverse);
  font-size: clamp(3rem, 5vw, var(--vt-text-hero-size));
  font-weight: var(--vt-font-weight-bold);
  line-height: var(--vt-text-hero-line-height);
  letter-spacing: var(--vt-text-hero-letter-spacing);
}

.vt-products-breadcrumb {
  display: flex;
  min-height: 68px;
  align-items: center;
  padding-block: var(--vt-space-6);
  background: #f9faff;
}

.vt-products-breadcrumb .vt-breadcrumb {
  font-size: var(--vt-text-small-size);
  line-height: var(--vt-text-small-line-height);
}

.vt-products-breadcrumb .vt-breadcrumb__link,
.vt-products-breadcrumb .vt-breadcrumb__text {
  color: var(--vt-color-neutral-500);
}

.vt-products-breadcrumb .vt-breadcrumb__current {
  color: var(--vt-products-primary);
}

.vt-products-breadcrumb .vt-breadcrumb__separator {
  color: var(--vt-color-neutral-500);
}

.vt-products-section {
  --vt-container-max: 80rem; /* 1280px — Figma 35:498 */
  --vt-container-padding: 1.875rem; /* 30px side gutter */
  padding-block: 3.75rem; /* 60px — Figma 35:98 */
}

.vt-products-section__title {
  margin: 0;
  color: var(--vt-color-neutral-800);
  font-size: var(--vt-text-section-size);
  font-weight: var(--vt-font-weight-bold);
  line-height: var(--vt-text-section-line-height);
  letter-spacing: var(--vt-text-section-letter-spacing);
}

.vt-products-section__empty {
  margin: 0;
  color: var(--vt-color-text-muted);
  text-align: center;
}

.vt-products-section__grid {
  column-gap: 2.5rem; /* 40px — Figma 154:1548 */
  row-gap: 2.5rem;
}

.vt-product-category-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 1rem; /* 16px — Figma 250:1162 */
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.04);
}

.vt-product-category-card__link {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.vt-product-category-card__link:hover .vt-product-category-card__title,
.vt-product-category-card__link:focus-visible .vt-product-category-card__title {
  color: var(--vt-color-brand);
}

.vt-product-category-card__link:focus-visible {
  outline: 2px solid var(--vt-color-focus, #3785c5);
  outline-offset: 2px;
}

.vt-product-category-card__media {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: 17.1875rem; /* 275px — Figma 154:1598 */
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--vt-color-surface-alt);
  border-radius: 0;
}

.vt-product-category-card__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.vt-product-category-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  place-items: center;
  padding: 1.5rem;
  color: var(--vt-color-text-muted);
  font-size: var(--vt-font-size-sm);
  text-align: center;
  background: var(--vt-color-surface-alt);
}

.vt-product-category-card__body {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  min-width: 0;
  padding: 1.875rem 1.25rem; /* 30px 20px — Figma 802:2163 */
  text-align: center;
}

.vt-product-category-card__title {
  margin: 0;
  color: #1e293b;
  font-family: var(--vt-font-heading);
  font-size: 1.25rem; /* 20px — Figma 154:1604 */
  font-weight: var(--vt-font-weight-bold);
  line-height: 1.75rem; /* 28px */
  text-align: center;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .vt-products-section {
    padding-block: 3rem;
  }

  .vt-product-category-card__media {
    height: auto;
    aspect-ratio: 380 / 275;
  }
}

@media (max-width: 768px) {
  .vt-products-section {
    --vt-container-padding: var(--vt-space-4, 1rem);
    padding-block: 2.5rem;
  }

  .vt-products-section__grid {
    column-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .vt-product-category-card__body {
    padding: 1.5rem 1.25rem;
  }
}

/*
 * CTA banner (product catalog — Figma 35:156).
 */

.vt-cta-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-block: 96px;
  color: var(--vt-color-text-inverse);
  background: linear-gradient(90deg, #0a518e 0%, #337cc0 49.519%, #2bc0d0 93.269%);
}

.vt-cta-banner__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  pointer-events: none;
}

.vt-cta-banner__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--vt-cta-banner-pattern);
  background-position: top left;
  background-repeat: repeat;
  background-size: 67px 100px;
  opacity: 0.15;
  pointer-events: none;
}

.vt-cta-banner .vt-cta-banner__container.vt-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 30px;
  gap: 32px;
  text-align: center;
}

.vt-cta-banner__title {
  max-width: 100%;
  margin: 0;
  color: #ffffff;
  font-family: var(--vt-font-sans);
  font-size: 48px;
  font-weight: var(--vt-font-weight-bold);
  line-height: 66px;
  letter-spacing: 0;
  text-align: center;
}

.vt-cta-banner__button {
  width: auto;
  max-width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 16px 40px;
  color: #0c508c;
  background: #ffffff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgb(0 0 0 / 0.12);
  font-family: var(--vt-font-sans);
  font-size: 18px;
  font-weight: var(--vt-font-weight-bold);
  line-height: 28px;
}

.vt-cta-banner__button:hover {
  color: #083f6e;
  background: #ffffff;
  box-shadow: 0 10px 18px rgb(0 0 0 / 0.16);
}

.vt-cta-banner__button:focus {
  color: #0c508c;
  background: #ffffff;
  outline: none;
}

.vt-cta-banner__button:focus-visible {
  color: #0c508c;
  background: #ffffff;
  outline: 2px solid #ffffff;
  outline-offset: 3px;
  box-shadow:
    0 8px 15px rgb(0 0 0 / 0.12),
    0 0 0 3px rgb(12 80 140 / 0.45);
}

/*
 * Global site footer — Figma 35:293.
 */

.vt-site-footer {
  --vt-footer-primary: #0c508c;
  --vt-footer-text: rgb(255 255 255 / 0.7);

  box-sizing: border-box;
  padding-block: 40px;
  color: var(--vt-footer-text);
  background: var(--vt-footer-primary);
  font-family: var(--vt-font-sans);
}

.vt-site-footer *,
.vt-site-footer *::before,
.vt-site-footer *::after {
  box-sizing: border-box;
}

.vt-site-footer .vt-site-footer__container.vt-container {
  --vt-container-max: 1280px;

  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 30px;
}

.vt-site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  width: 100%;
}

.vt-site-footer__brand {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  gap: 1.5rem; /* minimum gap so logo/contact never collide */
}

.vt-site-footer__logo-link {
  display: block;
  flex: 0 0 auto;
  width: 128px;
  height: 71px;
  max-width: 100%;
  text-decoration: none;
  line-height: 0;
}

.vt-site-footer__logo-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.vt-site-footer__logo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: left center;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

.vt-site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--vt-footer-text);
  font-style: normal;
  font-size: 14px;
  font-weight: var(--vt-font-weight-regular);
  line-height: 20px;
}

.vt-site-footer__contact span,
.vt-site-footer__contact a {
  display: block;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.vt-site-footer a {
  color: var(--vt-footer-text);
  text-decoration: none;
}

.vt-site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.vt-site-footer a:focus {
  color: #ffffff;
  outline: none;
}

.vt-site-footer a:focus-visible {
  color: #ffffff;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  text-decoration: underline;
}

.vt-site-footer__nav {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: start;
}

.vt-site-footer__heading {
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: var(--vt-font-weight-bold);
  line-height: 24px;
}

.vt-site-footer__list,
.vt-site-footer__legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vt-site-footer__list {
  width: 100%;
  font-size: 14px;
  font-weight: var(--vt-font-weight-regular);
  line-height: 20px;
}

.vt-site-footer__list li,
.vt-site-footer__legal-list li {
  margin: 0;
  padding: 0;
}

.vt-site-footer__list a {
  display: inline;
  overflow-wrap: anywhere;
}

.vt-site-footer__nav--social .vt-site-footer__social-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vt-site-footer__nav--social .vt-site-footer__social-item {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}

.vt-site-footer__nav--social .vt-site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  line-height: 0;
  opacity: 1;
}

.vt-site-footer__nav--social span.vt-site-footer__social-link {
  cursor: default;
}

.vt-site-footer__nav--social a.vt-site-footer__social-link {
  transition: opacity 0.2s ease;
}

.vt-site-footer__nav--social a.vt-site-footer__social-link:hover,
.vt-site-footer__nav--social a.vt-site-footer__social-link:focus {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.75;
  outline: none;
}

.vt-site-footer__nav--social a.vt-site-footer__social-link:focus-visible {
  color: #ffffff;
  text-decoration: none;
  opacity: 1;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.vt-site-footer__nav--social .vt-site-footer__social-icon {
  display: block;
  width: 30px;
  height: 30px;
  max-width: 30px;
  max-height: 30px;
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: left center;
}

.vt-site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding-top: 33px;
  border-top: 1px solid rgb(255 255 255 / 0.2);
}

.vt-site-footer__copyright {
  margin: 0;
  padding: 0;
  color: var(--vt-footer-text);
  font-size: 12px;
  font-weight: var(--vt-font-weight-regular);
  line-height: 16px;
}

.vt-site-footer__legal-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 12px;
  font-weight: var(--vt-font-weight-regular);
  line-height: 16px;
}

@media (max-width: 1024px) {
  .vt-site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .vt-site-footer .vt-site-footer__container.vt-container {
    padding-inline: 20px;
    gap: 32px;
  }

  .vt-site-footer__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .vt-site-footer__brand {
    justify-content: flex-start;
    gap: 1.5rem;
  }

  .vt-site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
  }

  .vt-site-footer__legal-list {
    gap: 16px;
  }
}

@media (max-width: 1024px) {
  .vt-product-category-card {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .vt-page-hero--products,
  .vt-page-hero--products .vt-page-hero__container {
    min-height: 320px;
  }

  .vt-cta-banner {
    padding-block: 56px;
  }

  .vt-cta-banner .vt-cta-banner__container.vt-container {
    padding-inline: 20px;
    gap: 24px;
  }

  .vt-cta-banner__title {
    font-size: clamp(1.75rem, 7.5vw, 1.875rem);
    line-height: 1.35;
  }

  .vt-cta-banner__button {
    padding-inline: clamp(1.5rem, 6vw, 2.5rem);
  }
}

@media (min-width: 769px) and (max-width: 1279px) {
  .vt-cta-banner {
    padding-block: 72px;
  }

  .vt-cta-banner__title {
    font-size: clamp(2.25rem, 3.5vw, 2.5rem);
    line-height: 1.4;
  }
}

/*
 * Product line selector.
 */

.vt-product-category-page .vt-products-breadcrumb {
  background-color: #f9faff;
}

.vt-product-category-page .vt-product-line-selector-section {
  padding-block: var(--vt-space-20);
  background-color: #ffffff;
}

.vt-product-line-selector__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vt-product-line-selector__list-item {
  flex: 0 0 200px;
  max-width: 200px;
}

.vt-product-line-selector__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.vt-product-line-selector__item:hover,
.vt-product-line-selector__item:focus {
  color: inherit;
  text-decoration: none;
}

.vt-product-line-selector__item:focus-visible .vt-product-line-selector__icon-box {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-product-line-selector__icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  padding: 30px;
  color: var(--vt-products-primary, var(--vt-color-brand));
  background: var(--vt-color-surface);
  border: 1px solid var(--vt-products-primary, var(--vt-color-brand));
  border-radius: 20px;
  transition:
    color var(--vt-motion-duration-fast) var(--vt-motion-ease),
    background-color var(--vt-motion-duration-fast) var(--vt-motion-ease),
    border-color var(--vt-motion-duration-fast) var(--vt-motion-ease);
}

.vt-product-line-selector__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
}

.vt-product-line-selector__svg {
  display: block;
  width: 100px;
  height: 100px;
}

.vt-product-line-selector__label {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  color: var(--vt-color-neutral-800);
  font-size: var(--vt-text-card-size);
  font-weight: var(--vt-font-weight-regular);
  line-height: var(--vt-text-card-line-height);
  text-align: center;
  word-break: break-word;
}

.vt-product-line-selector__item.is-active .vt-product-line-selector__icon-box {
  color: var(--vt-color-text-inverse);
  background: var(--vt-products-primary, var(--vt-color-brand));
  border-color: var(--vt-products-primary, var(--vt-color-brand));
}

@media (max-width: 768px) {
  .vt-product-line-selector__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: var(--vt-space-2);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .vt-product-line-selector__list-item {
    scroll-snap-align: start;
  }
}

/*
 * Product line content panels.
 */

.vt-product-category-page .vt-product-line-content-section {
  padding-block: var(--vt-space-20);
  background-color: #f9faff;
}

.vt-product-line-panel {
  padding-block: 0;
}

.vt-product-category-page .vt-product-line-panel .vt-stack--lg {
  gap: var(--vt-space-10);
}

.vt-product-line-panel[hidden] {
  display: none;
}

.vt-product-line-section__title {
  margin: 0;
  color: var(--vt-color-neutral-800);
  font-size: var(--vt-text-section-size);
  font-weight: var(--vt-font-weight-bold);
  line-height: 3.25rem;
  letter-spacing: var(--vt-text-section-letter-spacing);
}

.vt-product-line-section__empty {
  margin: 0;
  color: var(--vt-color-text-muted);
  font-size: var(--vt-font-size-base);
  line-height: var(--vt-line-height-base);
}

.vt-product-line-section__grid {
  gap: 24px;
}

.vt-product-category-page .vt-product-line-section__grid {
  display: grid;
  width: 100%;
  justify-content: start;
  justify-items: start;
}

.vt-product-category-page .vt-product-line-section__grid > .vt-product-card {
  width: 100%;
  min-width: 0;
  justify-self: start;
  grid-column: auto;
}

.vt-product-card__manufacturer {
  margin: 0;
  color: var(--vt-color-text-muted);
  font-size: 1rem;
  line-height: 1.0625;
}

.vt-product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--vt-products-primary, var(--vt-color-brand));
  font-size: 0.875rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 1.25;
  text-decoration: none;
}

.vt-product-card__cta:hover,
.vt-product-card__cta:focus {
  color: var(--vt-color-brand-dark);
  text-decoration: none;
}

.vt-product-card__cta-icon {
  width: 14px;
  height: 14px;
}

/*
 * TEMPORARY: Product-card detail navigation is disabled by default via
 * vt_product_card_details_enabled(). Re-enable with:
 * add_filter( 'vt_product_card_details_enabled', '__return_true' );
 * Then remove or disable this disabled-state CSS if no longer needed.
 */
.vt-product-card.is-detail-disabled {
  cursor: default;
}

.vt-product-card.is-detail-disabled .vt-product-card__media,
.vt-product-card.is-detail-disabled .vt-product-card__title {
  cursor: default;
  text-decoration: none;
}

.vt-product-card.is-detail-disabled .vt-product-card__action {
  display: none;
}

/*
 * Product category page ? desktop visual correction (Figma 261:1679).
 * Scoped to min-width 1280px; responsive untouched.
 */
@media (min-width: 1280px) {
  .vt-product-category-page .vt-page-hero--products.vt-section {
    height: 399px;
    min-height: 399px;
    padding-block: 0;
  }

  .vt-product-category-page .vt-page-hero--products .vt-page-hero__container {
    height: 100%;
    min-height: 399px;
    padding-inline: 30px;
  }

  .vt-product-category-page .vt-page-hero--products .vt-page-hero__title {
    font-size: 72px;
    line-height: 79.2px;
    letter-spacing: -1.8px;
  }

  .vt-product-category-page .vt-products-breadcrumb {
    min-height: 0;
    padding-block: 24px;
    background-color: #f9faff;
  }

  .vt-product-category-page .vt-container {
    width: min(100% - 60px, 1280px);
    max-width: 1280px;
    padding-inline: 30px;
  }

  .vt-product-category-page .vt-product-line-content-section {
    padding-block: 0;
    background-color: #f9faff;
  }

  .vt-product-category-page .vt-product-line-selector-section.vt-section {
    padding-block: 80px;
    background-color: #ffffff;
  }

  .vt-product-category-page .vt-product-line-panel .vt-container {
    padding-block: 80px;
  }

  .vt-product-category-page .vt-product-line-panel .vt-stack--lg {
    gap: 40px;
  }

  .vt-product-category-page .vt-product-line-section__title {
    font-size: 30px;
    line-height: 52px;
    letter-spacing: -0.75px;
  }

  .vt-product-category-page .vt-product-line-selector__list {
    justify-content: flex-start;
  }

  .vt-product-category-page .vt-product-line-section__grid.vt-grid--4 {
    grid-template-columns: repeat(4, var(--vt-product-card-col-width));
    gap: var(--vt-product-card-col-gap);
    justify-content: start;
    justify-items: stretch;
    width: 100%;
  }

  .vt-product-category-page .vt-product-line-section__grid > .vt-product-card {
    max-width: var(--vt-product-card-col-width);
}

.vt-product-category-page .vt-product-card {
    width: 100%;
    max-width: var(--vt-product-card-col-width);
  }

  .vt-product-card__image {
    width: 100%;
    height: 238.5px;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .vt-product-card__placeholder {
    width: 100%;
    min-height: 238.5px;
  aspect-ratio: auto;
  }

  .vt-product-card__body {
    gap: 0;
    padding: 20px;
  }

  .vt-product-card__action {
    margin-top: 20px;
    padding-top: 1px;
    border-top: 1px solid rgb(241 245 249 / 0.3);
  }

}

/*
 * Product category page ? tablet product grid.
 */
@media (min-width: 769px) and (max-width: 1279px) {
  .vt-product-category-page .vt-product-line-section__grid.vt-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--vt-product-card-col-gap);
    justify-content: start;
    justify-items: stretch;
    width: 100%;
  }

  .vt-product-category-page .vt-product-line-section__grid > .vt-product-card,
  .vt-product-category-page .vt-product-card {
    width: 100%;
    max-width: none;
  }

  .vt-product-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: var(--vt-product-card-image-ratio);
  object-fit: contain;
}

  .vt-product-card__placeholder {
    width: 100%;
    min-height: 0;
    aspect-ratio: var(--vt-product-card-image-ratio);
  }

  .vt-product-detail-page .vt-product-related__slide {
    flex: 0 0 calc((100% - var(--vt-product-card-col-gap)) / 2);
    max-width: none;
  }
}

/*
 * Product detail page ? Figma node 39:501 layout tokens.
 */

.vt-product-detail-page {
  --vt-container-padding: 1.875rem;
  --vt-product-detail-heading-line-height: 3.25rem;
}

.vt-product-detail-page .vt-container {
  padding-inline: var(--vt-container-padding);
}

/*
 * Product detail page ? structural layout only.
 * Figma overview node 39:533.
 */

.vt-product-detail-page .vt-product-detail-overview__layout {
  display: grid;
  gap: var(--vt-space-8);
}

.vt-product-detail-page .vt-product-detail-overview {
  padding-block: 5rem;
  background-color: var(--vt-color-neutral-0);
  border-bottom: 1px solid #d2d7fc;
}

.vt-product-detail-page .vt-product-detail-overview__gallery,
.vt-product-detail-page .vt-product-detail-overview__summary {
  min-width: 0;
}

.vt-product-detail-page .vt-product-related {
  background-color: #f9faff;
}

.vt-product-detail-page .vt-product-related__container {
  padding-block: 6rem;
}

.vt-product-detail-page .vt-product-related__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

.vt-product-detail-page .vt-product-related__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--vt-space-4);
}

.vt-product-detail-page .vt-product-related__title {
  margin: 0;
  color: var(--vt-color-neutral-800);
  font-size: var(--vt-text-section-size);
  font-weight: var(--vt-font-weight-bold);
  line-height: var(--vt-product-detail-heading-line-height);
  letter-spacing: var(--vt-text-section-letter-spacing);
}

.vt-product-detail-page .vt-product-related__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.vt-product-detail-page .vt-product-related__controls[hidden] {
  display: none;
}

.vt-product-detail-page .vt-product-related__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.8125rem;
  border: 1px solid rgb(241 245 249 / 0.5);
  border-radius: var(--vt-radius-full);
  background: var(--vt-color-neutral-0);
  color: var(--vt-color-neutral-800);
  cursor: pointer;
}

.vt-product-detail-page .vt-product-related__control:focus-visible {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-product-detail-page .vt-product-related__control:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.vt-product-detail-page .vt-product-related__control-icon {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
}

.vt-product-detail-page .vt-product-related__viewport {
  width: 100%;
  min-width: 0;
}

.vt-product-detail-page .vt-product-related__track {
  display: flex;
  gap: var(--vt-product-card-col-gap);
  min-height: 1px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.vt-product-detail-page .vt-product-related__track::-webkit-scrollbar {
  display: none;
}

.vt-product-detail-page .vt-product-related__slide {
  flex: 0 0 var(--vt-product-card-col-width);
  min-width: 0;
  scroll-snap-align: start;
}

@media (min-width: 1280px) {
  .vt-product-detail-page .vt-product-related__slide {
    flex-basis: var(--vt-product-card-col-width);
    max-width: var(--vt-product-card-col-width);
  }
}

@media (min-width: 1025px) {
  .vt-product-detail-page .vt-product-detail-overview__layout {
    grid-template-columns: minmax(0, 685fr) minmax(0, 471fr);
    gap: 4rem;
    align-items: start;
  }
}

/*
 * Product detail gallery ? Figma overview node 39:533 / gallery 39:535.
 */

.vt-product-detail-page {
  --vt-product-gallery-border: rgb(241 245 249 / 0.5);
  --vt-product-gallery-main-padding: 11px;
  --vt-product-gallery-main-stage-height: 31.87375rem;
  --vt-product-gallery-main-height: 33.24875rem;
  --vt-product-gallery-gap: var(--vt-space-4);
  --vt-product-gallery-thumb-size: 9.9375rem;
  --vt-product-gallery-thumb-bg: var(--vt-color-neutral-0);
  --vt-product-gallery-main-bg: var(--vt-color-neutral-0);
}

.vt-product-detail-page .vt-product-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--vt-product-gallery-gap);
  width: 100%;
  max-width: 100%;
}

.vt-product-detail-page .vt-product-gallery__main {
  position: relative;
  box-sizing: border-box;
  margin: 0;
  width: 100%;
  height: var(--vt-product-gallery-main-height);
  padding: var(--vt-product-gallery-main-padding);
  border: 1px solid var(--vt-product-gallery-border);
  border-radius: var(--vt-radius-xl);
  background: var(--vt-product-gallery-main-bg);
  overflow: hidden;
}

.vt-product-detail-page .vt-product-gallery__main-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--vt-product-gallery-main-stage-height);
  max-height: var(--vt-product-gallery-main-stage-height);
  overflow: hidden;
}

.vt-product-detail-page .vt-product-gallery__main-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.vt-product-detail-page .vt-product-gallery__expand {
  position: absolute;
  right: 1.02125rem;
  bottom: var(--vt-space-4);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 12px;
  border: 0;
  border-radius: var(--vt-radius-full);
  color: var(--vt-color-neutral-800);
  background: rgb(255 255 255 / 0.9);
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.vt-product-detail-page .vt-product-gallery__expand:focus-visible {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-product-detail-page .vt-product-gallery__expand-icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.vt-product-detail-page .vt-product-gallery__thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--vt-product-gallery-gap);
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.vt-product-detail-page .vt-product-gallery__thumb-item {
  flex: 0 0 var(--vt-product-gallery-thumb-size);
  width: var(--vt-product-gallery-thumb-size);
  height: var(--vt-product-gallery-thumb-size);
  max-width: none;
}

.vt-product-detail-page .vt-product-gallery__thumb-button {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 11px;
  border: 1px solid var(--vt-product-gallery-border);
  border-radius: var(--vt-radius-lg);
  background: var(--vt-product-gallery-thumb-bg);
  opacity: 0.7;
  overflow: hidden;
  cursor: pointer;
}

.vt-product-detail-page .vt-product-gallery__thumb-button.is-active {
  padding: 12px;
  border: 2px solid var(--vt-products-primary, var(--vt-color-brand));
  opacity: 1;
}

.vt-product-detail-page .vt-product-gallery__thumb-button:focus-visible {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-product-detail-page .vt-product-gallery__thumb-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.vt-product-detail-page .vt-product-gallery__thumb-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.vt-product-detail-page .vt-product-gallery__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--vt-product-gallery-main-stage-height);
  color: var(--vt-color-text-muted);
}

@media (min-width: 1025px) {
  .vt-product-detail-page .vt-product-gallery__thumbs--count-4 {
    display: grid;
    grid-template-columns: repeat(4, var(--vt-product-gallery-thumb-size));
    gap: var(--vt-product-gallery-gap);
    overflow-x: visible;
  }

  .vt-product-detail-page .vt-product-gallery__thumbs--count-4 .vt-product-gallery__thumb-item {
    flex: none;
    width: var(--vt-product-gallery-thumb-size);
    height: var(--vt-product-gallery-thumb-size);
  }
}

@media (max-width: 1024px) {
  .vt-product-detail-page .vt-product-detail-overview__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .vt-product-detail-page .vt-container {
    padding-inline: clamp(var(--vt-space-4), 2.08vw, 1.875rem);
  }

  .vt-product-detail-page .vt-product-gallery__main {
    height: auto;
  min-height: 0;
  }

  .vt-product-detail-page .vt-product-gallery__main-stage {
    height: clamp(12.5rem, 56vw, var(--vt-product-gallery-main-stage-height));
    max-height: var(--vt-product-gallery-main-stage-height);
  }
}

/*
 * Product detail overview ? product info (Figma node 39:561).
 */

html:has(.vt-product-detail-page) {
  scroll-behavior: smooth;
}

.vt-product-detail-page #quote-form {
  scroll-margin-top: var(--vt-site-header-height, 81px);
}

.vt-product-detail-page .vt-product-detail-overview__summary {
  display: flex;
  flex-direction: column;
  gap: var(--vt-space-8);
  width: 100%;
}

.vt-product-detail-page .vt-product-detail-overview__header {
  display: flex;
  flex-direction: column;
  gap: var(--vt-space-2);
  width: 100%;
}

.vt-product-detail-page .vt-product-detail-overview__category {
  margin: 0;
  color: var(--vt-products-primary, var(--vt-color-brand));
  font-size: var(--vt-font-size-base);
  font-weight: var(--vt-font-weight-bold);
  line-height: 1.25;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.vt-product-detail-page .vt-product-detail-overview__title {
  margin: 0;
  color: var(--vt-color-neutral-800);
  font-size: var(--vt-text-section-size);
  font-weight: var(--vt-font-weight-bold);
  line-height: var(--vt-product-detail-heading-line-height);
  letter-spacing: var(--vt-text-section-letter-spacing);
  overflow-wrap: anywhere;
}

.vt-product-detail-page .vt-product-detail-overview__meta {
  display: flex;
  flex-direction: column;
  gap: var(--vt-space-4);
  margin: 0;
  padding: 25px;
  border: 1px solid rgb(241 245 249 / 0.5);
  border-radius: var(--vt-radius-lg);
  background: var(--vt-color-neutral-0);
  box-shadow:
    0 1px 3px 0 rgb(0 0 0 / 0.1),
    0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.vt-product-detail-page .vt-product-detail-overview__meta-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vt-space-4);
  margin: 0;
}

.vt-product-detail-page .vt-product-detail-overview__meta-item--divided {
  padding-bottom: 17px;
  border-bottom: 1px solid rgb(241 245 249 / 0.4);
}

.vt-product-detail-page .vt-product-detail-overview__meta-label,
.vt-product-detail-page .vt-product-detail-overview__meta-value {
  margin: 0;
}

.vt-product-detail-page .vt-product-detail-overview__meta-label {
  flex: 0 0 auto;
}

.vt-product-detail-page .vt-product-detail-overview__meta-label-group {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.vt-product-detail-page .vt-product-detail-overview__meta-icon-wrap {
  display: inline-flex;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--vt-color-neutral-500);
}

.vt-product-detail-page .vt-product-detail-overview__meta-icon {
  display: block;
  width: 20px;
  height: 20px;
}

.vt-product-detail-page .vt-product-detail-overview__meta-label-text {
  color: var(--vt-color-neutral-500);
  font-size: var(--vt-font-size-base);
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.0625;
}

.vt-product-detail-page .vt-product-detail-overview__meta-value {
  flex: 0 1 auto;
  margin-left: auto;
  color: var(--vt-color-neutral-800);
  font-size: var(--vt-font-size-base);
  font-weight: var(--vt-font-weight-bold);
  line-height: 1.5;
  text-align: right;
  overflow-wrap: anywhere;
}

.vt-product-detail-page .vt-product-detail-overview__cta {
  width: 100%;
  padding-top: var(--vt-space-4);
}

.vt-product-detail-page .vt-product-detail-overview__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 3.75rem;
  padding: 16px 32px;
  border: 0;
  border-radius: var(--vt-radius-lg);
  color: var(--vt-color-text-inverse);
  background: linear-gradient(90deg, var(--vt-products-primary, var(--vt-color-brand)) 0%, rgb(10 81 142 / 0.8) 100%);
  font-family: var(--vt-font-sans);
  font-size: var(--vt-text-card-size);
  font-weight: var(--vt-font-weight-bold);
  line-height: var(--vt-text-card-line-height);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.vt-product-detail-page .vt-product-detail-overview__cta-button:hover,
.vt-product-detail-page .vt-product-detail-overview__cta-button:focus {
  color: var(--vt-color-text-inverse);
  text-decoration: none;
}

.vt-product-detail-page .vt-product-detail-overview__cta-label {
  white-space: nowrap;
}

.vt-product-detail-page .vt-product-detail-overview__cta-arrow {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px) {
  .vt-product-detail-page .vt-product-detail-overview__meta-item {
    align-items: flex-start;
  }

  .vt-product-detail-page .vt-product-detail-overview__meta-value {
    min-width: 0;
    flex: 1 1 40%;
    max-width: none;
  }
}

/*
 * Product detail content ? Figma node 39:642.
 */

.vt-product-detail-page .vt-product-detail-content {
  background-color: var(--vt-color-neutral-0);
}

.vt-product-detail-page .vt-product-detail-content__container {
  padding-block: 5rem;
}

.vt-product-detail-page .vt-product-detail-content__blocks {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  width: 100%;
}

.vt-product-detail-page .vt-product-detail-content__block {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
  min-width: 0;
}

.vt-product-detail-page .vt-product-detail-content__block--divided {
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #d2d7fc;
}

.vt-product-detail-page .vt-product-detail-content__title {
  margin: 0;
  color: var(--vt-color-neutral-800);
  font-size: var(--vt-text-section-size);
  font-weight: var(--vt-font-weight-bold);
  line-height: var(--vt-product-detail-heading-line-height);
  letter-spacing: var(--vt-text-section-letter-spacing);
}

.vt-product-detail-page .vt-product-detail-content__body {
  width: 100%;
  max-width: 100%;
  color: var(--vt-color-neutral-500);
  font-size: var(--vt-text-card-size);
  font-weight: var(--vt-font-weight-regular);
  line-height: var(--vt-text-card-line-height);
  overflow-wrap: break-word;
}

.vt-product-detail-page .vt-product-detail-content__body > :first-child {
  margin-top: 0;
}

.vt-product-detail-page .vt-product-detail-content__body > :last-child {
  margin-bottom: 0;
}

.vt-product-detail-page .vt-product-detail-content__body p {
  margin: 0 0 1em;
}

.vt-product-detail-page .vt-product-detail-content__body p:last-child {
  margin-bottom: 0;
}

.vt-product-detail-page .vt-product-detail-content__body ul,
.vt-product-detail-page .vt-product-detail-content__body ol {
  margin: 0;
  padding-left: 1.6875rem;
}

.vt-product-detail-page .vt-product-detail-content__body ul {
  list-style-type: disc;
}

.vt-product-detail-page .vt-product-detail-content__body ol {
  list-style-type: decimal;
}

.vt-product-detail-page .vt-product-detail-content__body li {
  margin: 0;
}

.vt-product-detail-page .vt-product-detail-content__body li + li {
  margin-top: 0;
}

.vt-product-detail-page .vt-product-detail-content__body a {
  color: var(--vt-color-link);
}

.vt-product-detail-page .vt-product-detail-content__body strong,
.vt-product-detail-page .vt-product-detail-content__body b {
  font-weight: var(--vt-font-weight-bold);
}

.vt-product-detail-page .vt-product-detail-content__body em,
.vt-product-detail-page .vt-product-detail-content__body i {
  font-style: italic;
}

@media (max-width: 1024px) {
  .vt-product-detail-page .vt-product-detail-content__body ul,
  .vt-product-detail-page .vt-product-detail-content__body ol {
    padding-left: 1.375rem;
  }
}

/*
 * Shared contact form block ? Figma nodes 225:1160, 486:2078.
 */

.vt-contact-form-block {
  background-color: var(--vt-color-neutral-0);
}

.vt-contact-form-block__container.vt-container {
  width: min(100% - (2 * var(--vt-space-4)), 80.0625rem);
  max-width: 80.0625rem;
  padding-block: 5rem;
  padding-inline: 0;
}

.vt-contact-form-block__panel {
  position: relative;
  width: 100%;
  margin-inline: auto;
  min-height: 41.25rem; /* 660px — Figma 486:2078 */
  padding: 4.125rem 2rem;
  border: 2px solid rgb(255 255 255 / 0.29);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.06) 0%, rgb(43 192 208 / 0.08) 100%),
    linear-gradient(90deg, var(--hm-primary) 0%, var(--hm-primary-light) 100%);
  box-shadow: 0 25px 50px -18px rgb(0 0 0 / 0.25);
  backdrop-filter: blur(8px);
}

.vt-contact-form-block__layout {
  display: grid;
  width: 100%;
}

.vt-contact-form-block__content,
.vt-contact-form-block__form-panel {
  min-width: 0;
}

.vt-contact-form-block__content {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  align-items: stretch;
}

.vt-contact-form-block__intro {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  width: 100%;
}

.vt-contact-form-block__title {
  margin: 0;
  color: var(--vt-color-text-inverse);
  font-size: 2.25rem; /* 36px */
  font-weight: var(--vt-font-weight-bold);
  line-height: 2.5rem;
  text-transform: uppercase;
}

.vt-contact-form-block__subtitle {
  margin: 0;
  color: var(--hm-highlight);
  font-size: 1.125rem;
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.75rem;
}

.vt-contact-form-block__visual {
  display: flex;
  flex: 1 1 auto;
  align-items: flex-end;
  width: 100%;
  min-height: 0;
}

.vt-contact-form-block__illustration {
  display: block;
  width: min(100%, 31.2016875rem);
  height: auto;
  aspect-ratio: 499 / 423;
  margin-inline-start: 2.6646875rem;
  object-fit: contain;
  object-position: left bottom;
}

.vt-contact-form-block__form-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: center;
  width: 100%;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--vt-color-neutral-0);
  box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.vt-contact-form-block__form-title {
  margin: 0;
  color: var(--vt-color-neutral-800);
  font-size: 1.5rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 2rem;
}

.vt-contact-form-block__form {
  width: 100%;
}

.vt-contact-form-block__form[data-vt-fluent-form-empty="true"] {
  min-height: 12rem;
  border: 1px dashed var(--vt-color-border);
  border-radius: var(--vt-radius-md);
}

.vt-contact-form-block__form .fluentform,
.vt-contact-form-block__form .fluentform form {
  margin: 0;
}

.vt-contact-form-block__form .fluentform form fieldset {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  min-inline-size: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.vt-contact-form-block__form .fluentform form fieldset > legend,
.vt-contact-form-block__form .fluentform form fieldset > input[type="hidden"] {
  display: none !important;
}

.vt-contact-form-block__form .ff-el-group {
  margin: 0;
}

.vt-contact-form-block__form .ff-el-group.ff-el-is-hidden,
.vt-contact-form-block__form .ff-hidden-group {
  display: none !important;
}

.vt-contact-form-block__form .ff-el-input--label {
  margin: 0;
}

.vt-contact-form-block__form .ff-el-input--label label {
  display: block;
  margin: 0 0 0.25rem;
  color: var(--vt-color-neutral-800);
  font-size: var(--vt-text-small-size);
  font-weight: var(--vt-font-weight-medium);
  line-height: var(--vt-text-small-line-height);
}

.vt-contact-form-block__form .ff-el-input--content {
  margin: 0;
}

.vt-contact-form-block__form .ff-el-form-control,
.vt-contact-form-block__form textarea.ff-el-form-control {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1rem 0.8125rem;
  border: 0;
  border-radius: var(--vt-radius-lg);
  background: #f1f5f9;
  color: var(--vt-color-neutral-800);
  font-family: var(--vt-font-sans);
  font-size: var(--vt-text-small-size);
  line-height: normal;
  box-shadow: none;
}

.vt-contact-form-block__form .ff-el-form-control::placeholder,
.vt-contact-form-block__form textarea.ff-el-form-control::placeholder {
  color: rgb(30 41 59 / 0.5);
  opacity: 1;
}

.vt-contact-form-block__form .ff-el-group:has([name="message"]) .ff-el-form-control,
.vt-contact-form-block__form textarea.ff-el-form-control {
  min-height: 6.1875rem;
  resize: vertical;
}

.vt-contact-form-block__form .ff-el-form-control:focus,
.vt-contact-form-block__form textarea.ff-el-form-control:focus {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-contact-form-block__form .ff_submit_btn_wrapper {
  margin: 0;
}

.vt-contact-form-block__form .ff-btn-submit {
  width: 100%;
  min-height: 3.25rem;
  margin: 0;
  padding: 0.875rem 1rem;
  border: 0;
  border-radius: var(--vt-radius-lg);
  background: linear-gradient(90deg, var(--hm-primary) 0%, var(--hm-primary-light) 100%) !important;
  box-shadow: 0 4px 14px 0 rgb(10 81 142 / 0.35);
  color: var(--vt-color-text-inverse);
  font-family: var(--vt-font-sans);
  font-size: var(--vt-font-size-base);
  font-weight: var(--vt-font-weight-bold);
  line-height: 1.5;
}

.vt-contact-form-block__form .ff-btn-submit:hover,
.vt-contact-form-block__form .ff-btn-submit:focus {
  color: var(--vt-color-text-inverse);
  background: linear-gradient(90deg, var(--vt-color-brand-dark) 0%, var(--hm-primary) 100%) !important;
}

.vt-contact-form-block__form .ff-message-success,
.vt-contact-form-block__form .ff-message-error,
.vt-contact-form-block__form .error-text {
  font-size: var(--vt-text-small-size);
}

@media (min-width: 1025px) {
  .vt-contact-form-block__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 3rem;
  }

  .vt-contact-form-block__content {
    min-height: 33rem;
  }

  .vt-contact-form-block__form .fluentform form fieldset {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 1rem;
  }

  .vt-contact-form-block__form .ff-el-group:has([name="full_name"]) {
    grid-column: 1;
    grid-row: 1;
  }

  .vt-contact-form-block__form .ff-el-group:has([name="phone"]) {
    grid-column: 2;
    grid-row: 1;
  }

  .vt-contact-form-block__form .ff-el-group:has([name="email"]) {
    grid-column: 1;
    grid-row: 2;
  }

  .vt-contact-form-block__form .ff-el-group:has([name="company"]) {
    grid-column: 2;
    grid-row: 2;
  }

  .vt-contact-form-block__form .ff-el-group:has([name="message"]) {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .vt-contact-form-block__form .ff_submit_btn_wrapper {
    grid-column: 1 / -1;
    grid-row: 4;
  }
}

@media (max-width: 1024px) {
  .vt-contact-form-block__container.vt-container {
    width: min(100% - (2 * clamp(var(--vt-space-4), 2.08vw, 1.875rem)), 80.0625rem);
    padding-inline: 0;
  }

  .vt-contact-form-block__panel {
    padding: 2.5rem 1.5rem;
  }

  .vt-contact-form-block__title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    line-height: 1.2;
  }

  .vt-contact-form-block__illustration {
    width: min(100%, 31.2016875rem);
    margin-inline: auto;
    object-position: center bottom;
  }

  .vt-contact-form-block__form-panel {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .vt-contact-form-block--home .vt-contact-form-block__layout,
  .vt-contact-form-block--product .vt-contact-form-block__layout,
  .vt-contact-form-block--partners .vt-contact-form-block__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .vt-contact-form-block--home .vt-contact-form-block__content,
  .vt-contact-form-block--product .vt-contact-form-block__content,
  .vt-contact-form-block--partners .vt-contact-form-block__content {
    min-height: 0;
  }

  .vt-contact-form-block--home .vt-contact-form-block__visual,
  .vt-contact-form-block--product .vt-contact-form-block__visual,
  .vt-contact-form-block--partners .vt-contact-form-block__visual {
    display: none;
  }

  .vt-contact-form-block--home .vt-contact-form-block__form-panel,
  .vt-contact-form-block--product .vt-contact-form-block__form-panel,
  .vt-contact-form-block--partners .vt-contact-form-block__form-panel {
    width: 100%;
  }

  .vt-contact-form-block--home .vt-contact-form-block__form .fluentform form fieldset,
  .vt-contact-form-block--product .vt-contact-form-block__form .fluentform form fieldset,
  .vt-contact-form-block--partners .vt-contact-form-block__form .fluentform form fieldset {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
  }

  .vt-contact-form-block--home .vt-contact-form-block__form .fluentform form .ff-el-group,
  .vt-contact-form-block--product .vt-contact-form-block__form .fluentform form .ff-el-group,
  .vt-contact-form-block--partners .vt-contact-form-block__form .fluentform form .ff-el-group,
  .vt-contact-form-block--home .vt-contact-form-block__form .fluentform form .ff_submit_btn_wrapper,
  .vt-contact-form-block--product .vt-contact-form-block__form .fluentform form .ff_submit_btn_wrapper,
  .vt-contact-form-block--partners .vt-contact-form-block__form .fluentform form .ff_submit_btn_wrapper {
    margin: 0;
  }

  .vt-contact-form-block--home .vt-contact-form-block__form .fluentform form .ff-t-container,
  .vt-contact-form-block--product .vt-contact-form-block__form .fluentform form .ff-t-container,
  .vt-contact-form-block--partners .vt-contact-form-block__form .fluentform form .ff-t-container {
    gap: 0.75rem;
    margin: 0;
  }

  .vt-contact-form-block--home .vt-contact-form-block__form .fluentform form .ff-t-cell,
  .vt-contact-form-block--product .vt-contact-form-block__form .fluentform form .ff-t-cell,
  .vt-contact-form-block--partners .vt-contact-form-block__form .fluentform form .ff-t-cell {
    margin: 0;
    padding: 0;
  }

  .vt-contact-form-block--home .vt-contact-form-block__form .fluentform form .ff-el-input--label,
  .vt-contact-form-block--product .vt-contact-form-block__form .fluentform form .ff-el-input--label,
  .vt-contact-form-block--partners .vt-contact-form-block__form .fluentform form .ff-el-input--label {
    display: block;
    margin: 0 0 0.375rem;
  }
}

/*
 * Contact page main content — Figma node 21:253.
 */

.vt-contact-page {
  background: #f9faff;
  overflow: visible;
}

.vt-contact-page__main {
  background: #f9faff;
  overflow: visible;
}

.vt-contact-page__inner.vt-container {
  --vt-container-max: 80rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36rem;
  align-items: start;
  width: min(100% - 10rem, 80rem);
  padding: 5rem 1.875rem;
  overflow: visible;
}

.vt-contact-page__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.vt-contact-page__heading {
  margin: 0;
  color: #1e293b;
  font-size: 3rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 4.125rem;
  letter-spacing: 0;
}

.vt-contact-page__heading-main,
.vt-contact-page__heading-highlight {
  display: block;
}

.vt-contact-page__heading-highlight {
  color: #0c508c;
}

.vt-contact-page__description {
  width: 100%;
  margin: 0;
  color: #64748b;
  font-size: 1rem;
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.75;
}

.vt-contact-page__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.vt-contact-page__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
}

.vt-contact-page__detail-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgb(12 80 140 / 0.1);
  border-radius: 1rem;
}

.vt-contact-page__detail--hotline .vt-contact-page__detail-icon {
  background: rgb(75 197 211 / 0.1);
}

.vt-contact-page__detail-icon-image {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}

.vt-contact-page__detail-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.vt-contact-page__detail-label {
  margin: 0;
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 1.5556;
}

.vt-contact-page__detail-value {
  margin: 0;
  color: #64748b;
  font-size: 1rem;
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.5;
  text-decoration: none;
  overflow-wrap: anywhere;
}

a.vt-contact-page__detail-value:hover,
a.vt-contact-page__detail-value:focus {
  color: #0c508c;
  text-decoration: none;
}

a.vt-contact-page__detail-value:focus-visible {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-contact-page__form,
.vt-contact-page .vt-contact-form-block--contact {
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.vt-contact-page .vt-contact-form-block--contact {
  background: transparent;
}

.vt-contact-page .vt-contact-form-block--contact .vt-contact-form-block__form-panel {
  gap: 0;
  align-self: stretch;
  width: 100%;
  padding: 2.625rem;
  color: #ffffff;
  background: linear-gradient(90deg, #0a518e 0%, #3785c5 100%);
  border: 1px solid rgb(241 245 249 / 0.5);
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px rgb(0 0 0 / 0.05);
}

.vt-contact-page .vt-contact-form-block--contact .vt-contact-form-block__form-title {
  margin: 0;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 2rem;
}

.vt-contact-page .vt-contact-form-block--contact .vt-contact-form-block__form-subtitle {
  margin: 0.5rem 0 0;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.25rem;
}

.vt-contact-page .vt-contact-form-block--contact .vt-contact-form-block__form {
  margin-top: 2rem;
}

.vt-contact-page .vt-contact-form-block--contact .fluentform,
.vt-contact-page .vt-contact-form-block--contact .fluentform form {
  margin: 0;
}

.vt-contact-page .vt-contact-form-block--contact .fluentform form fieldset {
  column-gap: 1rem;
  row-gap: 1rem;
  align-items: start;
  margin: 0;
  padding: 0;
  border: 0;
}

.vt-contact-page .vt-contact-form-block--contact .vt-contact-form-block__form .ff-el-group {
  margin: 0;
  padding: 0;
}

.vt-contact-page .vt-contact-form-block--contact .vt-contact-form-block__form .ff-el-input--label {
  display: block;
  margin: 0 0 0.25rem;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.vt-contact-page .vt-contact-form-block--contact .ff-el-input--label label {
  display: block;
  margin: 0;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: var(--vt-font-weight-medium);
  line-height: 1.25rem;
}

.vt-contact-page .vt-contact-form-block--contact .ff-el-form-control,
.vt-contact-page .vt-contact-form-block--contact textarea.ff-el-form-control {
  height: 2.8125rem;
  min-height: 2.8125rem;
  padding: 0.75rem 1rem 0.8125rem;
  background: #f1f5f9;
  border: 0;
  border-radius: 0.75rem;
  box-shadow: none;
  color: #1e293b;
  font-size: 0.875rem;
  line-height: normal;
}

.vt-contact-page .vt-contact-form-block--contact .ff-el-form-control::placeholder,
.vt-contact-page .vt-contact-form-block--contact textarea.ff-el-form-control::placeholder {
  color: rgb(30 41 59 / 0.5);
  opacity: 1;
}

.vt-contact-page .vt-contact-form-block--contact .ff-el-form-control:focus,
.vt-contact-page .vt-contact-form-block--contact textarea.ff-el-form-control:focus {
  border: 0;
  box-shadow: 0 0 0 2px rgb(255 255 255 / 0.45);
  outline: none;
}

.vt-contact-page .vt-contact-form-block--contact .ff-el-group:has([name="message"]) .ff-el-form-control,
.vt-contact-page .vt-contact-form-block--contact textarea.ff-el-form-control {
  height: 7.75rem;
  min-height: 7.75rem;
  padding-top: 0.75rem;
  resize: none;
  vertical-align: top;
}

.vt-contact-page .vt-contact-form-block--contact .vt-contact-form-block__form .ff_submit_btn_wrapper {
  margin: 0;
  padding: 0;
}

.vt-contact-page .vt-contact-form-block--contact .ff-btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 0.875rem 1rem;
  border: 0;
  border-radius: 0.75rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 1.5;
  text-align: center;
  text-indent: 0;
  background: #2bc0d0 !important;
  box-shadow: 0 2px 1.5px #0c508c;
  opacity: 1;
  visibility: visible;
  transition:
    background-color 180ms ease,
    filter 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.vt-contact-page .vt-contact-form-block--contact form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style),
.vt-contact-page .vt-contact-form-block--contact form.fluent_form_5 .ff-btn-submit:not(.ff_btn_no_style) {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: #2bc0d0 !important;
  box-shadow: 0 2px 1.5px #0c508c;
}

.vt-contact-page .vt-contact-form-block--contact .ff-btn-submit:hover,
.vt-contact-page .vt-contact-form-block--contact .ff-btn-submit:focus {
  color: #ffffff;
  background: #26b1c0 !important;
  filter: brightness(1.02);
  transform: translateY(-1px);
}

.vt-contact-page .vt-contact-form-block--contact form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style):hover,
.vt-contact-page .vt-contact-form-block--contact form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style):focus,
.vt-contact-page .vt-contact-form-block--contact form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style):active,
.vt-contact-page .vt-contact-form-block--contact form.fluent_form_5 .ff-btn-submit:not(.ff_btn_no_style):hover,
.vt-contact-page .vt-contact-form-block--contact form.fluent_form_5 .ff-btn-submit:not(.ff_btn_no_style):focus,
.vt-contact-page .vt-contact-form-block--contact form.fluent_form_5 .ff-btn-submit:not(.ff_btn_no_style):active {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: #26b1c0 !important;
}

.vt-contact-page .vt-contact-form-block--contact .ff-btn-submit:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.vt-contact-page .vt-contact-form-block--contact .ff-btn-submit:disabled,
.vt-contact-page .vt-contact-form-block--contact .ff-btn-submit.disabled {
  opacity: 0.7;
  transform: none;
  cursor: wait;
}

.vt-contact-page .vt-contact-form-block--contact .error,
.vt-contact-page .vt-contact-form-block--contact .error-text,
.vt-contact-page .vt-contact-form-block--contact .ff-el-is-error .error {
  margin-top: 0.25rem;
  color: #fecaca;
  font-size: 0.75rem;
  line-height: 1.25;
}

@media (min-width: 1025px) {
  .vt-contact-page .vt-contact-form-block--contact .fluentform form fieldset {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .vt-contact-page__inner.vt-container {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 36rem);
    width: min(100% - 4rem, 80rem);
    padding-block: 4rem;
  }

  .vt-contact-page__heading {
    font-size: clamp(2.5rem, 4vw, 3rem);
    line-height: 1.25;
  }
}

@media (max-width: 1024px) {
  .vt-contact-page__inner.vt-container {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
    width: min(100% - 3rem, 48rem);
  }

  .vt-contact-page__heading {
    font-size: clamp(2.25rem, 6vw, 2.75rem);
    line-height: 1.22;
  }

  .vt-contact-page .vt-contact-form-block--contact .fluentform form fieldset {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .vt-contact-page__inner.vt-container {
    gap: 2.5rem;
    width: min(100% - 2rem, 48rem);
    padding: 3rem 0;
  }

  .vt-contact-page__heading {
    font-size: clamp(2rem, 8vw, 2.25rem);
    line-height: 1.3;
  }

  .vt-contact-page__heading br {
    display: none;
  }

  .vt-contact-page__details {
    gap: 1.75rem;
  }

  .vt-contact-page .vt-contact-form-block--contact .vt-contact-form-block__form-panel {
    padding: 1.5rem;
    border-radius: 1.25rem;
  }
}

/*
 * Consultation modal — Figma node 45:540.
 */

body.vt-consultation-modal-open {
  overflow: hidden;
}

.vt-consultation-modal {
  position: fixed;
  inset: 0;
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--vt-space-4);
}

.vt-consultation-modal[hidden] {
  display: none;
}

.vt-consultation-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgb(15 23 42 / 0.72);
  opacity: 1;
  filter: none;
  backdrop-filter: none;
  cursor: default;
}

.vt-consultation-modal__overlay:hover,
.vt-consultation-modal__overlay:focus,
.vt-consultation-modal__overlay:active {
  background: rgb(15 23 42 / 0.72);
  opacity: 1;
  filter: none;
  backdrop-filter: none;
}

.vt-consultation-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  height: auto;
  min-height: 0;
  width: min(100%, 80rem);
  max-height: calc(100dvh - 3rem);
  padding: 2rem 2.625rem 3.875rem;
  overflow: hidden;
  border: 2px solid rgb(255 255 255 / 0.29);
  border-radius: 24px;
  color: var(--vt-color-text-inverse);
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.1) 0%, rgb(255 255 255 / 0.1) 100%),
    linear-gradient(90deg, var(--vt-color-brand) 0%, var(--vt-color-brand) 100%);
  box-shadow: 0 25px 50px -18px rgb(0 0 0 / 0.25);
  backdrop-filter: blur(8px);
}

.vt-consultation-modal__shadow {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 24px;
  box-shadow: 0 25px 50px -18px rgb(0 0 0 / 0.25);
  pointer-events: none;
}

.vt-consultation-modal__close-row {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  min-height: 1.5rem;
}

.vt-consultation-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 0;
  color: var(--vt-color-text-inverse);
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.vt-consultation-modal__close:hover,
.vt-consultation-modal__close:focus,
.vt-consultation-modal__close:active {
  color: var(--vt-color-text-inverse);
  background: transparent;
  box-shadow: none;
}

.vt-consultation-modal__close:focus-visible {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-consultation-modal__close-icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}

.vt-consultation-modal__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  width: 100%;
  min-height: 0;
}

.vt-consultation-modal__intro {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  align-items: center;
  min-width: 0;
}

.vt-consultation-modal__copy {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  width: 100%;
}

.vt-consultation-modal__title,
.vt-consultation-modal__subtitle,
.vt-consultation-modal__form-title {
  margin: 0;
}

.vt-consultation-modal__title {
  color: var(--vt-color-text-inverse);
  font-size: 2.25rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 2.5rem;
}

.vt-consultation-modal__subtitle {
  color: rgb(255 255 255 / 0.8);
  font-size: 1.125rem;
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.5556;
}

.vt-consultation-modal__visual {
  display: flex;
  flex: 1 1 auto;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 0;
  overflow: hidden;
}

.vt-consultation-modal__illustration {
  display: block;
  width: min(100%, 27.36625rem);
  height: auto;
  aspect-ratio: 438 / 371;
  object-fit: contain;
  object-position: center bottom;
}

.vt-consultation-modal__form-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: center;
  width: 100%;
  min-width: 0;
  padding: 2rem;
  border-radius: 16px;
  background: var(--vt-color-neutral-0);
  box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.vt-consultation-modal__form-title {
  color: var(--vt-color-neutral-800);
  font-size: 1.5rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 2rem;
}

.vt-consultation-modal__form,
.vt-consultation-modal__form .fluentform,
.vt-consultation-modal__form .fluentform form {
  width: 100%;
  margin: 0;
}

.vt-consultation-modal__form .fluentform form fieldset {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  min-inline-size: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.vt-consultation-modal__form .fluentform form fieldset > legend,
.vt-consultation-modal__form .fluentform form fieldset > input[type="hidden"] {
  display: none !important;
}

.vt-consultation-modal__form .ff-el-group,
.vt-consultation-modal__form .fluentform form .ff-el-group {
  margin: 0;
}

.vt-consultation-modal__form .ff-el-group.ff-el-is-hidden,
.vt-consultation-modal__form .ff-hidden-group {
  display: none !important;
}

.vt-consultation-modal__form .ff-el-input--label,
.vt-consultation-modal__form .fluentform form .ff-el-input--label {
  display: block;
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  line-height: 1.4286;
}

.vt-consultation-modal__form .ff-el-input--label label,
.vt-consultation-modal__form .fluentform form .ff-el-input--label label {
  display: block;
  margin: 0;
  color: var(--vt-color-neutral-800);
  font-size: 0.875rem;
  font-weight: var(--vt-font-weight-medium);
  line-height: 1.4286;
}

.vt-consultation-modal__form .ff-el-input--content {
  margin: 0;
}

.vt-consultation-modal__form .ff-el-form-control,
.vt-consultation-modal__form textarea.ff-el-form-control {
  box-sizing: border-box;
  width: 100%;
  height: 2.75rem;
  min-height: 2.75rem;
  padding: 0.75rem 1rem 0.8125rem;
  border: 0;
  border-radius: 12px;
  background: #f1f5f9;
  box-shadow: none;
  color: var(--vt-color-neutral-800);
  font-family: var(--vt-font-sans);
  font-size: 0.875rem;
  line-height: normal;
}

.vt-consultation-modal__form .ff-el-form-control::placeholder,
.vt-consultation-modal__form textarea.ff-el-form-control::placeholder {
  color: rgb(30 41 59 / 0.5);
  opacity: 1;
}

.vt-consultation-modal__form .ff-el-group:has([name="message"]) .ff-el-form-control,
.vt-consultation-modal__form textarea.ff-el-form-control {
  height: 7.75rem;
  min-height: 7.75rem;
  resize: vertical;
}

.vt-consultation-modal__form .ff-el-form-control:focus,
.vt-consultation-modal__form textarea.ff-el-form-control:focus {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-consultation-modal__form .ff-el-group:has([name="email"]),
.vt-consultation-modal__form .ff-el-group:has([name="company"]) {
  padding-bottom: 0.5rem;
}

.vt-consultation-modal__form .ff-el-group:has([name="message"]) {
  padding-bottom: 1rem;
}

.vt-consultation-modal__form .ff_submit_btn_wrapper,
.vt-consultation-modal__form .fluentform form .ff_submit_btn_wrapper {
  margin: 0;
}

.vt-consultation-modal__form .ff-btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.25rem;
  min-height: 3.25rem;
  margin: 0;
  padding: 0.875rem 1rem;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--vt-color-brand-dark) 0%, var(--vt-color-brand) 100%) !important;
  box-shadow: 0 4px 14px 0 rgb(10 81 142 / 0.39);
  color: var(--vt-color-text-inverse);
  font-family: var(--vt-font-sans);
  font-size: 1rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 1.5;
  text-align: center;
}

.vt-consultation-modal__form form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style),
.vt-consultation-modal__form form.fluent_form_5 .ff-btn-submit:not(.ff_btn_no_style) {
  color: var(--vt-color-text-inverse);
  -webkit-text-fill-color: var(--vt-color-text-inverse);
}

.vt-consultation-modal__form .ff-btn-submit:hover,
.vt-consultation-modal__form .ff-btn-submit:focus,
.vt-consultation-modal__form form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style):hover,
.vt-consultation-modal__form form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style):focus,
.vt-consultation-modal__form form.fluent_form_5 .ff-btn-submit:not(.ff_btn_no_style):hover,
.vt-consultation-modal__form form.fluent_form_5 .ff-btn-submit:not(.ff_btn_no_style):focus {
  color: var(--vt-color-text-inverse);
  -webkit-text-fill-color: var(--vt-color-text-inverse);
  background: linear-gradient(90deg, var(--vt-color-brand-dark) 0%, var(--vt-color-brand) 100%) !important;
}

@media (min-width: 769px) {
  .vt-consultation-modal__form .fluentform form fieldset {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vt-consultation-modal__form .ff-el-group:has([name="full_name"]) {
    grid-column: 1;
    grid-row: 1;
  }

  .vt-consultation-modal__form .ff-el-group:has([name="phone"]) {
    grid-column: 2;
    grid-row: 1;
  }

  .vt-consultation-modal__form .ff-el-group:has([name="email"]) {
    grid-column: 1;
    grid-row: 2;
  }

  .vt-consultation-modal__form .ff-el-group:has([name="company"]) {
    grid-column: 2;
    grid-row: 2;
  }

  .vt-consultation-modal__form .ff-el-group:has([name="message"]) {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .vt-consultation-modal__form .ff_submit_btn_wrapper {
    grid-column: 1 / -1;
    grid-row: 4;
  }
}

@media (max-width: 1024px) {
  .vt-consultation-modal {
    padding: clamp(var(--vt-space-4), 3vw, var(--vt-space-8));
  }

  .vt-consultation-modal__dialog {
    gap: 2rem;
    padding: 1.5rem;
  }

  .vt-consultation-modal__layout {
    gap: 2rem;
  }

  .vt-consultation-modal__intro {
    gap: 1.5rem;
  }

  .vt-consultation-modal__visual {
    max-height: 16rem;
  }

  .vt-consultation-modal__illustration {
    width: min(100%, 20rem);
  }
}

@media (max-height: 700px) and (min-width: 769px) {
  .vt-consultation-modal__layout {
    max-height: calc(100dvh - 10rem);
    overflow-x: hidden;
    overflow-y: auto;
  }
}

@media (max-width: 768px) {
  .vt-consultation-modal {
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
  }

  .vt-consultation-modal__dialog {
    gap: 1rem;
    width: 100%;
    max-width: 26.25rem;
    max-height: calc(100dvh - 24px);
    margin: 0;
    padding: 1rem;
    overflow: hidden;
  }

  .vt-consultation-modal__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    max-height: calc(100dvh - 6rem);
    overflow-x: hidden;
    overflow-y: auto;
  }

  .vt-consultation-modal__intro {
    gap: 0;
  }

  .vt-consultation-modal__title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.15;
  }

  .vt-consultation-modal__subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

  .vt-consultation-modal__visual {
    display: none;
  }

  .vt-consultation-modal__form-card {
    gap: 1rem;
    padding: 1rem;
  }

  .vt-consultation-modal__form .fluentform form fieldset {
    gap: 0.75rem;
  }

  .vt-consultation-modal__form .ff-el-group:has([name="email"]),
  .vt-consultation-modal__form .ff-el-group:has([name="company"]),
  .vt-consultation-modal__form .ff-el-group:has([name="message"]) {
    padding-bottom: 0;
  }

  .vt-consultation-modal__form .ff-el-group:has([name="message"]) .ff-el-form-control,
  .vt-consultation-modal__form textarea.ff-el-form-control {
    height: 6rem;
    min-height: 6rem;
  }
}

/*
 * Product quote thank-you popup ? Figma node 155:2346.
 */

.vt-contact-form-block__form .ff-message-success,
.vt-contact-form-block__form #fluentform_3_success,
.vt-contact-form-block__form #fluentform_5_success {
  display: none !important;
}

body.vt-product-quote-thanks-open {
  overflow: hidden;
}

.vt-product-quote-thanks {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--vt-space-4);
}

.vt-product-quote-thanks[hidden] {
  display: none;
}

.vt-product-quote-thanks__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgb(15 23 42 / 0.72);
  cursor: pointer;
}

.vt-product-quote-thanks__backdrop:hover,
.vt-product-quote-thanks__backdrop:focus,
.vt-product-quote-thanks__backdrop:active {
  background: rgb(15 23 42 / 0.72);
  opacity: 1;
  filter: none;
  backdrop-filter: none;
  box-shadow: none;
  transition: none;
}

.vt-product-quote-thanks__backdrop::before,
.vt-product-quote-thanks__backdrop::after {
  background: transparent;
  opacity: 1;
  filter: none;
}

.vt-product-quote-thanks__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: min(100%, 46.375rem);
  max-height: calc(100vh - var(--vt-space-8));
  padding: 2rem 2.625rem 3.875rem;
  overflow: auto;
  border: 2px solid rgb(255 255 255 / 0.29);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.1) 0%, rgb(255 255 255 / 0.1) 100%),
    linear-gradient(90deg, var(--vt-color-brand) 0%, var(--vt-color-brand) 100%);
  box-shadow: 0 25px 50px -18px rgb(0 0 0 / 0.25);
  backdrop-filter: blur(8px);
}

.vt-product-quote-thanks__header {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.vt-product-quote-thanks__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--vt-color-text-inverse);
  cursor: pointer;
}

.vt-product-quote-thanks__close:focus-visible {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-product-quote-thanks__close-icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}

.vt-product-quote-thanks__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.0625rem;
  width: 100%;
  min-height: 27.5rem;
  padding-bottom: 2rem;
}

.vt-product-quote-thanks__intro {
  display: flex;
  flex-direction: column;
  gap: 1.0625rem;
  width: 100%;
  text-align: center;
}

.vt-product-quote-thanks__title {
  margin: 0;
  color: var(--vt-color-text-inverse);
  font-size: 3rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 3.25rem;
  letter-spacing: -0.75px;
}

.vt-product-quote-thanks__subtitle {
  margin: 0;
  color: rgb(255 255 255 / 0.8);
  font-size: 1.25rem;
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.75rem;
}

.vt-product-quote-thanks__illustration {
  display: block;
  width: min(100%, 24.7215rem);
  height: auto;
  aspect-ratio: 396 / 311;
  object-fit: contain;
  object-position: center bottom;
}

@media (max-width: 1024px) {
  .vt-product-quote-thanks {
    padding: clamp(var(--vt-space-4), 2.08vw, 1.875rem);
  }

  .vt-product-quote-thanks__dialog {
    gap: 2rem;
    padding: 1.5rem 1.5rem 2.5rem;
  }

  .vt-product-quote-thanks__content {
    min-height: auto;
    padding-bottom: 0;
  }

  .vt-product-quote-thanks__title {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.1;
  }

  .vt-product-quote-thanks__subtitle {
    font-size: clamp(1rem, 4vw, 1.25rem);
    line-height: 1.4;
  }
}

body.vt-product-gallery-lightbox-open {
  overflow: hidden;
}

.vt-product-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--vt-space-4);
}

.vt-product-gallery-lightbox[hidden] {
  display: none;
}

.vt-product-gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgb(15 23 42 / 0.72);
  cursor: pointer;
}

.vt-product-gallery-lightbox__panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 72rem);
  max-height: calc(100vh - var(--vt-space-8));
}

.vt-product-gallery-lightbox__figure {
  margin: 0;
  width: 100%;
  max-height: calc(100vh - var(--vt-space-8));
}

.vt-product-gallery-lightbox__image {
  display: block;
  width: 100%;
  max-height: calc(100vh - var(--vt-space-8));
  object-fit: contain;
  object-position: center;
}

.vt-product-gallery-lightbox__close {
  position: absolute;
  top: calc(var(--vt-space-2) * -1);
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: var(--vt-radius-full);
  color: var(--vt-color-text-inverse);
  background: rgb(15 23 42 / 0.84);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.vt-product-gallery-lightbox__close:focus-visible {
  outline: 2px solid var(--vt-color-neutral-0);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .vt-product-category-page .vt-product-line-selector-section,
  .vt-product-category-page .vt-product-line-content-section {
    padding-block: var(--vt-section-spacing-md);
  }

  .vt-product-line-section__title {
    line-height: var(--vt-text-section-line-height);
  }

  .vt-product-category-page .vt-product-line-section__grid.vt-grid--4 {
    grid-template-columns: 1fr;
    gap: var(--vt-product-card-col-gap);
    justify-content: start;
    justify-items: stretch;
    width: 100%;
  }

  .vt-product-category-page .vt-product-line-section__grid > .vt-product-card,
  .vt-product-category-page .vt-product-card {
    width: 100%;
    max-width: none;
  }

  .vt-product-card__media {
    width: 100%;
  }

  .vt-product-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: var(--vt-product-card-image-ratio);
    object-fit: contain;
  }

  .vt-product-card__placeholder {
    width: 100%;
    min-height: 0;
    aspect-ratio: var(--vt-product-card-image-ratio);
  }

  .vt-product-detail-page .vt-product-related__container {
    padding-block: var(--vt-section-spacing-md);
  }

  .vt-product-detail-page .vt-product-detail-overview {
    padding-block: var(--vt-section-spacing-md);
  }

  .vt-product-detail-page .vt-product-detail-content__container {
    padding-block: var(--vt-section-spacing-md);
  }

  .vt-contact-form-block__container.vt-container {
    padding-block: var(--vt-section-spacing-md);
  }

  .vt-product-detail-page .vt-product-detail-overview__title,
  .vt-product-detail-page .vt-product-detail-content__title {
    font-size: clamp(1.5rem, 6vw, 1.875rem);
    line-height: 1.2;
  }

  .vt-product-detail-page .vt-product-related__header {
    flex-wrap: wrap;
    align-items: center;
  }

  .vt-product-detail-page .vt-product-related__title {
    font-size: clamp(1.5rem, 6vw, 1.875rem);
    line-height: 1.2;
  }

  .vt-product-detail-page .vt-product-related__slide {
    flex: 0 0 100%;
    max-width: none;
  }
}

/*
 * Homepage hero slider ? Figma node 12:21.
 */

.vt-home-hero {
  --vt-home-hero-height: 34.6875rem; /* 555px — Figma 12:21 */
  --vt-home-hero-brand: var(--hm-highlight); /* CTA fill #2BC0D0 */
  --vt-home-hero-title-max: 49.94625rem; /* 799px */
  --vt-home-hero-cta-gap: 8.25rem; /* 32px heading margin + 100px Figma spacer */
  --vt-home-hero-transition-duration: 700ms;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.vt-home-hero__viewport {
  position: relative;
  min-height: var(--vt-home-hero-height);
}

.vt-home-hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  min-height: var(--vt-home-hero-height);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--vt-home-hero-transition-duration) var(--vt-motion-ease),
    visibility var(--vt-home-hero-transition-duration) var(--vt-motion-ease);
}

.vt-home-hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vt-home-hero--single .vt-home-hero__slide {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vt-home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* HelixMed overlay — Figma 12:24, client-locked #0A518E (not #0C508C) */
.vt-home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgb(10 81 142 / 0.8) 12.365%,
    rgb(10 81 142 / 0.24) 100%
  );
}

.vt-home-hero__picture,
.vt-home-hero__image {
  display: block;
  width: 100%;
  height: 100%;
}

.vt-home-hero__image {
  object-fit: cover;
}

.vt-home-hero__image--pos-left {
  object-position: left center;
}

.vt-home-hero__image--pos-center {
  object-position: center center;
}

.vt-home-hero__image--pos-right {
  object-position: right center;
}

.vt-home-hero__container.vt-container {
  position: relative;
  z-index: 2;
  width: min(100% - (1.875rem * 2), 80rem); /* 1280px + 30px gutters */
  max-width: 80rem;
  padding-inline: 1.875rem;
}

.vt-home-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: fit-content;
  max-width: min(100%, var(--vt-home-hero-title-max));
}

.vt-home-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: inherit;
  gap: 0.5rem;
  width: 100%;
  min-height: 0;
  flex: 0 0 auto;
}

.vt-home-hero__copy + .vt-home-hero__cta {
  margin-top: var(--vt-home-hero-cta-gap);
  flex: 0 0 auto;
}

.vt-home-hero__slide--align-left .vt-home-hero__content {
  align-items: flex-start;
  margin-inline-start: 0;
  margin-inline-end: auto;
  text-align: left;
}

.vt-home-hero__slide--align-left .vt-home-hero__copy {
  align-items: flex-start;
}

.vt-home-hero__slide--align-center .vt-home-hero__content {
  align-items: center;
  margin-inline-start: auto;
  margin-inline-end: auto;
  text-align: center;
}

.vt-home-hero__slide--align-center .vt-home-hero__copy {
  align-items: center;
}

.vt-home-hero__slide--align-right .vt-home-hero__content {
  align-items: flex-end;
  margin-inline-start: auto;
  margin-inline-end: 0;
  text-align: right;
}

.vt-home-hero__slide--align-right .vt-home-hero__copy {
  align-items: flex-end;
}

.vt-home-hero__title {
  margin: 0;
  max-width: var(--vt-home-hero-title-max);
  min-height: 0;
  flex: 0 0 auto;
  color: #ffffff;
  font-family: var(--vt-font-heading);
  font-size: 4.5rem; /* 72px */
  font-weight: var(--vt-font-weight-bold);
  line-height: 1.1; /* 79.2px at 72px */
  letter-spacing: -0.025em; /* -1.8px at 72px */
  text-shadow: 0 4px 2px rgb(0 0 0 / 0.15);
}

.vt-home-hero__subtitle {
  margin: 0;
  min-height: 0;
  flex: 0 0 auto;
  color: rgb(255 255 255 / 0.8);
  font-size: var(--vt-font-size-md);
  font-weight: var(--vt-font-weight-regular);
  line-height: var(--vt-text-card-line-height);
}

.vt-home-hero__slide--align-center .vt-home-hero__subtitle {
  max-width: 42rem;
}

.vt-home-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* 8px */
  width: fit-content;
  max-width: 100%;
  min-height: 0;
  padding: 1rem 2rem; /* 16px 32px */
  color: #ffffff;
  background: #2bc0d0;
  border: 0;
  border-radius: 2.125rem; /* 34px */
  box-shadow: 0 4px 7px rgb(10 81 142 / 0.35);
  font-family: var(--vt-font-sans);
  font-size: 1.125rem; /* 18px */
  font-weight: var(--vt-font-weight-medium);
  line-height: 1.75rem; /* 28px */
  text-decoration: none;
  transition:
    background-color var(--vt-motion-duration-fast) var(--vt-motion-ease),
    box-shadow var(--vt-motion-duration-fast) var(--vt-motion-ease);
}

.vt-home-hero__cta:hover,
.vt-home-hero__cta:focus {
  color: #ffffff;
  background: #2bc0d0;
  filter: brightness(0.94);
  text-decoration: none;
}

.vt-home-hero__cta:focus-visible {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-home-hero__cta-icon {
  display: block;
  flex: 0 0 auto;
  width: 1.125rem;
  height: 1.125rem;
}

.vt-home-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--vt-space-2);
  transform: translateX(-50%);
}

.vt-home-hero__dot {
  width: 0.625rem;
  height: 0.625rem;
  padding: 0;
  background: rgb(255 255 255 / 0.45);
  border: 0;
  border-radius: var(--vt-radius-full);
  cursor: pointer;
  transition:
    background-color var(--vt-motion-duration-fast) var(--vt-motion-ease),
    transform var(--vt-motion-duration-fast) var(--vt-motion-ease);
}

.vt-home-hero__dot.is-active {
  background: var(--vt-color-text-inverse);
  transform: scale(1.15);
}

.vt-home-hero__dot:focus-visible {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .vt-home-hero__slide {
    transition: none;
  }
}

@media (max-width: 1024px) {
  .vt-home-hero {
    --vt-home-hero-height: 28rem;
    --vt-home-hero-cta-gap: 4rem;
  }

  .vt-home-hero__title {
    font-size: clamp(3.25rem, 5.6vw, 3.75rem); /* 52–60px */
    line-height: 1.1;
    letter-spacing: -0.025em;
  }
}

@media (max-width: 768px) {
  .vt-home-hero {
    --vt-home-hero-height: 24rem;
    --vt-home-hero-cta-gap: 2rem;
  }

  .vt-home-hero__container.vt-container {
    padding-inline: var(--vt-space-4);
  }

  .vt-home-hero__title {
    font-size: clamp(2.125rem, 8.5vw, 2.5rem); /* 34–40px */
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .vt-home-hero__subtitle {
    font-size: var(--vt-font-size-base);
  }

  .vt-home-hero__cta {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .vt-home-hero__dots {
    bottom: var(--vt-space-4);
  }
}

/*
 * Homepage intro ? Figma node 1:108.
 */

.vt-home-intro {
  position: relative;
  overflow: hidden;
  padding-block: 3.75rem; /* ~327px section with content — Figma 1:108 */
  background: var(--hm-surface);
}

.vt-home-intro__decor {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: var(--vt-radius-full);
  pointer-events: none;
}

.vt-home-intro__decor--primary {
  top: -12rem;
  right: -12rem;
  background: rgb(10 81 142 / 0.1);
  filter: blur(32px);
}

.vt-home-intro__decor--secondary {
  bottom: -12rem;
  left: -12rem;
  background: rgb(43 192 208 / 0.1);
  filter: blur(32px);
}

.vt-home-intro__inner.vt-container {
  position: relative;
  z-index: 1;
  width: min(100% - (1.875rem * 2), 80rem);
  padding-inline: 1.875rem;
}

.vt-home-intro__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1875rem;
}

.vt-home-intro__heading {
  margin: 0;
  width: 100%;
  color: var(--hm-heading);
  font-size: 3rem; /* 48px */
  font-weight: var(--vt-font-weight-bold);
  line-height: 4.125rem;
  letter-spacing: 0;
  text-align: center;
}

.vt-home-intro__title-text,
.vt-home-intro__highlight {
  font: inherit;
}

.vt-home-intro__highlight {
  color: var(--hm-highlight);
}

.vt-home-intro__description {
  margin: 0;
  width: 100%;
  max-width: 52rem;
  color: var(--hm-muted);
  font-size: var(--vt-text-card-size); /* 18px */
  font-weight: var(--vt-font-weight-regular);
  line-height: var(--vt-text-card-line-height);
  text-align: center;
}

@media (max-width: 1024px) {
  .vt-home-intro__heading {
    font-size: clamp(2.25rem, 6vw, 3rem);
    line-height: 1.375;
  }
}

@media (max-width: 768px) {
  .vt-home-intro {
    padding-block: var(--vt-space-10);
  }

  .vt-home-intro__inner.vt-container {
    padding-inline: var(--vt-space-4);
  }

  .vt-home-intro__heading {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    line-height: 1.35;
  }

  .vt-home-intro__description {
    font-size: var(--vt-font-size-base);
    line-height: var(--vt-line-height-snug);
  }
}

/*
 * Homepage business sectors ? Figma node 12:52.
 */

.vt-home-business-sectors {
  padding-block: 3.75rem; /* 60px — Figma 12:52 */
  background: var(--hm-surface-soft);
}

.vt-home-business-sectors__inner.vt-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  width: min(100% - (1.875rem * 2), 80rem);
  padding-inline: 1.875rem;
}

.vt-home-business-sectors__title {
  margin: 0;
  width: 100%;
  color: var(--hm-heading);
  font-size: var(--vt-text-section-size);
  font-weight: var(--vt-font-weight-bold);
  line-height: 3.25rem;
  letter-spacing: var(--vt-text-section-letter-spacing);
  text-align: left;
}

.vt-home-business-sectors__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  width: 100%;
}

.vt-home-business-sectors__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--vt-color-neutral-0);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.04);
}

.vt-home-business-sectors__media {
  position: relative;
  width: 100%;
  height: 20.8125rem;
  overflow: hidden;
}

.vt-home-business-sectors__media--alt {
  background: #f8f9fa;
}

.vt-home-business-sectors__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vt-home-business-sectors__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem 2rem;
}

.vt-home-business-sectors__card-title {
  margin: 0;
  padding-top: 0.75rem;
  width: 100%;
  color: var(--hm-heading);
  font-size: 1.25rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 1.75rem;
}

.vt-home-business-sectors__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  color: var(--hm-highlight);
  font-size: var(--vt-text-nav-size);
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.0625rem;
  text-decoration: none;
}

.vt-home-business-sectors__link--accent {
  color: var(--hm-highlight);
}

.vt-home-business-sectors__link:hover,
.vt-home-business-sectors__link:focus {
  text-decoration: none;
}

.vt-home-business-sectors__link--primary:hover,
.vt-home-business-sectors__link--primary:focus {
  color: var(--vt-color-brand);
}

.vt-home-business-sectors__link--accent:hover,
.vt-home-business-sectors__link--accent:focus {
  color: var(--vt-color-brand);
}

.vt-home-business-sectors__link:focus-visible {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-home-business-sectors__link-icon {
  display: block;
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
}

@media (max-width: 1023px) {
  .vt-home-business-sectors__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .vt-home-business-sectors {
    padding-block: var(--vt-space-10);
  }

  .vt-home-business-sectors__inner.vt-container {
    gap: var(--vt-space-10);
    padding-inline: var(--vt-space-4);
  }

  .vt-home-business-sectors__title {
    font-size: clamp(1.5rem, 6vw, var(--vt-text-section-size));
    line-height: 1.35;
  }

  .vt-home-business-sectors__media {
    height: clamp(14rem, 55vw, 20.8125rem);
  }

  .vt-home-business-sectors__body {
    padding-inline: var(--vt-space-6);
  }
}

/*
 * Homepage featured product categories — Figma node 12:95.
 * Distinct from products landing grid (35:98 / ~380px cards).
 */

.vt-home-featured-categories {
  --vt-products-primary: var(--vt-color-brand);
  --vt-home-categories-card-height: 24.75rem; /* 396px */
  --vt-home-categories-shadow-gutter: 2.5rem; /* 40px — room for card shadow */
  padding-block: 3.75rem; /* 60px */
  background: #f9faff;
}

.vt-home-featured-categories__inner.vt-container {
  --vt-container-padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3rem; /* 48px — header to carousel */
  box-sizing: border-box;
  width: 100%;
  max-width: 80rem; /* 1280px */
  margin-inline: auto;
  padding-inline: 1.875rem; /* 30px */
}

.vt-home-featured-categories__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--vt-space-4);
  width: 100%;
}

.vt-home-featured-categories__title {
  margin: 0;
  color: #1e293b;
  font-family: var(--vt-font-heading);
  font-size: 1.875rem; /* 30px */
  font-weight: var(--vt-font-weight-bold);
  line-height: 3.25rem; /* 52px */
  letter-spacing: -0.046875rem; /* -0.75px */
  text-align: left;
}

.vt-home-featured-categories__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* 8px */
  flex-shrink: 0;
  margin-inline-start: auto;
}

.vt-home-featured-categories__controls[hidden] {
  display: none;
}

.vt-home-featured-categories__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 2.75rem; /* 44px */
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.8125rem;
  border: 1px solid rgb(241 245 249 / 0.5);
  border-radius: 9999px;
  background: #fff;
  color: #1e293b;
  cursor: pointer;
}

.vt-home-featured-categories__control:focus-visible {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-home-featured-categories__control:disabled {
  color: rgb(12 80 140 / 0.3);
  opacity: 1;
  cursor: not-allowed;
}

.vt-home-featured-categories__control-icon {
  display: block;
  width: 1.125rem; /* 18px */
  height: 1.125rem;
}

.vt-home-featured-categories__viewport {
  width: 100%;
  height: calc(var(--vt-home-categories-card-height) + var(--vt-home-categories-shadow-gutter));
  min-width: 0;
  margin-bottom: calc(-1 * var(--vt-home-categories-shadow-gutter));
  overflow: hidden;
}

.vt-home-featured-categories__track {
  display: flex;
  align-items: flex-start;
  gap: 1.875rem; /* 30px */
  box-sizing: border-box;
  height: 100%;
  min-height: 0;
  padding-bottom: var(--vt-home-categories-shadow-gutter);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.vt-home-featured-categories__track::-webkit-scrollbar {
  display: none;
}

.vt-home-featured-categories__slide {
  flex: 0 0 15.625rem; /* 250px — do not stretch to fill */
  width: 15.625rem;
  height: var(--vt-home-categories-card-height); /* 396px */
  scroll-snap-align: start;
  min-width: 0;
}

/* Home card layout (12:95) — image grows; title band is compact (no CTA slot). */
.vt-product-category-card.vt-product-category-card--home {
  width: 100%;
  height: 100%;
  min-height: 0;
  gap: 0;
  /* Allow box-shadow to paint; image clip stays on __media. */
  overflow: visible;
}

.vt-product-category-card--home .vt-product-category-card__link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* 8px between image and title band */
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 1rem;
}

.vt-product-category-card--home .vt-product-category-card__media {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
}

.vt-product-category-card--home .vt-product-category-card__body {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 1.5rem; /* 24px — Figma 830:2524 */
}

.vt-product-category-card--home .vt-product-category-card__title {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  box-sizing: border-box;
  width: 100%;
  height: 3.5rem; /* 56px title band */
  min-height: 3.5rem;
  max-height: 3.5rem;
  margin: 0;
  overflow: hidden;
  color: #1e293b;
  font-family: var(--vt-font-heading);
  font-size: 1.25rem; /* 20px */
  font-weight: var(--vt-font-weight-bold);
  line-height: 1.75rem; /* 28px */
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .vt-home-featured-categories__track,
  .vt-carousel__track {
    scroll-behavior: auto;
  }
}

@media (max-width: 768px) {
  .vt-home-featured-categories {
    padding-block: 2.5rem;
  }

  .vt-home-featured-categories__inner.vt-container {
    gap: 2rem;
    padding-inline: var(--vt-space-4, 1rem);
  }

  .vt-home-featured-categories__title {
    font-size: clamp(1.5rem, 6vw, 1.875rem);
    line-height: 1.35;
    letter-spacing: -0.03em;
  }

  .vt-home-featured-categories__viewport,
  .vt-home-featured-categories__track {
    height: auto;
    min-height: 0;
  }

  .vt-home-featured-categories__viewport {
    margin-bottom: calc(-1 * var(--vt-home-categories-shadow-gutter));
  }

  .vt-home-featured-categories__track {
    padding-bottom: var(--vt-home-categories-shadow-gutter);
  }

  .vt-home-featured-categories__slide {
    flex: 0 0 min(15.625rem, 78vw);
    width: min(15.625rem, 78vw);
    height: auto;
    min-height: 22rem;
  }

  .vt-product-category-card--home .vt-product-category-card__media {
    flex: 1 1 auto;
    min-height: 14rem;
  }
}

/*
 * Homepage partner logos section — Figma node 12:216.
 */

.vt-home-partner-logos {
  --vt-home-partner-logos-gap: 4rem; /* 64px desktop — Figma 12:216 */
  --vt-home-partner-logos-height: 5.625rem; /* 90px */
  --vt-home-partner-logos-duration: 24s;
  --vt-marquee-distance: 0px;
  padding-block: 2.5rem;
  overflow-x: hidden;
  background: var(--hm-surface-soft);
}

.vt-home-partner-logos__inner.vt-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  width: min(100% - (1.875rem * 2), 80rem);
  max-width: 80rem;
  padding-inline: 1.875rem;
}

.vt-home-partner-logos__title {
  margin: 0;
  padding-block: 1.25rem;
  width: 100%;
  color: var(--hm-heading);
  font-size: var(--vt-text-section-size);
  font-weight: var(--vt-font-weight-bold);
  line-height: 3.25rem;
  letter-spacing: var(--vt-text-section-letter-spacing);
  text-align: center;
}

.vt-home-partner-logos__viewport {
  width: 100%;
  height: var(--vt-home-partner-logos-height);
  overflow: hidden;
  touch-action: pan-y;
}

.vt-home-partner-logos__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transform: none;
  animation: none;
  will-change: auto;
}

.vt-home-partner-logos__group {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: var(--vt-home-partner-logos-gap);
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vt-home-partner-logos__group--duplicate {
  display: none;
}

.vt-home-partner-logos.is-overflowing .vt-home-partner-logos__track {
  justify-content: flex-start;
  width: max-content;
  gap: var(--vt-home-partner-logos-gap);
  will-change: transform;
  animation: vt-home-partner-logos-marquee-ltr var(--vt-home-partner-logos-duration) linear infinite;
}

.vt-home-partner-logos.is-overflowing .vt-home-partner-logos__group--duplicate {
  display: flex;
}

.vt-home-partner-logos.is-overflowing .vt-home-partner-logos__viewport:focus-within .vt-home-partner-logos__track,
.vt-home-partner-logos.is-overflowing .vt-home-partner-logos__viewport[data-vt-home-partner-logos-paused] .vt-home-partner-logos__track {
  animation-play-state: paused;
}

@media (hover: hover) {
  .vt-home-partner-logos.is-overflowing .vt-home-partner-logos__viewport:hover .vt-home-partner-logos__track {
    animation-play-state: paused;
  }
}

.vt-home-partner-logos__item {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: none;
}

.vt-home-partner-logos .vt-partner-logo--home {
  width: auto;
  height: 100%;
}

.vt-home-partner-logos .vt-partner-logo--home .vt-partner-logo__image {
  max-height: var(--vt-home-partner-logos-height);
}

@keyframes vt-home-partner-logos-marquee-ltr {
  from {
    transform: translate3d(calc(-1 * var(--vt-marquee-distance)), 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 64rem) {
  .vt-home-partner-logos {
    --vt-home-partner-logos-gap: 2.75rem; /* 44px tablet */
  }
}

@media (max-width: 47.9375rem) {
  .vt-home-partner-logos {
    --vt-home-partner-logos-gap: 1.875rem; /* 30px mobile */
    --vt-home-partner-logos-height: 3.75rem; /* 60px */
  }

  .vt-home-partner-logos__title {
    font-size: 1.625rem;
    line-height: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vt-home-partner-logos.is-overflowing .vt-home-partner-logos__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-x;
  }

  .vt-home-partner-logos.is-overflowing .vt-home-partner-logos__viewport::-webkit-scrollbar {
    display: none;
  }

  .vt-home-partner-logos.is-overflowing .vt-home-partner-logos__track {
    animation: none;
    will-change: auto;
    transform: none;
  }

  .vt-home-partner-logos.is-overflowing .vt-home-partner-logos__group--duplicate {
    display: flex;
  }
}

/*
 * Homepage news section ? Figma node 539:2078.
 */

.vt-home-news {
  --vt-home-news-primary: var(--vt-color-brand);
  --vt-home-news-slide-width: calc((100cqw - 3rem) / 3);
  --vt-news-media-height: calc(var(--vt-home-news-slide-width) * 223 / 390);
  padding-block: 5.0625rem 5rem; /* 81px / 80px — Figma 539:2078 */
  background: var(--hm-surface);
  border-top: 1px solid rgb(241 245 249 / 0.5);
}

.vt-home-news__inner.vt-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: min(100% - (1.875rem * 2), 80rem);
  padding-inline: 1.875rem;
}

.vt-home-news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--vt-space-4);
  width: 100%;
}

.vt-home-news__heading-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.vt-home-news__title {
  margin: 0;
  color: #1e293b;
  font-size: var(--vt-text-section-size);
  font-weight: var(--vt-font-weight-bold);
  line-height: var(--vt-text-section-line-height);
  letter-spacing: var(--vt-text-section-letter-spacing);
}

.vt-home-news__subtitle {
  margin: 0;
  color: #64748b;
  font-size: var(--vt-font-size-base);
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.5rem;
}

.vt-home-news__more-link {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.5rem;
  color: var(--hm-highlight);
  font-size: var(--vt-font-size-base);
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.5rem;
  text-decoration: none;
}

.vt-home-news__more-link:hover,
.vt-home-news__more-link:focus {
  color: var(--hm-primary);
  text-decoration: underline;
}

.vt-home-news__more-link:focus-visible {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-home-news__more-link-icon {
  display: block;
  width: 1rem;
  height: 1rem;
}

.vt-home-news__carousel {
  position: relative;
  overflow: visible;
  container-type: inline-size;
  width: 100%;
  min-width: 0;
}

.vt-home-news__viewport {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.vt-home-news__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.vt-home-news__track::-webkit-scrollbar {
  display: none;
}

.vt-home-news__slide {
  flex: 0 0 var(--vt-home-news-slide-width);
  scroll-snap-align: start;
  min-width: 0;
}

.vt-home-news .vt-news-card__media {
  height: var(--vt-news-media-height);
}

.vt-home-news .vt-news-card__image,
.vt-home-news .vt-news-card__placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.vt-home-news__control {
  position: absolute;
  top: calc(var(--vt-news-media-height) / 2);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.125rem;
  min-height: 3.125rem;
  padding: 1rem;
  border: 1px solid rgb(241 245 249 / 0.5);
  border-radius: var(--vt-radius-full);
  background: var(--vt-color-neutral-0);
  color: #1e293b;
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.03);
  cursor: pointer;
  transition:
    background-color var(--vt-motion-duration-fast) var(--vt-motion-ease),
    color var(--vt-motion-duration-fast) var(--vt-motion-ease),
    border-color var(--vt-motion-duration-fast) var(--vt-motion-ease);
}

.vt-home-news__control[hidden] {
  display: none;
}

.vt-home-news__control--prev {
  left: 0;
  transform: translateY(-50%);
}

.vt-home-news__control--next {
  right: 0;
  transform: translateY(-50%);
}

.vt-home-news__control:hover,
.vt-home-news__control:focus-visible {
  background: var(--vt-home-news-primary);
  color: var(--vt-color-text-inverse);
  border-color: transparent;
}

.vt-home-news__control:focus-visible {
  outline: 2px solid var(--vt-color-focus);
  outline-offset: 2px;
}

.vt-home-news__control:disabled {
  cursor: not-allowed;
}

.vt-home-news__control-icon {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
}

@media (max-width: 1024px) {
  .vt-home-news {
    --vt-home-news-slide-width: min(87cqw, 24.416875rem);
  }
}

@media (max-width: 768px) {
  .vt-home-news {
    padding-block: var(--vt-space-10);
  }

  .vt-home-news__inner.vt-container {
    gap: var(--vt-space-8);
    padding-inline: var(--vt-space-4);
  }

  .vt-home-news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--vt-space-4);
  }

  .vt-home-news__title {
    font-size: clamp(1.5rem, 6vw, var(--vt-text-section-size));
    line-height: 1.35;
  }
}

/*
 * About Us page ? Phase 1 (Hero + Intro). Figma nodes 45:656, 43:1103.
 * Phase 2 styles appended below (Vision/Mission + Services).
 */

.vt-about-page {
  --vt-about-primary: var(--vt-color-brand-dark);
  --vt-container-max: 80rem;
}

.vt-page-hero--about {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 24.9375rem;
  overflow: hidden;
  padding-block: 0;
  color: var(--vt-color-text-inverse);
  background: linear-gradient(90deg, var(--vt-about-primary) 0%, rgb(10 81 142 / 0.8) 100%);
}

.vt-page-hero--about::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: var(--vt-page-hero-overlay-gradient);
  opacity: 0.9;
}

.vt-page-hero--about .vt-page-hero__container {
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: center;
  min-height: 24.9375rem;
  width: min(100% - (1.875rem * 2), 80rem);
  padding-inline: 1.875rem;
  text-align: center;
}

.vt-page-hero--about .vt-page-hero__content {
  align-items: center;
}

.vt-page-hero--about .vt-page-hero__title {
  max-width: 76.25rem;
  margin: 0;
  color: var(--vt-color-text-inverse);
  font-size: 3.75rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 3.75rem;
  letter-spacing: -0.09375rem;
}

.vt-page-hero--about .vt-page-hero__description {
  margin: 0;
  color: rgb(255 255 255 / 0.9);
  font-size: var(--vt-font-size-md);
  font-weight: var(--vt-font-weight-regular);
  line-height: var(--vt-text-card-line-height);
}

.vt-about-intro {
  padding-block: 5.625rem;
  background: var(--vt-color-neutral-0);
}

.vt-about-intro__inner.vt-container {
  width: min(100% - (1.875rem * 2), 80rem);
  padding-inline: 1.875rem;
}

.vt-about-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
  gap: 4rem;
  align-items: start;
}

.vt-about-intro__heading {
  min-width: 0;
}

.vt-about-intro__title {
  margin: 0;
  color: #1e293b;
  font-size: 3rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 4.125rem;
}

.vt-about-intro__content {
  min-width: 0;
  color: #64748b;
  font-size: 1.125rem;
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.75rem;
}

.vt-about-intro__content > *:first-child {
  margin-top: 0;
}

.vt-about-intro__content > *:last-child {
  margin-bottom: 0;
}

.vt-about-intro__content p {
  margin: 0 0 1.75rem;
}

.vt-about-intro__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .vt-page-hero--about {
    min-height: 20rem;
  }

  .vt-page-hero--about .vt-page-hero__container {
    min-height: 20rem;
  }

  .vt-page-hero--about .vt-page-hero__title {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    line-height: 1.1;
    letter-spacing: -0.05em;
  }

  .vt-about-intro {
    padding-block: 4rem;
  }

  .vt-about-intro__grid {
    gap: 2.5rem;
  }

  .vt-about-intro__title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.3;
  }
}

@media (max-width: 768px) {
  .vt-page-hero--about {
    min-height: 16rem;
  }

  .vt-page-hero--about .vt-page-hero__container {
    min-height: 16rem;
    padding-inline: var(--vt-space-4);
  }

  .vt-page-hero--about .vt-page-hero__title {
    font-size: clamp(2rem, 8vw, 2.75rem);
    line-height: 1.15;
  }

  .vt-about-intro {
    padding-block: var(--vt-space-10);
  }

  .vt-about-intro__inner.vt-container {
    padding-inline: var(--vt-space-4);
  }

  .vt-about-intro__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--vt-space-6);
  }

  .vt-about-intro__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    line-height: 1.3;
  }

  .vt-about-intro__content {
    font-size: var(--vt-font-size-base);
    line-height: 1.625;
  }

  .vt-about-intro__content p {
    margin-bottom: 1.25rem;
  }
}

/*
 * About Us page ? Phase 2 (Vision/Mission + Services).
 * Figma nodes 43:1116, 43:1141.
 */

.vt-about-vision {
  padding-block: 6.0625rem;
  background: #f9faff;
  border-block: 1px solid rgb(241 245 249 / 0.5);
}

.vt-about-vision__inner.vt-container {
  width: min(100% - (1.875rem * 2), 80rem);
  padding-inline: 1.875rem;
}

.vt-about-vision__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.vt-about-vision__grid:has(> :only-child) {
  grid-template-columns: minmax(0, 1fr);
}

.vt-about-vision-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  height: 100%;
  padding: 2.5625rem;
  background: var(--vt-color-neutral-0, #fff);
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  box-shadow:
    0 1px 3px 0 rgb(0 0 0 / 0.1),
    0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.vt-about-vision-card__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
}

.vt-about-vision-card__icon-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  flex-shrink: 0;
}

.vt-about-vision-card__title {
  margin: 1.5rem 0 0;
  color: #1e293b;
  font-size: 1.5rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 2rem;
}

.vt-about-vision-card__content {
  margin: 1rem 0 0;
  color: #64748b;
  font-size: 1.125rem;
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.75rem;
}

.vt-about-vision-card__content br + br {
  display: none;
}

.vt-about-services {
  padding-block: 5rem;
  background: var(--vt-color-neutral-0, #fff);
}

.vt-about-services__inner.vt-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.125rem;
  width: min(100% - (1.875rem * 2), 80rem);
  padding-inline: 1.875rem;
}

.vt-about-services__title {
  margin: 0;
  max-width: 42rem;
  color: #1e293b;
  font-size: 1.875rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 3.25rem;
  letter-spacing: -0.046875rem;
  text-align: center;
}

.vt-about-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
  width: 100%;
}

.vt-about-services__grid:has(> :only-child) {
  grid-template-columns: minmax(0, 1fr);
}

.vt-about-service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  height: 100%;
  padding: 2.5rem;
  border-radius: 1rem;
}

.vt-about-service-card--primary {
  color: #cad5e2;
  background: linear-gradient(90deg, #0a518e 0%, #3785c5 100%);
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.vt-about-service-card--secondary {
  background: var(--vt-color-neutral-0, #fff);
  border: 1px solid #f1f5f9;
  box-shadow:
    0 1px 3px 0 rgb(0 0 0 / 0.1),
    0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.vt-about-service-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 1.75rem;
}

.vt-about-service-card--primary .vt-about-service-card__title {
  color: #fff;
}

.vt-about-service-card--secondary .vt-about-service-card__title {
  color: #1e293b;
}

.vt-about-service-card__content {
  min-width: 0;
  font-size: 1.125rem;
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.75rem;
}

.vt-about-service-card--primary .vt-about-service-card__content {
  color: #cad5e2;
}

.vt-about-service-card--secondary .vt-about-service-card__content {
  color: #64748b;
}

.vt-about-service-card__content > *:first-child {
  margin-top: 0;
}

.vt-about-service-card__content > *:last-child {
  margin-bottom: 0;
}

.vt-about-service-card__content p {
  margin: 0 0 0.75rem;
}

.vt-about-service-card__content p:last-child {
  margin-bottom: 0;
}

.vt-about-service-card__content ul,
.vt-about-service-card__content ol {
  margin: 0;
  padding: 0 0 0 1.6875rem;
  list-style-position: outside;
}

.vt-about-service-card__content ul {
  list-style-type: disc;
}

.vt-about-service-card__content ol {
  list-style-type: decimal;
}

.vt-about-service-card__content li {
  margin: 0 0 0.625rem;
  padding-left: 0.25rem;
}

.vt-about-service-card__content li:last-child {
  margin-bottom: 0;
}

.vt-about-service-card--secondary .vt-about-service-card__content li::marker {
  color: #64748b;
}

.vt-about-service-card--primary .vt-about-service-card__content li::marker {
  color: #cad5e2;
}

.vt-about-service-card--primary .vt-about-service-card__content a {
  color: var(--vt-color-brand);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}

.vt-about-service-card--secondary .vt-about-service-card__content a {
  color: var(--vt-about-primary, var(--vt-color-brand));
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}

.vt-about-service-card__content a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.vt-about-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 1.0625rem;
  margin-top: auto;
  padding-top: 1.5rem;
  color: inherit;
  font-size: 1rem;
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.0625rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.vt-about-service-card--primary .vt-about-service-card__link {
  color: #4bc5d3;
}

.vt-about-service-card--secondary .vt-about-service-card__link {
  color: #0c508c;
}

.vt-about-service-card__link:hover,
.vt-about-service-card__link:focus {
  opacity: 0.85;
}

.vt-about-service-card__link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 0.25rem;
}

.vt-about-service-card__link-icon {
  display: block;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .vt-about-vision {
    padding-block: 4.5rem;
  }

  .vt-about-vision-card {
    padding: 2rem;
  }

  .vt-about-services {
    padding-block: 4rem;
  }

  .vt-about-services__inner.vt-container {
    gap: 2.5rem;
  }

  .vt-about-services__title {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    line-height: 1.4;
    letter-spacing: -0.03em;
  }

  .vt-about-service-card {
    padding: 2rem;
  }

  .vt-about-vision__grid,
  .vt-about-services__grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .vt-about-vision {
    padding-block: 3.5rem;
  }

  .vt-about-vision__inner.vt-container,
  .vt-about-services__inner.vt-container {
    padding-inline: var(--vt-space-4);
  }

  .vt-about-vision__grid,
  .vt-about-services__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .vt-about-vision-card {
    padding: 1.5rem;
  }

  .vt-about-vision-card__title {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .vt-about-vision-card__content {
    font-size: var(--vt-font-size-base);
    line-height: 1.625;
  }

  .vt-about-services {
    padding-block: 3rem;
  }

  .vt-about-services__inner.vt-container {
    gap: 2rem;
  }

  .vt-about-services__title {
    font-size: clamp(1.375rem, 5vw, 1.75rem);
    line-height: 1.35;
  }

  .vt-about-service-card {
    padding: 1.5rem;
  }

  .vt-about-service-card__content {
    font-size: var(--vt-font-size-base);
    line-height: 1.625;
  }

  .vt-about-service-card__content ul,
  .vt-about-service-card__content ol {
    padding-left: 1.25rem;
  }

  .vt-about-service-card__link {
    padding-top: 1rem;
  }
}

/*
 * About Us page ? Phase 3 (Values). Figma node 43:1173.
 */

.vt-about-values {
  position: relative;
  isolation: isolate;
  padding-block: 5rem;
  color: #fff;
  background: linear-gradient(90deg, #0c508c 0%, #4599e3 100%);
}

.vt-about-values::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image: var(--vt-about-values-background);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.15;
  pointer-events: none;
}

.vt-about-values__inner.vt-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: min(100% - (1.875rem * 2), 80rem);
  padding-inline: 1.875rem;
}

.vt-about-values__title {
  margin: 0;
  max-width: 42rem;
  color: #fff;
  font-size: 1.875rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 3.25rem;
  letter-spacing: -0.046875rem;
  text-align: center;
}

.vt-about-values__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  width: 100%;
}

.vt-about-values__grid:has(> :only-child) {
  grid-template-columns: minmax(0, 1fr);
}

.vt-about-value-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  min-height: 18.75rem;
  height: 100%;
  padding: 2.5625rem;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  box-shadow:
    0 1px 3px 0 rgb(0 0 0 / 0.1),
    0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.vt-about-value-card__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
}

.vt-about-value-card__icon-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  flex-shrink: 0;
}

.vt-about-value-card__title {
  margin: 1.5rem 0 0;
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: var(--vt-font-weight-semibold);
  line-height: 1.75rem;
}

.vt-about-value-card__content {
  margin: 0.75rem 0 0;
  color: #64748b;
  font-size: 1.125rem;
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.75rem;
}

@media (max-width: 1024px) {
  .vt-about-values {
    padding-block: 4rem;
  }

  .vt-about-values__inner.vt-container {
    gap: 2rem;
  }

  .vt-about-values__title {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    line-height: 1.4;
    letter-spacing: -0.03em;
  }

  .vt-about-value-card {
    padding: 2rem;
  }

  .vt-about-values__grid {
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .vt-about-values {
    padding-block: 3rem;
  }

  .vt-about-values__inner.vt-container {
    gap: 1.75rem;
    padding-inline: var(--vt-space-4);
  }

  .vt-about-values__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .vt-about-values__title {
    font-size: clamp(1.375rem, 5vw, 1.75rem);
    line-height: 1.35;
  }

  .vt-about-value-card {
    min-height: 0;
    padding: 1.5rem;
  }

  .vt-about-value-card__title {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .vt-about-value-card__content {
    font-size: var(--vt-font-size-base);
    line-height: 1.625;
  }
}

/*
 * Projects page ? Figma node 61:688.
 */

.vt-projects-page {
  --vt-projects-primary: var(--vt-color-brand-dark);
  --vt-container-max: 80rem;
}

.vt-page-hero--projects {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24.9375rem;
  overflow: hidden;
  padding-block: 0;
  color: #fff;
}

.vt-page-hero--projects .vt-page-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vt-page-hero--projects::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: var(--vt-page-hero-overlay-gradient);
  opacity: 0.9;
}

.vt-page-hero--projects .vt-page-hero__container {
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: center;
  min-height: 24.9375rem;
  width: min(100% - (1.875rem * 2), 80rem);
  padding-inline: 1.875rem;
  text-align: center;
}

.vt-page-hero--projects .vt-page-hero__content {
  align-items: center;
  width: 100%;
}

.vt-page-hero--projects .vt-page-hero__title {
  max-width: 76.25rem;
  margin: 0;
  color: #fff;
  font-size: 4.5rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 4.95rem;
  letter-spacing: -0.1125rem;
}

.vt-projects-list {
  --vt-projects-accent: #0c508c;
  padding-block: 0;
  padding-inline: 5rem;
  background: #fff;
}

.vt-projects-list__inner.vt-container {
  --vt-container-padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding: 5rem 1.875rem;
}

.vt-projects-list__title {
  margin: 0;
  color: #1e293b;
  font-family: var(--vt-font-heading);
  font-size: 2.25rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 2.5rem;
  text-align: center;
}

.vt-projects-list__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  width: 100%;
  align-items: start;
}

.vt-projects-list__empty {
  margin: 0;
  color: #64748b;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-align: center;
}

/* Projects pagination — scoped; does not affect news/search pagers. */
.vt-projects-pagination {
  display: flex;
  justify-content: center;
  width: 100%;
}

.vt-projects-pagination__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vt-projects-pagination__item {
  margin: 0;
}

.vt-projects-pagination__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.8125rem;
  color: #1e293b;
  font-family: var(--vt-font-sans);
  font-size: 1rem;
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.0625rem;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgb(241 245 249 / 0.5);
  border-radius: 9999px;
}

.vt-projects-pagination__control--page.is-current {
  color: rgb(12 80 140 / 0.3);
  pointer-events: none;
}

.vt-projects-pagination__control.is-disabled {
  color: rgb(12 80 140 / 0.3);
  pointer-events: none;
}

.vt-projects-pagination__control--dots {
  border-color: transparent;
  background: transparent;
  color: #1e293b;
  pointer-events: none;
}

.vt-projects-pagination__icon {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  line-height: 0;
}

.vt-projects-pagination__icon svg {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
}

.vt-projects-pagination__control:not(.is-disabled):not(.is-current):hover,
.vt-projects-pagination__control:not(.is-disabled):not(.is-current):focus-visible {
  color: var(--vt-projects-accent);
}

.vt-projects-pagination__control:focus-visible {
  outline: 2px solid var(--vt-color-focus, #3785c5);
  outline-offset: 2px;
}

.vt-home-news--projects {
  background: #f9faff;
  border-top: 1px solid rgb(241 245 249 / 0.5);
}

.vt-home-news--projects .vt-home-news__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  letter-spacing: 0;
}

@media (max-width: 1024px) {
  .vt-page-hero--projects {
    min-height: 20rem;
  }

  .vt-page-hero--projects .vt-page-hero__container {
    min-height: 20rem;
  }

  .vt-page-hero--projects .vt-page-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.05em;
  }

  .vt-projects-list {
    padding-inline: var(--vt-space-4, 1rem);
  }

  .vt-projects-list__inner.vt-container {
    gap: 2.5rem;
    padding: 4rem var(--vt-space-4, 1rem);
  }

  .vt-projects-list__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.2;
  }

  .vt-projects-list__grid {
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  .vt-page-hero--projects {
    min-height: 16rem;
  }

  .vt-page-hero--projects .vt-page-hero__container {
    min-height: 16rem;
    padding-inline: var(--vt-space-4);
  }

  .vt-page-hero--projects .vt-page-hero__title {
    font-size: clamp(1.75rem, 8vw, 2.75rem);
    line-height: 1.15;
  }

  .vt-projects-list {
    padding-inline: 0;
  }

  .vt-projects-list__inner.vt-container {
    gap: 2rem;
    padding: 3rem var(--vt-space-4, 1rem);
  }

  .vt-projects-list__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .vt-project-card__title {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .vt-project-card__th--package,
  .vt-project-card__td--package {
    padding-right: 0.75rem;
  }

  .vt-project-card--hide-values .vt-project-card__th--package,
  .vt-project-card--hide-values .vt-project-card__td--package {
    padding-right: 0;
  }
}


/*
 * Partners page — Phase 1 (Hero + Intro).
 * Figma nodes 57:1081 (Hero), 55:800 (Intro); page frame 55:778.
 */

.vt-partners-page {
  --vt-partners-primary: var(--vt-color-brand-dark);
  --vt-container-max: 80rem;
}

.vt-page-hero--partners {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24.9375rem;
  overflow: hidden;
  padding-block: 0;
  color: #fff;
  background: linear-gradient(90deg, var(--vt-partners-primary) 0%, rgb(10 81 142 / 0.8) 100%);
}

.vt-page-hero--partners .vt-page-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vt-page-hero--partners::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: var(--vt-page-hero-overlay-gradient);
  opacity: 0.9;
  pointer-events: none;
}

.vt-page-hero--partners .vt-page-hero__container {
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: center;
  min-height: 24.9375rem;
  width: min(100% - (1.875rem * 2), 80rem);
  padding-inline: 1.875rem;
  text-align: center;
}

.vt-page-hero--partners .vt-page-hero__content {
  align-items: center;
  width: 100%;
}

.vt-page-hero--partners .vt-page-hero__title {
  max-width: 76.25rem;
  margin: 0;
  color: #fff;
  font-size: 4.5rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 4.95rem;
  letter-spacing: -0.1125rem;
}

.vt-page-hero--partners .vt-page-hero__description {
  margin: 0;
  color: rgb(255 255 255 / 0.9);
  font-size: var(--vt-font-size-md);
  font-weight: var(--vt-font-weight-regular);
  line-height: var(--vt-text-card-line-height);
}

.vt-partners-intro {
  padding-block: 5rem;
  background: var(--vt-color-neutral-0, #fff);
}

.vt-partners-intro__inner.vt-container {
  width: min(100% - (1.875rem * 2), 80rem);
  padding-inline: 1.875rem;
}

.vt-partners-intro__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6rem;
  align-items: center;
}

.vt-partners-intro__grid--text-only {
  grid-template-columns: minmax(0, 1fr);
}

.vt-partners-intro__media {
  min-width: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  border: 1px solid rgb(255 255 255 / 0.1);
}

.vt-partners-intro__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 597 / 426;
  max-height: 26.625rem;
  object-fit: cover;
  object-position: center;
}

.vt-partners-intro__body {
  display: flex;
  flex-direction: column;
  gap: 1.945rem;
  min-width: 0;
  align-self: center;
}

.vt-partners-intro__title {
  margin: 0;
  color: #1e293b;
  font-size: 3rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 4.125rem;
}

.vt-partners-intro__content {
  min-width: 0;
  color: #64748b;
  font-size: 1.125rem;
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.75rem;
}

.vt-partners-intro__content > *:first-child {
  margin-top: 0;
}

.vt-partners-intro__content > *:last-child {
  margin-bottom: 0;
}

.vt-partners-intro__content p {
  margin: 0 0 1.75rem;
}

.vt-partners-intro__content p:last-child {
  margin-bottom: 0;
}

.vt-partners-intro__content ul,
.vt-partners-intro__content ol {
  margin: 0 0 1.75rem;
  padding-inline-start: 1.25rem;
}

.vt-partners-intro__content ul:last-child,
.vt-partners-intro__content ol:last-child {
  margin-bottom: 0;
}

.vt-partners-intro__content li {
  margin: 0 0 0.5rem;
}

.vt-partners-intro__content li:last-child {
  margin-bottom: 0;
}

.vt-partners-intro__content a {
  color: var(--vt-partners-primary);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}

.vt-partners-intro__content a:focus-visible {
  outline: 2px solid var(--vt-partners-primary);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .vt-page-hero--partners {
    min-height: 20rem;
  }

  .vt-page-hero--partners .vt-page-hero__container {
    min-height: 20rem;
  }

  .vt-page-hero--partners .vt-page-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.05em;
  }

  .vt-partners-intro {
    padding-block: 4rem;
  }

  .vt-partners-intro__grid {
    gap: 3rem;
  }

  .vt-partners-intro__title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.3;
  }

  .vt-partners-intro__body {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .vt-page-hero--partners {
    min-height: 16rem;
  }

  .vt-page-hero--partners .vt-page-hero__container {
    min-height: 16rem;
    padding-inline: var(--vt-space-4);
  }

  .vt-page-hero--partners .vt-page-hero__title {
    font-size: clamp(1.75rem, 8vw, 2.75rem);
    line-height: 1.15;
  }

  .vt-partners-intro {
    padding-block: 3rem;
  }

  .vt-partners-intro__inner.vt-container {
    padding-inline: var(--vt-space-4);
  }

  .vt-partners-intro__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--vt-space-6);
  }

  .vt-partners-intro__image {
    max-height: none;
    aspect-ratio: 16 / 11;
  }

  .vt-partners-intro__body {
    align-self: stretch;
    gap: var(--vt-space-4);
  }

  .vt-partners-intro__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    line-height: 1.3;
  }

  .vt-partners-intro__content {
    font-size: var(--vt-font-size-base);
    line-height: 1.625;
  }

  .vt-partners-intro__content p {
    margin-bottom: 1.25rem;
  }

  .vt-partners-intro__content ul,
  .vt-partners-intro__content ol {
    margin-bottom: 1.25rem;
  }
}

/*
 * Partners page — Phase 2 (Why Viettech / Capabilities / Legal).
 * Figma node 55:810.
 */

.vt-partners-why {
  padding-block: 5rem;
  background: #f9faff;
  border-block: 1px solid rgb(241 245 249 / 0.5);
}

.vt-partners-why__inner.vt-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: min(100% - (1.875rem * 2), 80rem);
  padding-inline: 1.875rem;
}

.vt-partners-why__title {
  margin: 0;
  color: #1e293b;
  font-size: 3rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 4.125rem;
  text-align: left;
}

.vt-partners-capabilities,
.vt-partners-legal {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  min-width: 0;
}

.vt-partners-capabilities__title,
.vt-partners-legal__title {
  margin: 0;
  color: #1e293b;
  font-size: 1.875rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 3.25rem;
  letter-spacing: -0.046875rem;
  text-align: left;
}

.vt-partners-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  width: 100%;
}

.vt-partners-capabilities__grid--count-1 {
  grid-template-columns: minmax(0, 1fr);
}

.vt-partners-legal__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  width: 100%;
}

.vt-partners-legal__grid--count-1 {
  grid-template-columns: minmax(0, 1fr);
}

.vt-partners-legal__grid--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vt-partners-capability-card,
.vt-partners-legal-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  min-height: 21.875rem;
  height: 100%;
  padding: 2.5625rem;
  background: #fff;
  border: 1px solid rgb(241 245 249 / 0.5);
  border-radius: 1rem;
  box-shadow:
    0 1px 3px 0 rgb(0 0 0 / 0.1),
    0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.vt-partners-capability-card__icon,
.vt-partners-legal-card__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
}

.vt-partners-capability-card__icon-image,
.vt-partners-legal-card__icon-image {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  flex-shrink: 0;
}

.vt-partners-capability-card__title,
.vt-partners-legal-card__title {
  margin: 1.5rem 0 0;
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 1.75rem;
}

.vt-partners-capability-card__content,
.vt-partners-legal-card__content {
  margin: 0.75rem 0 0;
  color: #64748b;
  font-size: 1.125rem;
  font-weight: var(--vt-font-weight-regular);
  line-height: 1.75rem;
}

@media (max-width: 1024px) {
  .vt-partners-why {
    padding-block: 4rem;
  }

  .vt-partners-why__inner.vt-container {
    gap: 2rem;
  }

  .vt-partners-why__title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.3;
  }

  .vt-partners-capabilities__title,
  .vt-partners-legal__title {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    line-height: 1.35;
    letter-spacing: -0.03em;
  }

  .vt-partners-legal__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vt-partners-legal__grid--count-1 {
    grid-template-columns: minmax(0, 1fr);
  }

  .vt-partners-capability-card,
  .vt-partners-legal-card {
    min-height: 0;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .vt-partners-why {
    padding-block: 3rem;
  }

  .vt-partners-why__inner.vt-container {
    gap: 1.75rem;
    padding-inline: var(--vt-space-4);
  }

  .vt-partners-why__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    line-height: 1.3;
  }

  .vt-partners-capabilities,
  .vt-partners-legal {
    gap: 1rem;
  }

  .vt-partners-capabilities__title,
  .vt-partners-legal__title {
    font-size: clamp(1.375rem, 5vw, 1.75rem);
    line-height: 1.35;
  }

  .vt-partners-capabilities__grid,
  .vt-partners-legal__grid,
  .vt-partners-legal__grid--count-2 {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .vt-partners-capability-card,
  .vt-partners-legal-card {
    min-height: 0;
    padding: 1.5rem;
  }

  .vt-partners-capability-card__title,
  .vt-partners-legal-card__title {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .vt-partners-capability-card__content,
  .vt-partners-legal-card__content {
    font-size: var(--vt-font-size-base);
    line-height: 1.625;
  }
}

/*
 * Partners page — Phase 3 (Logos + Contact).
 * Figma nodes 55:894 (Logos), 57:1089 (Contact); page frame 55:778.
 */

.vt-partners-logos {
  padding-block: 6rem;
  background: #fff;
}

.vt-partners-logos__inner.vt-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3rem;
  width: min(100% - (1.875rem * 2), 80rem);
  padding-inline: 1.875rem;
}

.vt-partners-logos__title {
  margin: 0;
  color: #1e293b;
  font-size: 1.875rem;
  font-weight: var(--vt-font-weight-bold);
  line-height: 3.25rem;
  letter-spacing: -0.046875rem;
  text-align: left;
}

.vt-partners-logos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vt-partners-logos__grid--count-1 {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.vt-partners-logos__grid--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vt-partners-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 5rem;
  padding-block: 0.75rem;
}

.vt-partner-logo--partners {
  width: 100%;
  height: auto;
}

.vt-partner-logo--partners .vt-partner-logo__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.vt-partner-logo--partners .vt-partner-logo__image {
  width: auto;
  height: auto;
  max-width: min(100%, 14rem);
  max-height: 3.5rem;
  object-fit: contain;
  object-position: center;
}

.vt-partners-logos__empty {
  margin: 0;
  color: #64748b;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.vt-partners-page .vt-contact-form-block--partners {
  padding-block: 5rem;
  background: #f9faff;
}

.vt-partners-page .vt-contact-form-block--partners .vt-contact-form-block__container {
  width: min(100% - (1.875rem * 2), 80rem);
  padding-inline: 1.875rem;
}

.vt-partners-page .vt-contact-form-block--partners .vt-contact-form-block__panel {
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.06) 0%, rgb(43 192 208 / 0.08) 100%),
    linear-gradient(90deg, #0a518e 0%, #3785c5 100%);
}

.vt-partners-page .vt-contact-form-block--partners .vt-contact-form-block__subtitle {
  color: #2bc0d0;
}

.vt-partners-page .vt-contact-form-block--partners .vt-contact-form-block__form .ff-btn-submit {
  background: linear-gradient(90deg, #0a518e 0%, #337cc0 49.52%, #2bc0d0 93.27%) !important;
  box-shadow: 0 4px 14px 0 rgb(10 81 142 / 0.35);
}

.vt-partners-page .vt-contact-form-block--partners .vt-contact-form-block__form .ff-btn-submit:hover,
.vt-partners-page .vt-contact-form-block--partners .vt-contact-form-block__form .ff-btn-submit:focus {
  background: linear-gradient(90deg, #083f6e 0%, #0a518e 50%, #2bc0d0 100%) !important;
}

@media (max-width: 1024px) {
  .vt-partners-logos {
    padding-block: 4.5rem;
  }

  .vt-partners-logos__inner.vt-container {
    gap: 2.5rem;
  }

  .vt-partners-logos__title {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    line-height: 1.35;
  }

  .vt-partners-logos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }

  .vt-partners-logos__grid--count-1 {
    grid-template-columns: minmax(0, 1fr);
  }

  .vt-partners-page .vt-contact-form-block--partners {
    padding-block: 4rem;
  }
}

@media (max-width: 768px) {
  .vt-partners-logos {
    padding-block: 3rem;
  }

  .vt-partners-logos__inner.vt-container {
    gap: 2rem;
    padding-inline: var(--vt-space-4);
  }

  .vt-partners-logos__title {
    font-size: clamp(1.375rem, 5vw, 1.75rem);
    line-height: 1.35;
  }

  .vt-partners-logos__grid,
  .vt-partners-logos__grid--count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1.5rem;
  }

  .vt-partners-logos__item {
    min-height: 4rem;
    padding-block: 0.5rem;
  }

  .vt-partner-logo--partners .vt-partner-logo__content {
    min-height: 4rem;
  }

  .vt-partner-logo--partners .vt-partner-logo__image {
    max-width: min(100%, 10rem);
    max-height: 2.75rem;
  }

  .vt-partners-page .vt-contact-form-block--partners {
    padding-block: 3rem;
  }

  .vt-partners-page .vt-contact-form-block--partners .vt-contact-form-block__container {
    padding-inline: var(--vt-space-4);
  }
}
