@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
:root {
  --color-primary: #25ae79;
  --color-secondary: #80d0b1;
  --color-surface: #dffff3;
  --color-text: #101010;
  --color-muted: #ebebeb;
  --color-bg: #f5f5f5;
  --color-white: #ffffff;
  --color-grey: #727272;
  --fixed-header-clearance: clamp(132px, 9vw, 156px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  /* background-color: var(--color-bg); */
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  /* background: var(--color-bg); */
  color: var(--color-text);
  min-height: 100vh;
}
.site-nav a.active {
  font-weight: 700;
}
.color-black {
  color: #000000 !important;
}
.bg-white {
  background-color: var(--color-white);
}
.bg-grey {
  background-color: var(--color-bg);
}
a {
  color: inherit;
  text-decoration: none;
}
.section-spacing {
  padding: 50px 0;
}
.home-banner {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(180deg, #78b8e9 0%, #163448 100%);
}

.home-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(4, 13, 25, 0.08) 42%,
    rgba(4, 13, 25, 0.48) 100%
  );
  pointer-events: none;
}

.home-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: fixed;
  top: 32px;
  left: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(88vw, 1620px);
  margin: 0;
  padding: 7px 8px 7px 22px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(6, 20, 36, 0.26);
  transform: translateX(-50%);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-nav-open {
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(6, 20, 36, 0.22);
}

.home-banner__content {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 7vh;
  width: min(88vw, 1620px);
  margin: 0 auto;
  overflow: hidden;
}

.home-banner__title {
  max-width: 1120px;
  color: #ffffff;
  font-size: 5.375rem;
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.home-banner__title-piece {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.home-banner__title-word {
  display: inline-block;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.home-banner__title-word--up {
  animation-name: bannerWordUp;
}

.home-banner__title-word--down {
  animation-name: bannerWordDown;
}

@keyframes bannerWordUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bannerWordDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-banner {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
}

.about-banner .site-header {
  z-index: 1000;
}

.site-header + .about-banner__heading,
.site-header + .products-banner__inner,
.site-header + .contact-banner__content,
.site-header + .product-detail,
.site-header + .service-banner {
  padding-top: var(--fixed-header-clearance) !important;
}

.about-banner__heading {
  /* width: min(88vw, 1620px); */
  margin: 0 auto;
  padding: clamp(18px, 4vw, 46px) 0 clamp(22px, 3.5vw, 40px);
  overflow: hidden;
  text-align: center;
}

.about-banner__title {
  margin: 0;
  font-size: clamp(4rem, 8vw, 8.125rem);
  font-weight: 800;
  /* line-height: 1.05; */

  /* text-transform: uppercase; */
}

.about-banner__line {
  display: inline-block;
  overflow: hidden;
  will-change: transform, opacity;
}

.about-banner__line-word {
  display: inline-block;
  width: 100%;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.about-banner__line--left {
  color: var(--color-text);
}

.about-banner__line--left .about-banner__line-word {
  animation-name: bannerWordDown;
  animation-delay: 0.12s;
}

.about-banner__line--right {
  color: var(--color-primary);
}

.about-banner__line--right .about-banner__line-word {
  animation-name: bannerWordUp;
  animation-delay: 0.24s;
}

.about-banner__image {
  /* min-height: clamp(330px, 50vw, 640px); */
  min-height: clamp(250px, 35vw, 500px);
  background-image: url("../images/about-parallax.jpg");
  background-attachment: fixed;
  background-position: center 38%;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-banner__copy {
  /* width: min(78vw, 1120px);
    margin: 0 auto; */
  padding: clamp(48px, 6vw, 84px) 0 clamp(54px, 6vw, 92px);
  text-align: center;
}

.about-banner__copy p {
  width: 75%;
  margin: 0 auto;
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  line-height: 1.8;
}

.service-banner__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(24px, 3vw, 40px);
  row-gap: 0;
  align-items: start;
}

.service-banner__media {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

.service-banner__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 26px;
}

.service-banner__content {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: 100%;
  margin-top: 0;
}

.service-banner__content .product-detail-heading {
  margin-top: -70px;
  line-height: 1.3;
}

.service-banner__content .product-detail__lead {
  margin-top: clamp(18px, 1.5vw, 28px);
}

.service-content__inner {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}

.service-content__left,
.service-content__right {
  display: grid;
  gap: 20px;
}

.service-content__panel {
  background: #dffff3;

  /* border-radius: 28px; */
  padding: clamp(28px, 3vw, 36px);
}

.service-content__panel-heading {
  display: block;
  color: #000000;
  font-weight: 700;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  margin-bottom: 18px;
}

.service-content__panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}
.service-content__panel-list li:nth-child(1) {
  padding-top: 25px;
  border-top: 1px solid rgba(16, 16, 16, 0.08);
}
.service-content__panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #101010;
  font-size: clamp(0.95rem, 1vw, 1rem);
  line-height: 1.8;

  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
  padding-bottom: 25px;
}

.service-content__panel-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-content__panel-index {
  color: #969696;
  font-weight: 400;
  min-width: 2.5rem;
}

@media (max-width: 991px) {
  .service-banner__inner,
  .service-content__inner {
    grid-template-columns: 1fr;
  }

  .service-banner__content {
    grid-column: 1;
    grid-row: 1;
    margin-top: 0;
  }

  .service-banner__media {
    grid-column: 1;
    grid-row: 2;
    margin-top: clamp(24px, 4vw, 40px);
  }
}

.services-list {
  background: var(--color-white);
}

.services-list__item {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(360px, 0fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  border-top: 1px solid rgba(16, 16, 16, 0.08);
  padding: clamp(36px, 5vw, 60px) 0;
  min-height: 340px;
  cursor: pointer;
  user-select: none;
}

.services-list__item:first-child {
  border-top: none;
}

.services-list__text {
  display: grid;
  grid-template-columns: auto minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 2.5vw, 40px);
  align-items: center;
}

.services-list__index {
  font-size: 1.5rem;
  font-weight: 700;
  /* letter-spacing: 0.24em; */
  text-transform: uppercase;
  color: rgba(0, 0, 0);
  white-space: nowrap;
}

.services-list__item h2,
.services-list__item p {
  margin: 0;
}

.services-list__item h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.02;
  font-weight: 600;
}

.services-list__item p {
  max-width: 620px;
  color: #000000;
  font-size: clamp(0.95rem, 1vw, 1rem);
  line-height: 1.7;
}

.services-list__media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  /* min-height: 340px; */
  height: 100%;
}

