/* BVP page bundle: home. Source: home_bvp_v3.html */
:root {
      --ink: #202020;
      --paper: #ffffff;
      --soft-panel: rgba(255, 255, 255, 0.94);
    }

    * {
      box-sizing: border-box;
    }

    .bvp-home-reveal-ready .bvp-home-reveal {
      opacity: 0;
      transform: translateY(16px);
      transition:
        opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--bvp-reveal-delay, 0ms),
        transform 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--bvp-reveal-delay, 0ms);
      will-change: opacity, transform;
    }

    .bvp-home-reveal-ready .bvp-home-reveal--visual {
      transform: scale(0.985);
      transform-origin: center;
    }

    .bvp-home-reveal-ready .bvp-home-reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
      will-change: auto;
    }

    .bvp-home-reveal-ready .bvp-home-reveal--visual.is-visible {
      transform: scale(1);
    }

    @media (prefers-reduced-motion: reduce) {
      .bvp-home-reveal-ready .bvp-home-reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    body {
      margin: 0;
      min-width: 320px;
      background: #c7afa3;
      color: var(--ink);
      font-family: "Courier New", Courier, monospace;
    }

    .hupr-section {
      position: relative;
      min-height: 112vh;
      overflow: hidden;
      isolation: isolate;
      background: #101010;
    }

    .hupr-video {
      position: absolute;
      z-index: 0;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }

    .hupr-topline {
      position: absolute;
      z-index: 3;
      top: 50%;
      left: clamp(28px, 4vw, 72px);
      display: flex;
      align-items: flex-start;
      gap: clamp(32px, 4vw, 72px);
      padding: 0;
      transform: translateY(-50%);
      color: var(--paper);
    }

    .hupr-brand {
      display: grid;
      gap: clamp(18px, 2vw, 30px);
      align-items: start;
    }

    .hupr-logo {
      display: block;
      width: clamp(230px, 22vw, 420px);
      height: auto;
    }

    .hupr-logo img {
      display: block;
      width: 100%;
      height: auto;
    }

    .hupr-tagline {
      display: grid;
      gap: 4px;
      max-width: 420px;
      color: #ffffff;
      font-family: "Courier New", Courier, monospace;
      font-size: clamp(13px, 1.05vw, 18px);
      font-weight: 400;
      line-height: 1.15;
      letter-spacing: 0;
      text-transform: none;
    }

    .hupr-tagline span {
      display: block;
      opacity: 0;
      transform: translateY(34px);
      animation: huprTaglineFloat 760ms ease forwards;
    }

    .hupr-tagline span:nth-child(1) {
      animation-delay: 180ms;
    }

    .hupr-tagline span:nth-child(2) {
      animation-delay: 420ms;
    }

    .hupr-tagline span:nth-child(3) {
      animation-delay: 640ms;
    }

    .hupr-tagline span:nth-child(4) {
      animation-delay: 860ms;
    }

    @keyframes huprTaglineFloat {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hupr-menu {
      position: absolute;
      z-index: 5;
      top: clamp(76px, 7.2vw, 126px);
      right: clamp(20px, 3.2vw, 56px);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 104px;
      height: 62px;
      border: 0;
      padding: 0;
      background: transparent;
      color: #fff;
      cursor: pointer;
    }

    .hupr-menu-icon {
      display: grid;
      gap: 7px;
      width: 100px;
    }

    .hupr-menu-icon::before,
    .hupr-menu-icon::after,
    .hupr-menu-icon span {
      content: "";
      display: block;
      height: 3px;
      background: currentColor;
    }

    .hupr-lang {
      position: absolute;
      z-index: 5;
      top: clamp(24px, 2.8vw, 50px);
      right: clamp(20px, 3.2vw, 56px);
      display: flex;
      gap: 12px;
      color: #fff;
      font-size: 13px;
      line-height: 1;
      text-transform: uppercase;
    }

    .hupr-lang a {
      color: inherit;
      text-decoration: none;
      opacity: 0.72;
    }

    .hupr-lang a.is-active {
      opacity: 1;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .hupr-card {
      position: absolute;
      z-index: 4;
      top: auto;
      right: clamp(20px, 4.2vw, 64px);
      bottom: clamp(210px, 19vw, 360px);
      width: min(476px, calc(100vw - 40px));
      padding: 16px 16px 31px;
      background: var(--soft-panel);
      color: #252525;
      box-shadow: 0 24px 50px rgba(40, 25, 20, 0.1);
    }

    .hupr-card-copy {
      padding: 18px 16px 0;
    }

    .hupr-service-title {
      display: block;
      padding-bottom: 9px;
      border-bottom: 1px solid #2c2c2c;
      font-size: 14px;
      line-height: 1;
      text-transform: uppercase;
    }

    .hupr-card p {
      margin: 24px 0 18px;
      max-width: 395px;
      font-family: Arial, Helvetica, sans-serif;
      font-size: clamp(13px, 0.78vw, 15px);
      line-height: 1.38;
    }

    .hupr-form {
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    .hupr-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .hupr-form-fields {
      display: grid;
      gap: 10px;
    }

    .hupr-field {
      display: grid;
      gap: 5px;
      font-size: 12px;
      line-height: 1;
      text-transform: uppercase;
    }

    .hupr-field input[type="email"],
    .hupr-field input[type="tel"],
    .hupr-field input[type="text"] {
      width: 100%;
      height: 34px;
      border: 1px solid rgba(37, 37, 37, 0.34);
      border-radius: 0;
      padding: 0 10px;
      background: rgba(255, 255, 255, 0.72);
      color: #252525;
      font: inherit;
      font-size: 13px;
    }

    .hupr-policy {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 2px 0 4px;
      font-size: 11px;
      line-height: 1.2;
    }

    .hupr-policy input {
      width: 14px;
      height: 14px;
      margin: 0;
      accent-color: #303034;
    }

    .hupr-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
      padding: 0 17px;
      border: 0;
      border-radius: 5px;
      background: #303034;
      color: #fff;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 10px;
      font-weight: 700;
      line-height: 1;
      text-decoration: none;
      text-transform: uppercase;
      cursor: pointer;
    }

    .hupr-title {
      position: absolute;
      z-index: 3;
      left: 0;
      right: 0;
      bottom: 0.16em;
      margin: 0;
      overflow: hidden;
      color: #fff;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(100px, 15vw, 286px);
      font-weight: 900;
      line-height: 0.78;
      letter-spacing: 0;
      white-space: nowrap;
      text-transform: uppercase;
    }

    .hupr-title-track {
      display: flex;
      width: max-content;
      animation: huprTitleMarquee 48s linear infinite;
      will-change: transform;
    }

    .hupr-title-track span {
      display: block;
      padding-right: 0.18em;
    }

    @keyframes huprTitleMarquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .bvp-about-section {
      display: grid;
      grid-template-columns: minmax(280px, 25vw) 1fr;
      gap: clamp(42px, 3.4vw, 64px);
      min-height: 550px;
      padding: 75px 30px 86px;
      background: #f7f7f5;
      color: #303034;
    }

    .bvp-highlight {
      display: flex;
      flex-direction: column;
      min-height: 390px;
      overflow: hidden;
    }

    .bvp-section-meta {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      padding-bottom: 9px;
      border-bottom: 1px solid currentColor;
      font-size: 14px;
      line-height: 1;
      text-transform: uppercase;
    }

    .bvp-highlight h2 {
      margin: 21px 0 16px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(48px, 3.5vw, 68px);
      font-weight: 800;
      line-height: 0.92;
      letter-spacing: 0;
    }

    .bvp-highlight-image {
      width: min(100%, 430px);
      margin: 22px 0 18px;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: #ded9d2;
    }

    .bvp-highlight-image img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .bvp-highlight p {
      max-width: 430px;
      margin: 0;
      font-size: 16px;
      line-height: 1.28;
    }

    .bvp-arrows {
      display: flex;
      gap: 12px;
      margin-top: auto;
      padding-top: 32px;
    }

    .bvp-highlight-slide {
      display: none;
    }

    .bvp-highlight-slide.is-active {
      display: block;
    }

    .bvp-highlight[data-highlight-auto] .bvp-highlight-slide.is-active {
      animation: bvpHighlightLeaf 0.58s ease both;
    }

    .bvp-highlight[data-highlight-auto] .bvp-highlight-slide {
      min-height: 250px;
    }

    .bvp-highlight[data-highlight-auto] .bvp-arrows {
      margin-top: 40px;
      padding-top: 0;
    }

    @keyframes bvpHighlightLeaf {
      from {
        opacity: 0;
        transform: translateX(42px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .bvp-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 63px;
      height: 32px;
      border: 0;
      border-radius: 5px;
      background: #efefef;
      color: #111;
      cursor: pointer;
    }

    .bvp-arrow svg {
      width: 25px;
      height: 25px;
      stroke-width: 2;
    }

    .bvp-about-main {
      min-width: 0;
    }

    .bvp-about-label {
      display: block;
      padding-bottom: 9px;
      border-bottom: 1px solid currentColor;
      font-size: 14px;
      line-height: 1;
      text-transform: uppercase;
    }

    .bvp-about-title {
      max-width: 1240px;
      margin: 27px 0 34px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(54px, 6.2vw, 120px);
      font-weight: 900;
      line-height: 0.98;
      letter-spacing: 0;
      text-transform: uppercase;
      background: linear-gradient(180deg, #5B8748 0%, #478283 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: #5B8748;
      -webkit-text-fill-color: transparent;
    }

    .bvp-about-title.is-dark {
      background: none;
      color: #303034;
      -webkit-text-fill-color: currentColor;
    }

    .bvp-outline-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 124px;
      height: 124px;
      margin-top: 5px;
      color: #303034;
      font-size: 14px;
      line-height: 1;
      text-decoration: none;
      text-transform: uppercase;
    }

    .bvp-outline-link:hover,
    .bvp-outline-link:focus-visible {
      outline: none;
    }

    .bvp-outline-link::before,
    .bvp-outline-link::after,
    .bvp-outline-link span::before,
    .bvp-outline-link span::after {
      content: "";
      position: absolute;
      width: 8px;
      height: 8px;
      border-color: currentColor;
      border-style: solid;
      transition: width 0.28s ease, height 0.28s ease;
    }

    .bvp-outline-link:hover::before,
    .bvp-outline-link:hover::after,
    .bvp-outline-link:hover span::before,
    .bvp-outline-link:hover span::after,
    .bvp-outline-link:focus-visible::before,
    .bvp-outline-link:focus-visible::after,
    .bvp-outline-link:focus-visible span::before,
    .bvp-outline-link:focus-visible span::after {
      width: 100%;
      height: 100%;
    }

    .bvp-outline-link::before {
      top: 0;
      left: 0;
      border-width: 1px 0 0 1px;
    }

    .bvp-outline-link::after {
      top: 0;
      right: 0;
      border-width: 1px 1px 0 0;
    }

    .bvp-outline-link span::before {
      bottom: 0;
      left: 0;
      border-width: 0 0 1px 1px;
    }

    .bvp-outline-link span::after {
      right: 0;
      bottom: 0;
      border-width: 0 1px 1px 0;
    }

    .bvp-service-section {
      display: grid;
      grid-template-columns: minmax(420px, 36.5vw) 1fr;
      min-height: 920px;
      padding: 0;
      background: #ad9b8f;
      color: #303034;
      overflow: hidden;
    }

    .bvp-service-section.is-mirrored {
      grid-template-columns: 1fr minmax(420px, 36.5vw);
      background: #ffffff;
    }

    .bvp-service-section.is-mirrored .bvp-service-hero-image {
      order: 2;
    }

    .bvp-service-section.is-mirrored .bvp-service-panel {
      order: 1;
    }

    .bvp-service-section.is-mirrored .bvp-service-title,
    .bvp-service-section.is-mirrored .bvp-service-text,
    .bvp-service-section.is-mirrored .bvp-service-clients-title {
      text-align: left;
    }

    .bvp-service-section.is-mirrored .bvp-service-title {
      background: linear-gradient(180deg, #5B8748 0%, #478283 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: #5B8748;
      -webkit-text-fill-color: transparent;
    }

    .bvp-service-section.is-mirrored .bvp-service-text {
      margin-right: auto;
      margin-left: 0;
    }

    .bvp-service-section.is-mirrored .bvp-service-clients-title {
      margin-right: 0;
      margin-left: 0;
    }

    .bvp-service-hero-image {
      min-height: 920px;
      overflow: hidden;
      background: #8f8177;
    }

    .bvp-service-hero-image img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .bvp-service-panel {
      display: flex;
      flex-direction: column;
      min-width: 0;
      padding: clamp(54px, 5vw, 92px) clamp(32px, 4vw, 72px) 52px;
    }

    .bvp-service-title {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(72px, 6.2vw, 122px);
      font-weight: 900;
      line-height: 0.92;
      letter-spacing: 0;
      text-transform: uppercase;
      text-align: right;
    }

    .bvp-service-text {
      max-width: 930px;
      margin: clamp(60px, 6.3vw, 106px) 0 0 auto;
      font-family: Arial, Helvetica, sans-serif;
      font-size: clamp(13px, 0.78vw, 15px);
      line-height: 1.38;
      text-align: right;
    }

    .bvp-service-link {
      align-self: flex-end;
      margin-top: 32px;
    }

    .bvp-service-section.is-mirrored .bvp-service-link {
      align-self: flex-start;
    }

    .bvp-service-divider {
      width: 100%;
      height: 1px;
      margin: 48px 0 0;
      background: currentColor;
      opacity: 0.8;
    }

    .bvp-service-clients-title {
      display: block;
      margin: 40px 0 0;
      padding-top: 9px;
      border-top: 1px solid currentColor;
      font-size: 14px;
      font-weight: 400;
      line-height: 1;
      text-align: right;
      text-transform: uppercase;
    }

    .bvp-service-clients {
      width: 100%;
      margin-top: 64px;
      overflow: hidden;
    }

    .bvp-service-client-track {
      display: flex;
      width: max-content;
      gap: 40px;
      animation: bvpServiceClientsRight 32s linear infinite;
      will-change: transform;
    }

    .bvp-service-client-card {
      position: relative;
      flex: 0 0 clamp(220px, 20vw, 390px);
      aspect-ratio: 390 / 348;
      overflow: hidden;
      background: #8f8177;
    }

    .bvp-service-client-card[href] {
      color: inherit;
      text-decoration: none;
    }

    .bvp-service-client-card img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .bvp-service-client-caption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      display: grid;
      gap: 4px;
      justify-items: center;
      padding: 18px 14px 20px;
      background: linear-gradient(180deg, rgba(32, 32, 32, 0), rgba(32, 32, 32, 0.72));
      color: #ffffff;
      text-align: center;
      text-transform: uppercase;
      pointer-events: none;
    }

    .bvp-service-client-caption strong {
      font-family: Arial, Helvetica, sans-serif;
      font-size: clamp(16px, 1.15vw, 22px);
      font-weight: 900;
      line-height: 1;
    }

    .bvp-service-client-caption span {
      font-size: clamp(12px, 0.82vw, 15px);
      line-height: 1;
    }

    .bvp-service-all-clients-card {
      display: none;
    }

    @keyframes bvpServiceClientsRight {
      from {
        transform: translateX(-50%);
      }

      to {
        transform: translateX(0);
      }
    }

    .bvp-products-section {
      padding: 62px clamp(18px, 4vw, 48px) 78px;
      background: #ffffff;
      color: #2f3033;
    }

    .bvp-products-title {
      margin: 0 0 34px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(54px, 6vw, 118px);
      font-weight: 900;
      line-height: 0.92;
      text-align: center;
      text-transform: uppercase;
    }

    .bvp-products-list {
      display: grid;
      max-width: 1440px;
      margin: 0 auto;
      border-top: 1px solid rgba(32, 32, 32, 0.55);
    }

    .bvp-product-row {
      display: grid;
      grid-template-columns: minmax(190px, 1fr) minmax(190px, 1fr) minmax(260px, 1.55fr);
      gap: clamp(28px, 4vw, 70px);
      align-items: start;
      padding: 24px 0;
      border-bottom: 1px solid rgba(32, 32, 32, 0.35);
    }

    .bvp-product-media {
      position: relative;
      min-height: 180px;
      overflow: hidden;
      background: #ddd9d2;
    }

    .bvp-product-media::before {
      content: "";
      display: block;
      padding-top: 62%;
    }

    .bvp-product-media img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .bvp-product-copy {
      padding-top: 2px;
    }

    .bvp-product-copy h3 {
      margin: 0 0 14px;
      font-family: Arial, Helvetica, sans-serif;
      font-size: clamp(19px, 1.25vw, 25px);
      font-weight: 900;
      line-height: 1.05;
      text-transform: uppercase;
    }

    .bvp-product-copy p {
      max-width: 620px;
      margin: 0 0 18px;
      font-family: Arial, Helvetica, sans-serif;
      font-size: clamp(13px, 0.78vw, 15px);
      line-height: 1.38;
    }

    .bvp-product-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .bvp-product-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 0 14px;
      border-radius: 4px;
      background: #2f3033;
      color: #fff;
      font-family: "Courier New", Courier, monospace;
      font-size: 11px;
      line-height: 1;
      text-decoration: none;
      text-transform: uppercase;
      transition: transform 180ms ease, background 180ms ease;
    }

    .bvp-product-link:hover,
    .bvp-product-link:focus-visible,
    .bvp-product-link:active {
      color: #ffffff;
      background: #10341e;
      transform: scale(1.05);
    }

    .bvp-faq-section {
      position: relative;
      min-height: 620px;
      padding: 86px clamp(18px, 5vw, 80px) 88px;
      overflow: hidden;
      background: #f7f7f5;
      color: #303034;
    }

    .bvp-faq-title {
      margin: 0 0 56px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(52px, 5.7vw, 108px);
      font-weight: 900;
      line-height: 0.92;
      letter-spacing: 0;
      text-align: center;
      text-transform: uppercase;
      background: linear-gradient(180deg, #5B8748 0%, #478283 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .bvp-faq-list {
      display: grid;
      gap: 0;
      max-width: 1440px;
      margin: 0 auto;
      border-top: 1px solid rgba(32, 32, 32, 0.55);
    }

    .bvp-faq-item {
      border-bottom: 1px solid rgba(32, 32, 32, 0.35);
      border-radius: 0;
      overflow: hidden;
    }

    .bvp-faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      width: 100%;
      min-height: 88px;
      border: 0;
      padding: 0;
      background: transparent;
      color: #303034;
      font-family: inherit;
      font-size: clamp(16px, 1.05vw, 20px);
      font-weight: 400;
      line-height: 1.15;
      text-align: left;
      text-transform: none;
      cursor: pointer;
    }

    .bvp-faq-section .bvp-faq-question:hover,
    .bvp-faq-section .bvp-faq-question:focus,
    .bvp-faq-section .bvp-faq-question:focus-visible,
    .bvp-faq-section .bvp-faq-question:active,
    .bvp-faq-section .bvp-faq-item.is-open .bvp-faq-question {
      background: transparent;
      color: #303034;
    }

    .bvp-faq-section .bvp-faq-question:hover > span:not(.bvp-faq-symbol),
    .bvp-faq-section .bvp-faq-question:focus > span:not(.bvp-faq-symbol),
    .bvp-faq-section .bvp-faq-question:focus-visible > span:not(.bvp-faq-symbol),
    .bvp-faq-section .bvp-faq-question:active > span:not(.bvp-faq-symbol),
    .bvp-faq-section .bvp-faq-item.is-open .bvp-faq-question > span:not(.bvp-faq-symbol) {
      color: #303034;
    }

    .bvp-faq-symbol {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border: 1px solid currentColor;
      border-radius: 0;
      font-family: "Courier New", Courier, monospace;
      font-size: 24px;
      font-weight: 400;
      line-height: 1;
      transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    }

    .bvp-faq-question:hover .bvp-faq-symbol {
      background: #303034;
      color: #f7f7f5;
      transform: scale(1.04);
    }

    .bvp-faq-answer {
      display: none;
      max-width: 980px;
      padding: 0 72px 30px 0;
      color: inherit;
      font-family: inherit;
      font-size: clamp(16px, 0.95vw, 18px);
      line-height: 1.45;
    }

    .bvp-faq-item.is-open .bvp-faq-answer {
      display: block;
    }

    .bvp-offer-section {
      padding: 82px clamp(18px, 5vw, 80px) 92px;
      background: #c7afa3;
      color: #252525;
    }

    .bvp-offer-title {
      max-width: 1120px;
      margin: 0 auto 42px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(46px, 5vw, 96px);
      font-weight: 900;
      line-height: 0.94;
      text-align: center;
      text-transform: uppercase;
      color: #ffffff;
    }

    .bvp-offer-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 16px;
      max-width: 980px;
      margin: 0 auto;
      padding: 18px 18px 28px;
      background: var(--soft-panel);
      box-shadow: 0 24px 50px rgba(40, 25, 20, 0.08);
      font-family: "Courier New", Courier, monospace;
      font-size: 12px;
    }

    .bvp-offer-field,
    .bvp-offer-choice-group {
      display: grid;
      gap: 6px;
      line-height: 1;
      text-transform: uppercase;
    }

    .bvp-offer-field.is-wide,
    .bvp-offer-subtitle,
    .bvp-offer-submit {
      grid-column: 1 / -1;
    }

    .bvp-offer-field input[type="text"],
    .bvp-offer-field input[type="tel"],
    .bvp-offer-field input[type="email"] {
      width: 100%;
      height: 34px;
      border: 1px solid rgba(37, 37, 37, 0.34);
      border-radius: 0;
      padding: 0 10px;
      background: rgba(255, 255, 255, 0.72);
      color: #252525;
      font: inherit;
      font-size: 13px;
    }

    .bvp-offer-options {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      min-height: 34px;
      font-size: 12px;
      line-height: 1.2;
      text-transform: none;
    }

    .bvp-offer-options label {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      white-space: nowrap;
    }

    .bvp-offer-options input {
      width: 15px;
      height: 15px;
      margin: 0;
      accent-color: #303034;
    }

    .bvp-offer-consent {
      display: inline-flex;
      align-items: flex-start;
      gap: 9px;
      max-width: 680px;
      align-self: end;
      margin-top: 0;
      padding-bottom: 2px;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 12px;
      line-height: 1.28;
      text-transform: none;
      color: #252525;
    }

    .bvp-offer-consent input {
      width: 15px;
      height: 15px;
      margin: 0;
      flex: 0 0 auto;
      accent-color: #303034;
    }

    .bvp-offer-subtitle {
      margin: 10px 0 0;
      padding-bottom: 9px;
      border-bottom: 1px solid #2c2c2c;
      font-family: "Courier New", Courier, monospace;
      font-size: 14px;
      font-weight: 400;
      line-height: 1;
      text-transform: uppercase;
    }

    .bvp-offer-submit {
      align-self: end;
      justify-self: start;
      margin-top: 4px;
      width: min(100%, 360px);
      min-height: 34px;
      border: 0;
      border-radius: 5px;
      background: #303034;
      color: #fff;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 10px;
      font-weight: 700;
      line-height: 1;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    }

    .bvp-offer-submit:hover {
      background: #10341e;
      color: #fff;
      transform: translateY(-1px);
    }

    .bvp-footer {
      padding: 72px clamp(20px, 6vw, 120px) 32px;
      background: #10341e;
      color: #eef5ee;
      font-family: Arial, Helvetica, sans-serif;
    }

    .bvp-footer-inner {
      max-width: 1430px;
      margin: 0 auto;
    }

    .bvp-footer-grid {
      display: grid;
      grid-template-columns: 180px repeat(4, minmax(150px, 1fr));
      gap: clamp(32px, 5vw, 90px);
      align-items: start;
    }

    .bvp-footer-logo {
      display: inline-flex;
      width: 108px;
      min-height: 54px;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      background: #ffffff;
      overflow: hidden;
    }

    .bvp-footer-logo img {
      width: 88px;
      height: auto;
      display: block;
    }

    .bvp-footer-title {
      margin: 0 0 18px;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.2;
      color: #ffffff;
    }

    .bvp-footer-list {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .bvp-footer-link,
    .bvp-footer-contact {
      color: rgba(255, 255, 255, 0.86);
      font-size: 15px;
      line-height: 1.28;
      text-decoration: none;
    }

    .bvp-footer-link:hover,
    .bvp-footer-contact:hover {
      color: #ffffff;
    }

    .bvp-footer-langs {
      display: flex;
      gap: 8px;
      margin-top: 16px;
      font-size: 20px;
      line-height: 1;
    }

    .bvp-footer-bottom {
      margin-top: 46px;
      padding-top: 33px;
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      text-align: center;
      color: rgba(255, 255, 255, 0.68);
      font-size: 14px;
      line-height: 1.4;
    }

    @media (max-width: 980px) {
      .hupr-section {
        min-height: 980px;
        background-position: 42% center;
      }

      .hupr-video {
        object-position: center center;
      }

      .hupr-topline {
        flex-direction: column;
        gap: 18px;
      }

      .hupr-card {
        top: auto;
        right: 20px;
        bottom: 230px;
      }

      .bvp-about-section {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 56px 22px 72px;
      }

      .bvp-highlight {
        min-height: auto;
      }

      .bvp-service-section {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .bvp-service-section.is-mirrored {
        grid-template-columns: 1fr;
      }

      .bvp-service-section.is-mirrored .bvp-service-hero-image,
      .bvp-service-section.is-mirrored .bvp-service-panel {
        order: initial;
      }

      .bvp-service-hero-image {
        min-height: 620px;
      }

      .bvp-service-panel {
        padding: 48px 22px 64px;
      }

      .bvp-service-text {
        margin-top: 48px;
      }

      .bvp-product-row {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
      }

      .bvp-product-copy {
        grid-column: 1 / -1;
      }

      .bvp-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 28px;
      }

      .bvp-footer-brand {
        grid-column: 1 / -1;
      }

    }

    @media (max-width: 620px) {
      .hupr-section {
        min-height: 100vh;
        background-position: -140px top;
        background-size: cover;
      }

      .hupr-video {
        object-position: center center;
      }

      .hupr-topline {
        left: 18px;
        padding: 0;
      }

      .hupr-logo {
        width: clamp(135px, 42vw, 190px);
      }

      .hupr-menu {
        top: 62px;
        right: 18px;
        width: 58px;
        height: 38px;
      }

      .hupr-menu-icon {
        width: 56px;
        gap: 5px;
      }

      .hupr-menu-icon::before,
      .hupr-menu-icon::after,
      .hupr-menu-icon span {
        height: 2px;
      }

      .hupr-card {
        position: absolute;
        top: auto;
        right: 12px;
        left: 12px;
        bottom: 150px;
        width: auto;
        margin: 0;
      }

      .hupr-card-copy {
        padding: 18px 12px 0;
      }

      .hupr-card p {
        font-size: 13px;
      }

      .hupr-form-row {
        grid-template-columns: 1fr;
      }

      .hupr-form-fields {
        display: none;
      }

      .hupr-form.is-open .hupr-form-fields {
        display: grid;
      }

      .hupr-title {
        bottom: 52px;
      }

      .bvp-about-section {
        padding: 42px 18px 58px;
      }

      .bvp-about-section--intro .bvp-about-main {
        order: 1;
      }

      .bvp-about-section--intro .bvp-highlight {
        order: 2;
      }

      .bvp-about-section--embroidery .bvp-about-main {
        order: 1;
      }

      .bvp-about-section--embroidery .bvp-highlight {
        order: 2;
      }

      .bvp-section-meta,
      .bvp-about-label {
        font-size: 12px;
      }

      .bvp-highlight h2 {
        font-size: 44px;
      }

      .bvp-highlight p {
        font-size: 14px;
      }

      .bvp-about-title {
        max-width: 100%;
        font-size: clamp(34px, 10vw, 52px);
        line-height: 0.98;
        overflow-wrap: anywhere;
        word-break: normal;
      }

      .bvp-service-section {
        min-height: auto;
      }

      .bvp-service-hero-image {
        min-height: 420px;
      }

      .bvp-service-panel {
        padding: 38px 18px 48px;
      }

      .bvp-service-title {
        font-size: clamp(36px, 11vw, 52px);
        line-height: 0.98;
        overflow-wrap: anywhere;
      }

      .bvp-service-text {
        margin-top: 36px;
      }

      .bvp-service-clients-title {
        margin-top: 34px;
        font-size: 12px;
      }

      .bvp-service-section.is-mirrored .bvp-service-clients-title {
        margin-left: 0;
      }

      .bvp-service-clients {
        width: calc(100% + 18px);
        margin-top: 38px;
        margin-right: -18px;
        padding-right: 18px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scroll-padding-left: 0;
        scrollbar-width: none;
      }

      .bvp-service-clients::-webkit-scrollbar {
        display: none;
      }

      .bvp-service-client-track {
        width: max-content;
        gap: 14px;
        animation: none;
        padding-bottom: 8px;
        will-change: auto;
      }

      .bvp-service-client-card {
        flex-basis: min(78vw, 330px);
        aspect-ratio: 4 / 5;
        scroll-snap-align: start;
      }

      .bvp-service-client-card[aria-hidden="true"] {
        display: none;
      }

      .bvp-service-all-clients-card {
        display: grid;
        place-items: center;
        padding: 18px;
        background: #202020;
      }

      .bvp-service-all-clients-button {
        z-index: 1;
        width: 124px;
        height: 124px;
        margin: 0;
        color: #ffffff;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: 900;
      }

      .bvp-service-all-clients-button:hover,
      .bvp-service-all-clients-button:focus-visible,
      .bvp-service-all-clients-button:active {
        color: #ffffff;
      }

      .bvp-service-client-caption {
        padding: 34px 12px 14px;
        background: linear-gradient(180deg, rgba(32, 32, 32, 0), rgba(32, 32, 32, 0.64));
      }

      .bvp-products-section {
        padding: 48px 14px 58px;
      }

      .bvp-products-title {
        margin-bottom: 24px;
        font-size: 48px;
      }

      .bvp-product-row {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px 0 24px;
      }

      .bvp-product-media {
        min-height: 210px;
      }

      .bvp-faq-section {
        min-height: auto;
        padding: 58px 18px 60px;
      }

      .bvp-faq-title {
        margin-bottom: 38px;
        font-size: clamp(42px, 13vw, 64px);
      }

      .bvp-faq-question {
        min-height: 72px;
        font-size: 16px;
      }

      .bvp-faq-symbol {
        width: 34px;
        height: 34px;
      }

      .bvp-faq-answer {
        padding-right: 0;
      }

      .bvp-offer-section {
        padding: 58px 18px 64px;
      }

      .bvp-offer-form {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .bvp-offer-consent {
        grid-column: 1;
      }

      .bvp-offer-submit {
        grid-column: 1;
        justify-self: stretch;
        width: 100%;
      }

      .bvp-footer {
        padding: 52px 22px 28px;
      }

      .bvp-footer-grid {
        grid-template-columns: 1fr;
      }

      .bvp-footer-bottom {
        text-align: left;
      }
    }