.services-list__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.services-list__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.54);
  opacity: 0;
  display: grid;
  place-items: center;
  transition: opacity 0.28s ease;
}

/* Remove the old background-image line and replace with this: */
.services-list__icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  /* background: rgba(255, 255, 255, 0.95); */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
  display: grid; /* center the icon inside the circle */
  place-items: center;
  /* background-image: url("../images/arrow_icon.svg"); ← remove this */
}

.services-list__icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}
.services-list__item:hover .services-list__overlay {
  opacity: 1;
}

.services-list__item:hover .services-list__media img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .services-list__item {
    grid-template-columns: 1fr;
  }

  .services-list__text {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-list__media {
    min-height: 260px;
  }
}

.contact-banner {
  min-height: clamp(390px, 48vw, 560px);
  overflow: hidden;
  background: var(--color-bg);
}

.contact-banner__content {
  display: grid;
  justify-items: center;
  padding: clamp(72px, 10vw, 130px) 0 clamp(44px, 7vw, 90px);
  text-align: center;
}

.contact-banner__title {
  margin: 0 0 clamp(54px, 6vw, 82px);
  color: var(--color-primary);
  font-size: clamp(4rem, 8vw, 8.125rem);
  font-weight: 800;
  line-height: 0.9;
}

.contact-banner__title .about-banner__line {
  color: var(--color-primary);
}

.contact-banner__content p {
  max-width: 820px;
  margin: 0;
  color: #000000;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

.contact-details {
  padding: clamp(44px, 5vw, 72px) 0 clamp(58px, 6vw, 88px);
}

.contact-details__grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(0, 1.62fr);
  gap: clamp(42px, 8vw, 118px);
  align-items: start;
}

.contact-details__info {
  display: grid;
  gap: 34px;
  color: #000000;
}

.contact-details__group {
  display: grid;
  gap: 20px;
}

.contact-details__group--contact {
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-details__label {
  margin: 0;
  color: rgba(0, 0, 0, 0.3);
  font-size: 0.95rem;
  line-height: 1.2;
}

.contact-details__info h2 {
  margin: 0;
  color: #000000;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
}

.contact-details__info address,
.contact-details__info a {
  margin: 0;
  color: #000000;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.35;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-form label {
  display: block;
  margin: 0;
}

.contact-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #f5f5f5;
  color: #000000;
  font: inherit;
  font-size: 0.92rem;
  outline: none;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input {
  min-height: 58px;
  padding: 0 20px;
}

.contact-form textarea {
  min-height: 186px;
  resize: vertical;
  padding: 22px 20px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #000000;
  opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(37, 174, 121, 0.28);
}

.contact-form__submit {
  float: inline-end;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 58px;
  margin-top: 28px;
  border: 0;
  border-radius: 999px;
  background: #101010;
  color: var(--color-primary);
  font: inherit;
  font-size: 0.875rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: var(--color-primary);
  color: #000000;
  transform: translateY(-1px);
}

.products-banner {
  /* min-height: clamp(430px, 49vw, 610px); */
  overflow: hidden;
  background: var(--color-white);
}

.products-banner__inner {
  padding: clamp(56px, 5vw, 78px) 0 clamp(30px, 4vw, 48px);
}

.products-banner__inner::after {
  content: "";
  display: block;
  margin-top: clamp(50px, 6vw, 72px);
}

.products-banner__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: clamp(42px, 9vw, 150px);
  margin-bottom: clamp(54px, 5vw, 72px);
}

.products-banner__title {
  margin: 0;
  color: #000000;
  font-size: clamp(4rem, 8vw, 8.125rem);
  font-weight: 800;
  /* line-height: 0.82; */
  letter-spacing: 0;
}

.products-banner__title .about-banner__line--left {
  color: var(--color-primary);
}

.products-banner__title .about-banner__line--right {
  color: #000000;
}

.products-banner__intro,
.products-banner__copy {
  margin: 0;
  color: #000000;
  font-size: clamp(0.84rem, 0.92vw, 0.98rem);
  line-height: 1.74;
}

.products-banner__intro {
  max-width: 520px;
  padding-bottom: clamp(6px, 1.8vw, 28px);
}

.products-banner__copy {
  width: min(100%, 1510px);
  line-height: 1.72;
}

.product-scroll {
  --product-scroll-distance: 0px;
  position: relative;
  height: calc(100vh + var(--product-scroll-distance));
  min-height: 130vh;
}

.product-scroll__sticky {
  position: sticky;
  top: 0;
  display: flex;
  align-items: flex-end;
  height: 100vh;
  overflow: hidden;
  padding: clamp(96px, 10vw, 150px) 0 clamp(54px, 6vw, 82px);
}

.product-scroll__viewport {
  width: 100%;
  overflow: visible;
}

.product-scroll__track {
  position: relative;
  width: var(--product-track-width, 100vw);
  height: clamp(260px, 32vw, 540px);
  padding-left: 0;
  padding-right: max(22vw, 360px);
  will-change: transform;
  gap: 0;
}

.product-scroll__item {
  --product-scale: 0.74;
  --product-frame-width: clamp(260px, 28vw, 540px);
  --product-card-gap: clamp(-130px, -7vw, -54px);
  position: relative;
  position: absolute;
  left: 0;
  bottom: 0;
  flex: 0 0 var(--product-frame-width);
  /* width: var(--product-frame-width); */
  width: 32vw; /* increase from 26vw — try 30vw–36vw to taste */
  min-width: 320px; /* increase from 260px */
  max-width: 480px; /* increase from 360px */
  aspect-ratio: 1;
  height: auto;
  margin: 0;
  overflow: hidden;
  background: #d9d9d9;
  isolation: isolate;
  transform: translate3d(var(--product-x, 0px), 0, 0)
    scale(var(--product-scale));
  transform-origin: bottom left;
  transition: transform 0.18s linear;
}

.product-scroll__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-scroll__item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.74) 100%
  );
  pointer-events: none;
}

.product-scroll__item h3 {
  position: absolute;
  left: clamp(18px, 2vw, 34px);
  right: clamp(18px, 2vw, 34px);
  bottom: clamp(20px, 2.4vw, 42px);
  z-index: 2;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(1.35rem, 2.3vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
}

.product-scroll__item:hover img {
  transform: scale(1.04);
}

.product-detail-page {
  background: var(--color-white);
}

.product-detail {
  padding: clamp(42px, 5vw, 76px) 0 clamp(54px, 6vw, 84px);
}

.product-detail__inner {
  display: grid;
  gap: clamp(30px, 3.8vw, 52px);
}

.product-detail__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 1rem;
  line-height: 1.2;
}

.product-detail__breadcrumb a {
  color: #000000;
}

.product-detail__breadcrumb-icon {
  width: 1rem;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 992px) {
  .product-detail-heading {
    margin-top: auto !important;
  }
}
.product-detail h1,
#product-detail-title,
.product-detail-heading {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(2.5rem, 6vw, 8rem);
  /* font-size: clamp(2.5rem, 5vw, 5.375rem); */
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  overflow: hidden;
  animation-name: bannerWordUp;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.product-detail__lead {
  max-width: 100%;
  margin: 0;
  color: #000000;
  font-size: clamp(0.86rem, 0.95vw, 0.96rem);
  line-height: 1.7;
}

.product-detail__image {
  display: block;
  width: 100%;
  max-height: clamp(390px, 42vw, 640px);
  border-radius: 16px;
  object-fit: cover;
}

.product-detail__copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 2vw, 150px);
}

.product-detail__copy p {
  margin: 0;
  color: #000000;
  font-size: clamp(0.85rem, 0.92vw, 0.96rem);
  line-height: 1.7;
}

.product-range {
  display: grid;
  gap: clamp(26px, 3vw, 36px);
}

.product-range h2 {
  margin: 0;
  color: #000000;
  font-size: clamp(1.7rem, 2.1vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
}

.product-range__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 clamp(24px, 3vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: productRange;
}

.product-range__list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-height: 112px;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  color: #000000;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 500;
  padding-top: 30px;
  line-height: 1.8;
  counter-increment: productRange;
}

.product-range__list li::before {
  content: counter(productRange, decimal-leading-zero);
  flex: 0 0 auto;
  color: var(--color-primary);
  font-size: 1.2rem;
}

.product-requirements {
  padding: clamp(54px, 6vw, 84px) 0;
  background: #f0f0f0;
}

.product-requirements__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: start;
}

.product-requirements__intro h2 {
  max-width: 240px;
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  font-weight: 600;
  line-height: 1.08;
}

.product-requirements__intro p {
  margin: 0;
  color: #000000;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
}

.product-requirements__form .contact-form__submit {
  min-width: 150px;
  min-height: 46px;
  margin-top: 10px;
}

.vision-block {
  padding: clamp(78px, 8vw, 118px) 0;
}

.vision-block__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  align-items: center;
  gap: clamp(48px, 10vw, 190px);
}

.vision-block__copy {
  max-width: 760px;
}

.vision-block__copy h2 {
  margin: 0 0 clamp(36px, 4vw, 52px);
  color: #000000;
  font-size: clamp(1.7rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
}

.vision-block__copy p {
  width: 75%;
  margin: 0;
  color: #000000;
  font-size: clamp(1rem, 1vw, 1.32rem);
  line-height: 1.48;
}

.vision-block__visual {
  display: grid;
  place-items: center;
  justify-self: end;
  width: min(100%, 320px);
  aspect-ratio: 1;
}

.vision-block__visual iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.core-principles {
  padding: clamp(18px, 3vw, 34px) 0 clamp(86px, 9vw, 126px);
}

.core-principles__inner h2 {
  margin: 0 0 clamp(54px, 6vw, 74px);
  color: #000000;
  font-size: clamp(1.35rem, 1.75vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 22px;
}

.principle-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 88px;
  margin: 0;
  padding: 18px 30px;
  border-radius: 18px;
  background: #d5f8eb;
  color: #000000;
}

.principle-card__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #008b78;
}

.principle-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.principle-card p {
  margin: 0;
  font-size: clamp(0.86rem, 1vw, 0.95rem);
  line-height: 1.35;
}

.strengths-block {
  background: var(--color-surface);
}

.strengths-block__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.strength-card {
  display: grid;
  align-content: start;
  min-height: clamp(420px, 46vw, 560px);
  padding: clamp(42px, 6vw, 76px) clamp(34px, 10vw, 176px);
  margin: 0;
  border-left: 1px solid rgba(3, 6, 4, 0.42);
}

.strength-card:first-child {
  border-left: 0;
}

.strength-card__icon {
  width: clamp(118px, 15vw, 176px);
  aspect-ratio: 1;
  margin: 0 0 clamp(58px, 8vw, 98px);
}

.strength-card__icon iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.strength-card__content {
  max-width: 410px;
}

.strength-card__content h2 {
  margin: 0 0 clamp(34px, 4vw, 52px);
  color: #000000;
  font-size: clamp(1.2rem, 1.55vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
}

.strength-card__content p {
  margin: 0;
  color: #000000;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.45;
}

.hse-block {
  display: grid;
  grid-template-columns:
    minmax(190px, 0.72fr) minmax(320px, 1.42fr)
    72px minmax(190px, 0.72fr);
  align-items: center;
  min-height: clamp(430px, 44vw, 560px);
  background: var(--color-bg);
}

.hse-block__image {
  width: 100%;
  overflow: hidden;
}

.hse-block__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hse-block__image--left {
  justify-self: start;
  width: min(100%, 320px);
  aspect-ratio: 1.16;
}

.hse-block__image--right {
  align-self: stretch;
}

.hse-block__content {
  max-width: 660px;
  padding: clamp(42px, 5vw, 72px) clamp(36px, 6vw, 92px);
}

.hse-block__content h2 {
  margin: 0 0 clamp(34px, 4vw, 50px);
  color: #000000;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  font-weight: 700;
  line-height: 1.2;
}

.hse-block__content p {
  margin: 0;
  color: #000000;
  font-size: clamp(0.86rem, 0.96vw, 0.96rem);
  line-height: 1.7;
}

.hse-block__vertical {
  justify-self: center;
  margin: 0;
  color: rgba(0, 0, 0, 0.14);
  font-size: clamp(1.3rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.future-plans {
  display: grid;
  place-items: center;
  min-height: clamp(260px, 31vw, 410px);
  background:
    center / min(82vw, 1040px) auto no-repeat url("../images/worldmap.svg"),
    var(--color-white);
  text-align: center;
}

.future-plans__inner {
  padding: clamp(72px, 9vw, 128px) 0;
}

.future-plans__inner h2 {
  margin: 0 0 clamp(28px, 3vw, 42px);
  color: #000000;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.future-plans__inner p {
  max-width: 620px;
  margin: 0 auto;
  color: #000000;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.5;
}

@keyframes aboutTitleFromLeft {
  from {
    opacity: 0;
    transform: translateX(-18vw);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aboutTitleFromRight {
  from {
    opacity: 0;
    transform: translateX(18vw);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 214px;
  line-height: 1;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
  font-size: 15px;
  line-height: 1;
}

.site-nav a {
  padding: 14px 0;
  color: #171717;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 30px;
  background: #030604;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--color-primary);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 45px;
  padding: 0 26px;
  border-radius: 40px;
  background: #030604;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}

.quote-button--mobile {
  display: none;
}
.section-subtitle {
  text-align: center;
  color: var(--color-grey);
  margin-bottom: 40px;
}
.section-title {
  margin-bottom: 72px;
  color: #101010;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.project-support {
  background: #f7f8f7;
  padding: 64px 0 78px;
}

.support-timeline {
  position: relative;
  --timeline-card-height: 224px;
  --timeline-row-one: 0px;
  --timeline-row-two: 300px;
  --timeline-row-three: 650px;
  --timeline-point-size: 48px;
  --timeline-point-offset: 88px;
  min-height: 874px;
}

.support-timeline__line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 420px;
  height: 900px;
  overflow: visible;
  transform: translateX(-50%);
}

.support-timeline__path {
  fill: none;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-miterlimit: 4;
  stroke-width: 1.5;
  stroke-dasharray: 8 8;
}

.support-timeline__path--base {
  stroke: rgba(16, 16, 16, 0.42);
}

.support-timeline__path--progress {
  stroke: var(--color-primary);
  stroke-dasharray: none;
  clip-path: inset(0 0 var(--timeline-reveal, 100%) 0);
}

.support-card {
  position: absolute;
  width: min(100%, 320px);
  min-height: var(--timeline-card-height);
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 38px rgba(22, 34, 45, 0.06);
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.support-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.support-card p {
  margin-bottom: 18px;
  color: #101010;
  font-size: 0.8125rem;
  line-height: 1.55;
}

.support-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  object-fit: cover;
}

.support-card--left {
  left: 26px;
}

.support-card--right {
  right: 54px;
}

.support-card--top {
  top: var(--timeline-row-one);
}

.support-card--middle {
  top: var(--timeline-row-two);
}

.support-card--bottom {
  top: var(--timeline-row-three);
  left: 190px;
}

.support-point {
  position: absolute;
  left: 50%;
  display: grid;
  place-items: center;
  width: var(--timeline-point-size);
  height: var(--timeline-point-size);
  border-radius: 50%;
  background: var(--color-primary);
  transform: translateX(-50%);
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

.support-point.is-active {
  box-shadow:
    0 0 0 12px rgba(37, 174, 121, 0.22),
    0 0 0 22px rgba(37, 174, 121, 0.14),
    0 0 0 32px rgba(37, 174, 121, 0.08);
  animation: support-point-rings 1.8s ease-out infinite;
}

.support-point span {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-primary);
}

.support-point img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes support-point-rings {
  0%,
  100% {
    box-shadow:
      0 0 0 10px rgba(37, 174, 121, 0.26),
      0 0 0 20px rgba(37, 174, 121, 0.16),
      0 0 0 30px rgba(37, 174, 121, 0.09);
  }

  50% {
    box-shadow:
      0 0 0 14px rgba(37, 174, 121, 0.2),
      0 0 0 25px rgba(37, 174, 121, 0.12),
      0 0 0 36px rgba(37, 174, 121, 0.06);
  }
}

.support-point--one {
  top: calc(var(--timeline-row-one) + var(--timeline-point-offset));
  margin-left: -62px;
}

.support-point--two {
  top: calc(var(--timeline-row-two) + var(--timeline-point-offset));
}

.support-point--three {
  top: calc(var(--timeline-row-three) + var(--timeline-point-offset));
  margin-left: 112px;
}

.brand-showcase {
  overflow: hidden;
  background: #030604;
  padding: 82px 0 96px;
}

.brand-showcase__subtitle {
  color: rgba(255, 255, 255, 0.66);
}

.brand-showcase__title {
  margin-bottom: 40px;
  color: var(--color-primary);
  letter-spacing: 1px;
}

.brand-slider {
  --brand-slider-gap: 24px;
  --brand-slider-offset: 11vw;
  display: grid;
  gap: 34px;
  width: 100%;
  overflow: hidden;
}

.brand-slider__row {
  width: 100%;
  overflow: hidden;
}

.brand-slider__row--offset {
  box-sizing: border-box;
  padding-left: var(--brand-slider-offset);
}

.brand-slider__track {
  display: flex;
  width: max-content;
  gap: var(--brand-slider-gap);
  animation: brandSlide 18s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
}

.brand-slider__track--delayed {
  animation: brandSlide 18s linear infinite;
  animation-delay: -9s;
}

.brand-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(180px, 16vw, 250px);
  min-height: 96px;
  flex: 0 0 auto;
  padding: 16px 22px;
  contain: layout paint;
}

.brand-card img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
  filter: grayscale(100%);
}

.why-choose {
  padding-top: 88px;
  padding-bottom: 88px;
}

.why-choose__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.why-choose__title {
  margin-bottom: 36px;
  color: #030604;
}

.why-choose__copy {
  max-width: 520px;
  margin: 0;
  color: rgba(3, 6, 4, 0.82);
  font-size: 1.05rem;
  line-height: 1.8;
}

.why-choose__accordion {
  border-bottom: 1px solid rgba(0, 0, 0);
}

.why-choose__item {
  border-top: 1px solid rgba(0, 0, 0);
}
.why-choose__accordion .why-choose__item:first-child {
  border-top: none !important;
}

.why-choose__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: #030604;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.why-choose__icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background: center / contain no-repeat url("../images/arrow_icon.svg");
  transition: transform 0.3s ease;
}

.why-choose__item.is-open .why-choose__icon {
  transform: rotate(180deg);
}

.why-choose__panel {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    height 0.38s ease,
    opacity 0.28s ease;
}

.why-choose__panel > p {
  margin: 0;
  padding: 0 0 22px;
  color: rgba(3, 6, 4, 0.72);
  font-size: 0.98rem;
  line-height: 1.75;
  transform: translateY(-6px);
  transition: transform 0.38s ease;
}

.why-choose__item.is-open .why-choose__panel {
  opacity: 1;
}

.why-choose__item.is-open .why-choose__panel > p {
  transform: translateY(0);
}

.service-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #f1f2f1;
}

.service-stack__card {
  position: relative;
  display: flex;
  min-height: 645px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 52px clamp(24px, 3.5vw, 58px) 76px;
  border-left: 1px solid rgba(255, 255, 255, 0.9);
  color: #030604;
  isolation: isolate;
}

.service-stack__card:first-child {
  border-left: 0;
}

.service-stack__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--service-bg);
  background-position: center;
  background-size: cover;
  transform: translateY(-100%);
  transition: transform 0.65s ease;
}

.service-stack__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(3, 6, 4, 0.24) 0%,
    rgba(3, 6, 4, 0.78) 100%
  );
  opacity: 0;
  transform: translateY(-100%);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.service-stack__card.is-active::before {
  animation: serviceImageReveal 0.65s ease both;
}

.service-stack__card.is-active::after {
  opacity: 1;
  animation: serviceImageReveal 0.65s ease both;
}

.service-stack__card.is-leaving::before {
  animation: serviceImageHide 0.65s ease both;
}

.service-stack__card.is-leaving::after {
  opacity: 1;
  animation: serviceImageHide 0.65s ease both;
}

.service-stack__card--procurement {
  --service-bg: url("../images/procurement.webp");
}

.service-stack__card--logistics {
  --service-bg: url("../images/logistics.webp");
}

.service-stack__card--distribution {
  --service-bg: url("../images/product.webp");
}

.service-stack__card--epm {
  --service-bg: url("../images/epm.webp");
}

.service-stack__icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-primary);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.service-stack__icon img {
  display: block;
  /* width: 44px;
  height: 44px; */
  object-fit: contain;
}

.service-stack__content {
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.service-stack__content h3 {
  margin-bottom: 56px;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.service-stack__content p {
  max-width: 330px;
  font-size: clamp(1rem, 1.22vw, 1.2rem);
  line-height: 1.08;
}

.service-stack__card.is-active {
  color: var(--color-white);
}

.service-stack__card.is-active .service-stack__icon {
  background: var(--color-white);
  transform: translateY(-8px);
}

.service-stack__card.is-active .service-stack__content {
  transform: translateY(-10px);
}

.site-footer-wrap {
  background: var(--color-white);
  padding: 20px 20px 24px;
}

.site-footer {
  width: min(100%, 1580px);
  margin: 0 auto;
  padding: clamp(34px, 4vw, 68px);
  border-radius: 22px;
  background: #111111;
  color: var(--color-white);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 1.25fr 0.9fr;
  gap: 52px 44px;
  align-items: start;
}

.site-footer__column,
.site-footer__brand-block {
  min-width: 0;
}

.site-footer__heading {
  margin-bottom: 26px;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
}

.site-footer__links,
.site-footer__address {
  display: grid;
  gap: 12px;
  margin: 0;
  color: #63f3bc;
  font-style: normal;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.45;
}

.site-footer__links a,
.site-footer__address {
  color: #63f3bc;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
  color: #a8ffe0;
  transform: translateX(3px);
}

.site-footer__socials {
  display: flex;
  gap: 14px;
  justify-items: start;
}

.site-footer__socials a {
  min-width: 126px;
  padding: 8px 18px;
  border: 1px solid #63f3bc;
  border-radius: 999px;
  color: #63f3bc;
  font-size: 1rem;
  line-height: 1.15;
  text-align: center;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
  background: rgba(99, 243, 188, 0.12);
  border-color: #a8ffe0;
}

.site-footer__brand-block {
  grid-column: 1 / 2;
  align-self: end;
  padding-top: 18px;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  max-width: 360px;
}

.site-footer__brand img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes brandSlide {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - (var(--brand-slider-gap) / 2)), 0, 0);
  }
}

@keyframes serviceImageReveal {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes serviceImageHide {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

@media (min-width: 992px) and (max-width: 1180px) {
  .site-header {
    gap: 16px;
    width: calc(100% - 32px);
    padding-left: 18px;
  }

  .brand {
    width: 178px;
  }

  .site-nav {
    gap: 18px;
    font-size: 14px;
  }

  .quote-button {
    min-width: 128px;
    min-height: 40px;
    padding: 0 18px;
  }

  .support-card--bottom {
    left: 80px;
  }

  .support-card--left {
    left: 0;
  }

  .support-card--right {
    right: 0;
  }
}

@media (max-width: 1199px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 36px;
  }

  .site-footer__brand-block {
    grid-column: 1 / -1;
    order: 7;
    padding-top: 0;
  }
}

@media (max-width: 991px) {
  :root {
    --fixed-header-clearance: 118px;
  }

  .site-header {
    align-items: center;
    flex-wrap: wrap;
    top: 18px;
    width: calc(100% - 32px);
    padding: 10px 10px 10px 18px;
    gap: 0 14px;
    border-radius: 30px;
  }

  .brand {
    width: 176px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-header.is-nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    order: 3;
    width: 100%;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow: hidden;
    padding-top: 0;
    font-size: 14px;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      max-height 0.45s ease,
      opacity 0.28s ease,
      padding-top 0.45s ease,
      transform 0.45s ease;
  }

  .site-header.is-nav-open .site-nav {
    max-height: calc(100vh - 118px);
    opacity: 1;
    padding-top: 14px;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 0;
    border-top: 1px solid rgba(16, 16, 16, 0.12);
  }

  .site-header > .quote-button {
    display: none;
  }

  .quote-button--mobile {
    display: inline-flex;
    min-width: 118px;
    min-height: 38px;
    width: max-content;
    margin-top: 12px;
    padding: 0 22px;
    border-top: 0;
    color: var(--color-primary);
    font-size: 14px;
  }

  .site-nav .quote-button--mobile {
    color: var(--color-primary);
  }

  .home-banner__content {
    bottom: 8vh;
    width: calc(100% - 32px);
  }

  .home-banner__title {
    max-width: 760px;
    font-size: 4rem;
  }

  .about-banner__heading {
    padding-top: 34px;
  }

  .about-banner__title {
    font-size: clamp(3.25rem, 15vw, 7rem);
    line-height: 0.92;
  }

  .about-banner__image {
    min-height: 420px;
    background-attachment: scroll;
    background-position: center center;
  }

  .about-banner__copy {
    width: calc(100% - 36px);
    padding: 42px 0 56px;
  }

  .contact-banner__content {
    padding-top: 76px;
  }

  .contact-banner__title {
    font-size: clamp(4rem, 15vw, 7rem);
  }

  .contact-details__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .products-banner {
    min-height: 0;
  }

  .products-banner__inner {
    padding: 64px 0 42px;
  }

  .products-banner__hero {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 40px;
  }

  .products-banner__title {
    font-size: clamp(5rem, 15vw, 7rem);
    line-height: 0.9;
  }

  .products-banner__intro {
    max-width: 720px;
    padding-bottom: 0;
  }

  .product-scroll {
    height: auto;
    min-height: 0;
  }

  .product-scroll__sticky {
    position: relative;
    height: auto;
    padding: 58px 0 64px;
  }

  .product-scroll__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
  }

  .product-scroll__track {
    display: flex;
    align-items: flex-end;
    width: max-content;
    height: auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  .product-scroll__item {
    position: relative;
    --product-frame-width: min(78vw, 420px);
    --product-card-gap: 14px;
    flex-basis: var(--product-frame-width);
    margin-right: var(--product-card-gap);
  }

  .product-scroll__item {
    --product-scale: 1;
    --product-x: 0px;
    transform-origin: center;
  }

  .product-detail h1 {
    font-size: clamp(3.5rem, 12vw, 6.4rem);
    line-height: 0.9;
  }

  .product-detail__breadcrumb {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.84rem;
  }

  .product-detail__image {
    aspect-ratio: 16 / 9;
    max-height: none;
  }

  .product-detail__copy,
  .product-requirements__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-detail__copy {
    gap: 18px;
  }

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

  .product-range__list li {
    min-height: 62px;
    font-size: 0.92rem;
    font-weight: 400;
  }

  .product-range__list li::before {
    color: rgba(0, 0, 0, 0.42);
    font-size: 0.82rem;
  }

  .product-requirements__intro h2 {
    max-width: none;
  }

  .vision-block {
    padding: 68px 0 78px;
  }

  .vision-block__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  .vision-block__copy {
    max-width: 100%;
  }

  .vision-block__visual {
    justify-self: center;
    width: min(64vw, 280px);
  }

  .core-principles {
    padding-bottom: 82px;
  }

  .core-principles__inner h2 {
    margin-bottom: 42px;
  }

  .principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .principle-card {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 16px;
    min-height: 84px;
    padding: 16px 20px;
    border-radius: 16px;
  }

  .strength-card {
    min-height: 420px;
    padding: 46px 34px 58px;
  }

  .strength-card__icon {
    margin-bottom: 54px;
  }

  .hse-block {
    grid-template-columns:
      minmax(150px, 0.7fr) minmax(300px, 1.3fr)
      56px minmax(150px, 0.7fr);
  }

  .hse-block__content {
    padding: 38px 34px;
  }

  .project-support {
    padding: 60px 0 70px;
  }

  .section-title {
    margin-bottom: 36px;
    font-size: 1.2rem;
  }

  .support-timeline {
    display: grid;
    grid-template-columns: 52px minmax(0, 520px);
    column-gap: 24px;
    row-gap: 54px;
    justify-content: center;
    --timeline-mobile-line-left: 44px;
    --timeline-mobile-line-start: 0px;
    --timeline-mobile-line-height: 0px;
    --timeline-point-size: 42px;
    min-height: 0;
    padding: 0 18px;
  }

  .support-timeline__line {
    display: none;
  }

  .support-timeline__path {
    display: none;
  }

  .support-timeline::before,
  .support-timeline::after {
    content: "";
    position: absolute;
    top: var(--timeline-mobile-line-start);
    bottom: auto;
    left: var(--timeline-mobile-line-left);
    width: 2px;
    height: var(--timeline-mobile-line-height);
    background-image: repeating-linear-gradient(
      to bottom,
      rgba(16, 16, 16, 0.42) 0 8px,
      transparent 8px 16px
    );
  }

  .support-timeline::after {
    clip-path: inset(0 0 var(--timeline-reveal, 100%) 0);
    background-image: none;
    background-color: var(--color-primary);
  }

  .support-card,
  .support-card--left,
  .support-card--right,
  .support-card--top,
  .support-card--middle,
  .support-card--bottom {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    grid-column: 2;
    width: min(100%, 520px);
    min-height: 0;
  }

  .support-point {
    position: relative;
    left: auto;
    grid-column: 1;
    justify-self: center;
    align-self: center;
    width: var(--timeline-point-size);
    height: var(--timeline-point-size);
    z-index: 1;
    margin-left: 0;
    transform: none;
  }

  .support-card--top,
  .support-point--one {
    grid-row: 1;
  }

  .support-point--one {
    top: auto;
  }

  .support-card--middle,
  .support-point--two {
    grid-row: 2;
  }

  .support-point--two {
    top: auto;
  }

  .support-card--bottom,
  .support-point--three {
    grid-row: 3;
  }

  .support-point--three {
    top: auto;
  }

  .brand-showcase {
    padding: 68px 0 78px;
  }

  .brand-showcase__title {
    margin-bottom: 64px;
  }

  .site-footer-wrap {
    padding: 16px 16px 20px;
  }

  .site-footer {
    padding: 30px 24px;
    border-radius: 18px;
  }

  .site-footer__grid {
    gap: 34px 26px;
  }

  .why-choose__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .why-choose__copy {
    max-width: 100%;
  }

  .brand-slider {
    --brand-slider-gap: 18px;
    --brand-slider-offset: 72px;
    gap: 24px;
  }

  .brand-slider__track {
    animation-duration: 24s;
  }

  .brand-slider__track--delayed {
    animation-duration: 28s;
    animation-delay: -14s;
  }

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

  .service-stack__card {
    min-height: 440px;
    padding: 42px 34px 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.9);
  }

  .service-stack__card:nth-child(odd) {
    border-left: 0;
  }

  .service-stack__card:nth-child(-n + 2) {
    border-top: 0;
  }

  .service-stack__content h3 {
    margin-bottom: 36px;
  }
}

@media (max-width: 520px) {
  :root {
    --fixed-header-clearance: 108px;
  }

  .site-header {
    width: calc(100% - 24px);
    padding: 10px 10px 10px 16px;
    background: #ffffff;
  }

  .brand {
    width: 165px;
  }

  .home-banner__content {
    width: calc(100% - 24px);
  }

  .home-banner__title {
    font-size: 2.9rem;
    line-height: 1.04;
  }

  .about-banner__heading {
    width: calc(100% - 24px);
    padding: 28px 0 24px;
  }

  .about-banner__title {
    font-size: clamp(3rem, 17vw, 4.9rem);
  }

  .about-banner__image {
    min-height: 310px;
  }

  .about-banner__copy {
    width: 100%;
    padding: 34px 0 46px;
  }

  .about-banner__copy p {
    line-height: 1.7;
  }

  .contact-banner {
    min-height: 430px;
  }

  .contact-banner__content {
    padding: 62px 0 54px;
  }

  .contact-banner__title {
    margin-bottom: 36px;
    font-size: clamp(3.6rem, 18vw, 5rem);
  }

  .contact-details {
    padding: 42px 0 58px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-form {
    gap: 16px;
  }

  .contact-form input {
    min-height: 54px;
  }

  .contact-form textarea {
    min-height: 160px;
  }

  .contact-form__submit {
    justify-self: stretch;
    /* min-width: 0; */
    margin-top: 12px;
  }

  .products-banner {
    min-height: 0;
  }

  .products-banner__inner {
    padding: 56px 25px 34px;
  }

  .products-banner__hero {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 36px;
  }

  .products-banner__title {
    font-size: clamp(4rem, 18vw, 6.2rem);
    line-height: 0.9;
  }

  .products-banner__intro {
    max-width: none;
    padding-bottom: 0;
  }

  .products-banner__inner::after {
    margin-top: 38px;
  }

  .product-scroll__sticky {
    padding: 48px 0 54px;
  }

  .product-scroll__track {
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-scroll__item {
    --product-frame-width: min(82vw, 460px);
    --product-card-gap: 12px;
    flex-basis: var(--product-frame-width);
  }

  .product-detail {
    padding: 28px 0 44px;
  }

  .product-detail__inner {
    gap: 20px;
  }

  .product-detail__breadcrumb {
    gap: 7px;
    font-size: 0.72rem;
  }

  .product-detail h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
    line-height: 0.96;
  }

  .product-detail__lead,
  .product-detail__copy p {
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .product-detail__image {
    aspect-ratio: 4 / 3;
    max-height: none;
    border-radius: 10px;
  }

  .product-range {
    gap: 18px;
  }

  .product-range h2 {
    font-size: 1.38rem;
  }

  .product-range__list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-range__list li {
    min-height: 52px;
    gap: 10px;
    font-size: 0.84rem;
  }

  .product-range__list li::before {
    font-size: 0.78rem;
  }

  .product-requirements {
    padding: 36px 0 48px;
  }

  .product-requirements__intro h2 {
    font-size: 1.3rem;
  }

  .product-requirements__intro p {
    font-size: 0.9rem;
    font-weight: 500;
  }

  .vision-block {
    padding: 54px 0 64px;
  }

  .vision-block__inner {
    gap: 34px;
  }

  .vision-block__copy h2 {
    margin-bottom: 24px;
  }

  .vision-block__copy p {
    font-size: 0.98rem;
    line-height: 1.65;
    width: 100%;
  }

  .core-principles {
    padding: 12px 0 64px;
  }

  .core-principles__inner h2 {
    margin-bottom: 28px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .principle-card {
    min-height: 76px;
    padding: 15px 18px;
  }

  .principle-card p {
    font-size: 0.9rem;
  }

  .strengths-block__grid {
    grid-template-columns: 1fr;
  }

  .strength-card {
    min-height: 0;
    padding: 44px 24px 54px;
    border-left: 0;
    border-top: 1px solid rgba(3, 6, 4, 0.26);
  }

  .strength-card:first-child {
    border-top: 0;
  }

  .strength-card__icon {
    width: 128px;
    margin-bottom: 34px;
  }

  .strength-card__content h2 {
    margin-bottom: 22px;
  }

  .hse-block {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hse-block__image--left {
    width: 100%;
    aspect-ratio: 1.8;
  }

  .hse-block__content {
    max-width: none;
    padding: 42px 24px;
  }

  .hse-block__vertical {
    display: none;
  }

  .hse-block__image--right {
    /* max-height: 520px; */
  }

  .future-plans {
    min-height: 260px;
    background-size: 920px auto;
  }

  .future-plans__inner {
    padding: 74px 0;
  }

  .support-timeline {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 42px;
    --timeline-point-size: 34px;
    padding: 0;
  }

  .support-card {
    padding: 14px;
  }

  .brand-showcase {
    padding: 56px 0 66px;
  }

  .brand-showcase__title {
    margin-bottom: 48px;
    font-size: 1.05rem;
  }

  .site-footer-wrap {
    padding: 12px 12px 18px;
  }

  .site-footer {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .site-footer__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .site-footer__heading {
    margin-bottom: 18px;
  }

  .site-footer__links,
  .site-footer__address {
    gap: 10px;
    font-size: 0.98rem;
  }

  .site-footer__socials {
    width: 100%;
    flex-direction: column;
  }

  .site-footer__socials a {
    width: 100%;
    min-width: 0;
  }

  .site-footer__brand {
    max-width: 260px;
  }

  .why-choose {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .why-choose__title {
    margin-bottom: 24px;
  }

  .why-choose__trigger {
    padding: 16px 0;
    font-size: 0.96rem;
  }

  .why-choose__panel > p {
    padding-bottom: 18px;
    font-size: 0.94rem;
  }

  .brand-slider {
    --brand-slider-gap: 14px;
    --brand-slider-offset: 54px;
    gap: 18px;
  }

  .brand-card {
    width: 270px;
    min-height: 82px;
    padding: 12px 16px;
  }

  .brand-card img {
    max-height: 62px;
  }

  .brand-slider__track {
    animation-duration: 13s;
  }

  .brand-slider__track--delayed {
    animation-duration: 16s;
    animation-delay: -8s;
  }

  .service-stack {
    grid-template-columns: 1fr;
  }

  .service-stack__card,
  .service-stack__card:nth-child(odd),
  .service-stack__card:nth-child(-n + 2) {
    min-height: 380px;
    padding: 34px 24px 44px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.9);
  }

  .service-stack__card:first-child {
    border-top: 0;
  }

  .service-stack__icon {
    width: 76px;
    height: 76px;
  }

  .service-stack__icon img {
    width: 80px;
    height: 80px;
  }

  .service-stack__content h3 {
    margin-bottom: 28px;
  }

  .service-stack__content p {
    max-width: none;
    line-height: 1.18;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-slider__track {
    animation-play-state: paused;
  }

  .about-banner__line,
  .product-detail h1 {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
/* project page card */
.projects-section {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Filter Buttons ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  width: 200px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(16, 16, 16, 0.15);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 500;
  color: #101010;
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: #101010;
}

.filter-btn.active {
  background: #101010;
  color: var(--color-primary);
  border-color: #101010;
}

/* ── Grid ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
}

/* ── Base Card ── */
.project-card {
  cursor: pointer;
  border-radius: 16px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.project-card.hidden {
  display: none;
}

.project-card.fade-out {
  opacity: 0;
  transform: translateY(8px);
}

/* ── Collapsed view (default) ── */
.card-collapsed {
  display: block;
}

.card-collapsed__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: #e8e8e8;
  margin-bottom: 16px;
}

.card-collapsed__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.project-card:hover:not(.is-expanded) .card-collapsed__image img {
  transform: scale(1.05);
}

.card-collapsed__title {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #101010;
}

.card-collapsed__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.card-collapsed__tag {
  font-size: 0.82rem;
  color: #555;
  font-weight: 400;
}

.card-collapsed__tag:not(:last-child)::after {
  content: " • ";
  margin: 0 4px;
  color: #999;
}

/* ── Expanded view (hidden by default, injected by JS) ── */
.card-expanded {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: #f7f7f7;
  border-radius: 20px;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.42s ease 0.04s,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.04s;
}

/* ── Expanded state on card ── */
.project-card.is-expanded {
  grid-column: 1 / -1;
  cursor: default;
}

.project-card.is-expanded .card-collapsed {
  display: none;
}

.project-card.is-expanded .card-expanded {
  display: grid;
}

.project-card.is-expanded .card-expanded.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Expanded: Left — details ── */
.card-expanded__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-expanded__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-expanded__tag {
  padding: 5px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(16, 16, 16, 0.15);
  font-size: 0.78rem;
  color: #555;
}

.card-expanded__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #101010;
  margin: 0;
}

.card-expanded__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(16, 16, 16, 0.08);
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
}

.card-expanded__meta-item label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 3px;
}

.card-expanded__meta-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #101010;
}

.card-expanded__description {
  font-size: 0.93rem;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

.card-expanded__scope h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin: 0 0 12px;
}

.card-expanded__scope ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-expanded__scope ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #333;
}

.card-expanded__scope ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #101010;
  flex-shrink: 0;
}

/* ── Expanded: Right — image ── */
.card-expanded__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
}

.card-expanded__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Close button ── */
.card-expanded__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(16, 16, 16, 0.15);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background 0.2s,
    border-color 0.2s;
  z-index: 2;
}

.card-expanded__close:hover {
  /* background: #101010; */
  /* border-color: #101010; */
}

.card-expanded__close:hover svg {
  stroke: #fff;
}

.card-expanded__close svg {
  width: 13px;
  height: 13px;
  stroke: #101010;
  transition: stroke 0.2s;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .filter-bar {
    gap: 8px;
    justify-content: center;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  /* On mobile, full-width is already default so no grid-column needed */
  .project-card.is-expanded {
    grid-column: 1;
  }

  .card-expanded {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Image on top when stacked */
  .card-expanded__image {
    order: -1;
    aspect-ratio: 16 / 10;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.product-scroll__track {
  direction: rtl;
}
.product-scroll__item {
  direction: ltr;
}

.brand-showcase p {
  font-size: 1.125rem;
  color: #f5f5f5;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 90px;
}

.site-nav .dropdown {
  position: relative;
}

.site-nav .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: #171717;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  padding: 14px 0;
}

.site-nav .dropdown-toggle::after {
  display: none;
}

.site-nav .dropdown-toggle .bi {
  font-size: 0.78rem;
  line-height: 1;
}

.site-nav .dropdown-menu {
  max-height: 70vh;
  overflow-y: auto;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(6, 20, 36, 0.18);
  font-size: 14px;
}

.site-nav .dropdown-menu .dropdown-item {
  padding: 10px 18px;
  color: #171717;
  line-height: 1.25;
  white-space: normal;
}

.site-nav .dropdown-menu .dropdown-item:hover,
.site-nav .dropdown-menu .dropdown-item:focus {
  background: rgba(37, 174, 121, 0.12);
  color: #171717;
}

@media (min-width: 992px) {
  .site-nav .dropdown-menu {
    width: 520px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 8px;
    padding: 10px;
  }

  .site-nav .dropdown-menu.show,
  .site-nav .dropdown:hover .dropdown-menu {
    display: grid;
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .site-header.is-nav-open .site-nav {
    max-height: 80vh;
    overflow-y: auto;
  }

  .site-nav .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    margin: 0;
    padding: 0 0 6px 12px;
    background: transparent;
    box-shadow: none;
  }

  .site-nav .dropdown-toggle {
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid rgba(16, 16, 16, 0.12);
  }

  .site-nav .dropdown.is-submenu-open .dropdown-menu {
    display: block;
  }

  .site-nav .dropdown.is-submenu-open .dropdown-toggle .bi {
    transform: rotate(180deg);
  }
}
/* @media (max-width: 768px) {
  .home-banner__video {
    display: none;
  }

  .home-banner {
    background: url("../videos/banner-poster.jpg") center/cover no-repeat;
  }
} */

/* contact form */
.contact-form #contact .form-group label.error {
  color: red;
  margin-top: 5px;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 13px;
}
.contact .contact-form #error,
.contact .contact-form #success {
  display: none;
  float: left;
}
.contact .contact-form #error {
  background: red;
  color: #fff;
}
.contact .contact-form #success {
  background: green;
  color: #fff;
}
.contact .contact-form .alert {
  border: none;
  border-radius: 0;
  padding: 20px 30px;
}

.form-group {
  margin: 20px 0;
}
