:root {
  /* Brand Color 1 */
  --brand-color-1: #06ff43;
  /* Brand Color 2 */
  --brand-color-2: #0c244a;
  /* Brand Color 3 */
  --brand-color-3: #c0c5cd;
  /* White */
  --white: #ffffff;
  /* Black */
  --black: #000000;
  /* Grayscale 1 */
  --grayscale-1: #f8f8f8;
  /* Grayscale 2 */
  --grayscale-2: #eaeaea;
  /* Grayscale 3 */
  --grayscale-3: #d8d8d8;
  /* Grayscale 4 */
  --grayscale-4: #bababa;
  /* Grayscale 5 */
  --grayscale-5: #aaaaaa;
  /* Grayscale 6 */
  --grayscale-6: #9b9b9b;
  /* Grayscale 7 */
  --grayscale-7: #666666;
  /* Grayscale 8 */
  --grayscale-8: #565656;
  /* Grayscale 9 */
  --grayscale-9: #474747;
  /* Grayscale 10 */
  --grayscale-10: #2d2d2d;
  /* Grayscale 11 */
  --grayscale-11: #1e1e1e;
  /* Grayscale 12 */
  --grayscale-12: #101010;

  --font-family: "Montserrat", Arial, sans-serif;
  --container: 1170px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-space: clamp(4rem, 8vw, 7rem);
  --shadow: 0 22px 55px rgba(12, 36, 74, 0.13);
  --radius: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--brand-color-2);
  background: var(--white);
  font-family: var(--font-family);
  font-size: 1.1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--brand-color-1);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

h3 {
  line-height: 1.35;
}

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section--dark {
  color: var(--white);
  background-color: var(--grayscale-12);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--brand-color-2);
  background: var(--brand-color-1);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2.25rem;
  border: 2px solid var(--brand-color-1);
  border-radius: 999px;
  color: var(--brand-color-2);
  background: var(--brand-color-1);
  box-shadow: 0 10px 28px rgba(6, 255, 67, 0.18);
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 12px 34px rgba(6, 255, 67, 0.28);
  transform: translateY(-2px);
}

.button--small {
  min-height: 2.7rem;
  padding-inline: 1.75rem;
  font-size: 0.78rem;
}

.button--outline {
  border: 2px solid var(--brand-color-1);
  color: var(--white);
  background: rgba(12, 36, 74, 0.82);
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--brand-color-1);
  color: var(--brand-color-2);
  background: var(--brand-color-1);
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  isolation: isolate;
  transition: transform 280ms ease;
  will-change: transform;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(180deg, #0c244a 0%, rgba(12, 36, 74, 0) 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.site-header.is-sticky {
  position: fixed;
}

.site-header.is-hidden {
  pointer-events: none;
  transform: translateY(calc(-100% - 0.25rem));
}

.site-header:focus-within {
  pointer-events: auto;
  transform: translateY(0);
}

.site-header.is-sticky::before {
  opacity: 1;
}

.language-bar {
  display: flex;
  min-height: 3.75rem;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  padding-bottom: 0;
}

.language-link {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  line-height: 1;
  text-decoration: none;
}

.language-link.is-active {
  color: var(--brand-color-2);
  background: rgba(255, 255, 255, 0.84);
}

.header-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
}

.primary-nav {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.75rem;
  border-radius: 999px;
  background: rgba(12, 36, 74, 0.94);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.mobile-nav-extras,
.mobile-language-bar {
  display: none;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  color: var(--brand-color-1);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a + a::before {
  width: 4px;
  height: 4px;
  margin-inline: 0.55rem;
  border-radius: 50%;
  background: var(--brand-color-1);
  content: "";
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--white);
}

.desktop-brand,
.mobile-brand,
.nav-toggle {
  display: none;
}

.site-header--internal .language-bar {
  min-height: 6.5rem;
}

.site-header--internal .desktop-brand {
  display: block;
  margin-right: auto;
}

.site-header--internal .desktop-brand img {
  width: 10rem;
  height: auto;
  margin-left: 1.3rem;
}

.primary-nav a.is-active {
  color: var(--white);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  color: var(--white);
  background: var(--brand-color-2);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(180deg, rgb(12 36 74 / 50%), rgb(12 36 74 / 70%));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  min-height: 100dvh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-block: 10rem 5rem;
  text-align: center;
}

.hero-logo {
  width: min(27rem, 70vw);
  height: auto;
  margin-bottom: 2.2rem;
}

.hero-content p {
  max-width: 34rem;
  margin-bottom: 1.8rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  text-wrap: balance;
}

.hero-button {
  display: none;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 1.5rem;
  left: 50%;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: translateY(-2px) rotate(45deg);
}

.internal-hero {
  position: relative;
  display: flex;
  min-height: 42rem;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  padding-block: 14rem 5.5rem;
  color: var(--white);
  background-color: var(--brand-color-2);
  background-position: center;
  background-size: cover;
}

.internal-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 36, 74, 0.82) 0%, rgba(12, 36, 74, 0.58) 52%, rgba(12, 36, 74, 0.28) 100%);
  content: "";
}

.internal-hero--about {
  background-image: url("../img/bg-header-title-sobre-nosotros.jpg");
}

.internal-hero--solutions {
  background-image: url("../img/bg-header-title-sobre-soluciones.jpg");
}

.internal-hero--products {
  background-image: url("../img/bg-header-title-productos.jpg");
}

.internal-hero--projects {
  background-image: url("../img/bg-header-title-proyectos.jpg");
}

.internal-hero--brands {
  background-image: url("../img/bg-header-title-marcas.jpg");
}

.internal-hero--coverage {
  background-image: url("../img/bg-header-title-cobertura.jpg");
}

.internal-hero--supply {
  background-image: url("../img/bg-header-title-cadena-de-suministro..jpg");
}

.internal-hero.internal-hero--product-detail {
  min-height: 22rem;
  padding-block: 9rem 2.5rem;
}

.internal-hero-content {
  position: relative;
  z-index: 1;
}

@media (min-width: 1051px) {
  .internal-hero-content {
    padding-right: 1.3rem;
    padding-left: 1.3rem;
  }
}

.internal-hero-kicker {
  margin-bottom: 0.55rem;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.internal-hero h1 {
  max-width: 48rem;
  margin: 0 0 1.5rem;
  color: var(--brand-color-1);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.internal-hero-content > p:last-child {
  max-width: 42rem;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.about-intro-content {
  max-width: 60rem;
  text-align: center;
}

.about-intro h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.35rem, 4.5vw, 4rem);
}

.about-intro p {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.9;
}

.difference {
  background-image: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.28)), url("../img/bg-dois.png");
  background-position: center;
  background-size: cover;
}

.difference h2 {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  color: var(--brand-color-1);
  text-align: center;
}

.difference-grid {
  display: grid;
  max-width: 48rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem clamp(3rem, 7vw, 6rem);
  margin-inline: auto;
}

.difference-card {
  position: relative;
  display: flex;
  min-height: 9rem;
  align-items: center;
  padding: 1.75rem 2.25rem;
  background: var(--brand-color-2);
}

.difference-card img {
  position: absolute;
  left: -0.75rem;
  width: auto;
  height: 1.65rem;
}

.difference-card p {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.75;
}

.solutions-page-heading {
  max-width: 64rem;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.solutions-page-eyebrow {
  margin-bottom: 1.25rem;
  color: var(--brand-color-1);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  text-transform: uppercase;
}

.solutions-page-heading h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
}

.solutions-page-heading > p:last-child {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.85;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.capability-card {
  display: flex;
  min-height: auto;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius);
  background: #c9d2db;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.capability-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.capability-card h3 {
  margin-bottom: 2rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.65;
  text-align: center;
}

.capability-card p {
  margin-bottom: 0.25rem;
}

.capability-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.capability-card li::before {
  content: "· ";
}

.also-serve {
  background: var(--brand-color-2);
}

.also-serve h2 {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  color: var(--brand-color-1);
  text-align: center;
}

.also-serve-grid {
  display: grid;
  max-width: 60rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-inline: auto;
}

.also-serve-card {
  overflow: hidden;
  border: 1px solid var(--brand-color-1);
  background: var(--brand-color-2);
}

.also-serve-card > img {
  display: block;
  width: 100%;
  height: 13.5rem;
  object-fit: cover;
}

.also-serve-card > div {
  padding: 1.65rem 1.5rem 2rem;
  text-align: center;
}

.also-serve-card h3 {
  margin-bottom: 0.35rem;
  color: var(--white);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
}

.also-serve-card p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.also-serve-card .button {
  margin-top: 0.75rem;
  max-width: 100%;
  text-align: center;
}

@media (min-width: 721px) {
  .also-serve-card {
    display: flex;
    flex-direction: column;
  }

  .also-serve-card > div {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
  }

  .also-serve-card p {
    margin-bottom: 0.75rem;
  }

  .also-serve-card .button {
    margin-top: auto;
  }
}

.why-retssa {
  position: relative;
  isolation: isolate;
  background-image: linear-gradient(rgba(16, 16, 16, 0.5), rgba(16, 16, 16, 0.64)), url("../img/bg-um.webp");
  background-position: center;
  background-size: cover;
}

.why-retssa-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: clamp(2rem, 6vw, 6rem);
}

.why-retssa-eyebrow {
  margin-bottom: clamp(2rem, 5vw, 4rem);
  color: var(--brand-color-1);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
}

.why-retssa-copy h2 {
  margin-bottom: 2rem;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 700;
}

.why-retssa-copy > p:last-child {
  margin-bottom: 0;
  line-height: 1.8;
}

.why-retssa-features {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.why-retssa-card {
  --why-card-padding: clamp(1.75rem, 4vw, 3rem);
  position: relative;
  min-height: 10rem;
  padding: var(--why-card-padding);
  color: var(--brand-color-2);
  background: rgba(248, 248, 248, 0.88);
}

.why-retssa-card > img {
  position: absolute;
  top: calc(var(--why-card-padding) + 0.8rem);
  left: -0.8rem;
  width: auto;
  height: 1.75rem;
}

.why-retssa-card h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 500;
}

.why-retssa-card p {
  margin: 0;
}

.why-retssa-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  grid-column: 1 / -1;
  margin-top: clamp(1rem, 3vw, 2rem);
  background: var(--black);
  object-fit: cover;
}

.product-catalog {
  padding-top: clamp(3rem, 6vw, 5rem);
  background: #c9d2db;
}

.product-filter-area {
  position: relative;
  z-index: 1;
}

.product-filter-tabs {
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
}

.product-filter-tab {
  min-height: 5.4rem;
  padding: 1.25rem clamp(1.5rem, 3vw, 2.5rem);
  border: 0;
  border-radius: 1.3rem 1.3rem 0 0;
  color: var(--white);
  background: var(--grayscale-4);
  cursor: pointer;
  font: inherit;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.product-filter-tab:hover,
.product-filter-tab:focus-visible {
  color: var(--brand-color-1);
  background: var(--brand-color-2);
}

.product-filter-tab.is-active {
  color: var(--brand-color-1);
  background: var(--brand-color-2);
}

.product-filter-select-label {
  display: none;
}

.product-catalog-panel {
  position: relative;
  z-index: 2;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  color: var(--white);
  background: var(--brand-color-2);
}

.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.catalog-product-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--brand-color-1);
  color: var(--brand-color-2);
  background: var(--white);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.catalog-product-card:hover {
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  transform: translateY(-5px);
}

.catalog-product-card[hidden] {
  display: none;
}

.catalog-product-card > img {
  display: block;
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.catalog-product-content {
  min-height: 13rem;
  padding: 1.75rem;
  text-align: center;
}

.catalog-product-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
}

.catalog-product-card p {
  margin: 0;
}

.catalog-product-actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding: 0 1.75rem 1.75rem;
}

.catalog-product-action {
  display: inline-flex;
  width: min(100%, 13.5rem);
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border: 2px solid var(--brand-color-1);
  border-radius: 999px;
  color: var(--brand-color-2);
  background: var(--brand-color-1);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.catalog-product-action:hover,
.catalog-product-action:focus-visible {
  color: var(--white);
  background: var(--brand-color-2);
  transform: translateY(-2px);
}

.catalog-product-action--outline {
  border-color: var(--brand-color-2);
  background: var(--white);
}

.product-detail-section {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  background: var(--brand-color-2);
}

.product-detail-intro {
  max-width: 72rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  line-height: 1.75;
}

.product-detail-panel {
  max-width: 72rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid var(--brand-color-1);
  color: var(--brand-color-2);
  background: var(--white);
}

.product-detail-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.product-detail-media {
  position: relative;
  margin: 0;
  min-width: 0;
}

.product-detail-media-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-detail-media-track::-webkit-scrollbar {
  display: none;
}

.product-detail-slide {
  flex: 0 0 100%;
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.product-detail-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-gallery-arrow {
  position: absolute;
  top: calc(50% - 0.75rem);
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--brand-color-2);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 0.25rem 1rem rgba(12, 36, 74, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.product-gallery-arrow::before {
  width: 0.55rem;
  height: 0.55rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}

.product-gallery-arrow--prev {
  left: 0.75rem;
}

.product-gallery-arrow--prev::before {
  transform: rotate(-135deg);
}

.product-gallery-arrow--next {
  right: 0.75rem;
}

.product-gallery-arrow--next::before {
  transform: rotate(45deg);
}

.product-gallery-arrow:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-50%) scale(1.04);
}

.product-gallery-arrow:disabled {
  cursor: default;
  opacity: 0.25;
  transform: translateY(-50%);
}

.slide-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slide-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(12, 36, 74, 0.25);
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.slide-dot.is-active {
  width: 1.5rem;
  background: var(--brand-color-1);
}

.product-detail-info h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 800;
}

.product-specs {
  margin: 0 0 1.5rem;
}

.product-specs > div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  margin-bottom: 0.55rem;
}

.product-specs dt {
  font-weight: 800;
}

.product-specs dd {
  margin: 0;
}

.product-detail-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 0.75rem;
}

.product-detail-actions .catalog-product-action {
  width: 100%;
  max-width: none;
}

.product-technical-copy {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-block: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(12, 36, 74, 0.45);
  border-bottom: 1px solid rgba(12, 36, 74, 0.45);
}

.product-technical-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.product-technical-copy p {
  margin: 0;
  line-height: 1.75;
}

.product-used-projects {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.product-used-projects > h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
  text-align: center;
}

.product-used-projects .project-track {
  margin-inline: 0;
  padding: 1rem 1.5rem 3.5rem;
  scroll-padding-inline: 1.5rem;
}

.product-used-projects .project-card {
  flex-basis: clamp(16.5rem, 28vw, 20rem);
}

.product-used-projects .project-card.is-outside-container {
  opacity: 1;
}

.product-used-projects .carousel-button--prev {
  left: -1rem;
}

.product-used-projects .carousel-button--next {
  right: -1rem;
}

.product-projects-link {
  min-width: min(100%, 32rem);
  color: var(--brand-color-2);
  background: var(--white);
}

.related-products {
  max-width: 72rem;
  margin-inline: auto;
  padding-top: clamp(3rem, 6vw, 5rem);
}

.related-products > h2 {
  margin-bottom: 2rem;
  color: var(--brand-color-1);
  text-align: center;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.related-products .catalog-product-content {
  min-height: 14rem;
  text-align: left;
}

.related-products .catalog-product-content h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.product-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 3rem;
  color: var(--white);
  text-decoration: none;
}

.product-back-link span {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 1px solid var(--brand-color-1);
  border-radius: 50%;
  color: var(--brand-color-1);
}

.product-back-link span::before {
  width: 0.65rem;
  height: 0.65rem;
  border-bottom: 2px solid currentcolor;
  border-left: 2px solid currentcolor;
  content: "";
  transform: translateX(0.15rem) rotate(45deg);
}

.project-photo-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.project-photo-button:focus-visible {
  outline: 3px solid var(--brand-color-1);
  outline-offset: -3px;
}

body.lightbox-open {
  overflow: hidden;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 4rem 1rem 1rem;
  border: 0;
  background: transparent;
}

.project-lightbox[open] {
  display: grid;
  place-items: center;
}

.project-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
}

.project-lightbox figure {
  display: flex;
  flex-direction: column;
  width: min(100%, 70rem, calc(65dvh * var(--project-image-ratio, 1.777778)));
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0.35rem;
  background: var(--white);
}

.project-lightbox figcaption {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  color: #4b505b;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  font-weight: 400;
  text-align: left;
  line-height: 1.65;
}

.project-lightbox figcaption h2,
.project-lightbox figcaption h3 {
  margin: 0 0 1rem;
  color: var(--brand-color-2);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 800;
}

.project-lightbox figcaption p {
  margin: 0 0 0.5rem;
}

.project-lightbox figcaption > :last-child {
  margin-bottom: 0;
}

.project-lightbox figure > img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.project-lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: #0c244a;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.project-lightbox-close::before,
.project-lightbox-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.project-lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.project-lightbox-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  background: rgba(12, 36, 74, 0.85);
  cursor: pointer;
  transform: translateY(-50%);
}

.project-lightbox-arrow[hidden] {
  display: none;
}

.project-lightbox-arrow--prev {
  left: clamp(0.5rem, 2vw, 2rem);
}

.project-lightbox-arrow--next {
  right: clamp(0.5rem, 2vw, 2rem);
}

.project-lightbox-arrow::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateX(-0.15rem) rotate(45deg);
}

.project-lightbox-arrow--prev::before {
  transform: translateX(0.15rem) rotate(-135deg);
}

.project-lightbox-arrow:hover {
  background: var(--brand-color-2);
}

.project-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.catalog-project-card {
  overflow: hidden;
  border: 1px solid var(--brand-color-1);
  color: var(--brand-color-2);
  background: var(--white);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.catalog-project-card:hover {
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  transform: translateY(-5px);
}

.catalog-project-card[hidden] {
  display: none;
}

.catalog-project-card > img,
.project-photo-button > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.catalog-project-content {
  min-height: 13rem;
  padding: 1.75rem;
}

.catalog-project-content h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
}

.catalog-project-content p {
  margin-bottom: 0.65rem;
}

.catalog-project-content p:last-child {
  margin-bottom: 0;
}

.supply-flow h2 {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  text-align: center;
}

.supply-flow-grid {
  display: grid;
  max-width: 66rem;
  grid-template-columns: minmax(0, 1fr) 3rem minmax(0, 1fr) 3rem minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin-inline: auto;
}

.supply-flow-card {
  display: flex;
  min-height: 21rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--white);
  box-shadow: 0 22px 55px rgba(12, 36, 74, 0.16);
  text-align: center;
}

.supply-flow-card h3 {
  margin-bottom: 2rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
}

.supply-flow-card p {
  margin: 0;
}

.supply-flow-arrow {
  width: 3rem;
  height: auto;
}

.certifications {
  background-image: linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.58)), url("../img/bg-seis.jpg");
  background-position: center;
  background-size: cover;
}

.certifications h2 {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  color: var(--brand-color-1);
  text-align: center;
}

.certification-panel {
  display: grid;
  max-width: 42rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 1.5rem;
  background: var(--white);
}

.certification-panel img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.partners-heading {
  max-width: 60rem;
}

.logistics-hub {
  position: relative;
  isolation: isolate;
  min-height: 30rem;
  color: var(--white);
  background: url("../img/bg-oito.jpg") center / cover no-repeat;
}

.logistics-hub::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 36, 74, 0.8) 0%, rgba(12, 36, 74, 0.42) 58%, rgba(12, 36, 74, 0.15) 100%);
  content: "";
}

.logistics-hub-content {
  display: flex;
  min-height: 30rem;
  justify-content: center;
  flex-direction: column;
}

.logistics-hub h2 {
  max-width: 38rem;
  margin-bottom: 1.5rem;
  color: var(--brand-color-1);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
}

.logistics-hub p {
  max-width: 31rem;
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.75;
}

.about {
  position: relative;
  isolation: isolate;
  background-image: linear-gradient(rgba(16, 16, 16, 0.28), rgba(16, 16, 16, 0.25)), url("../img/bg-um.webp");
  background-position: center;
  background-size: cover;
}

.about::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
  content: "";
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr;
  align-items: center;
  gap: clamp(2.25rem, 6vw, 6rem);
}

.about h2,
.purpose-item h3,
.feature-card h3,
.coverage h2 {
  color: var(--brand-color-1);
}

.about-copy p {
  max-width: 32rem;
}

.purpose-card {
  padding: clamp(1.75rem, 4vw, 3.5rem);
  background: rgba(12, 36, 74, 0.96);
  box-shadow: var(--shadow);
}

.purpose-item {
  position: relative;
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 1.15rem;
}

.purpose-item + .purpose-item {
  margin-top: 2rem;
}

.purpose-item > img {
  width: 2.1rem;
  margin-top: 0.25rem;
  margin-left: -3.85rem;
  height: auto;
  max-width: fit-content;
}

.purpose-item h3,
.feature-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.7rem;
  font-weight: 500;
}

.purpose-item p,
.feature-card p {
  margin-bottom: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.value-grid p {
  display: grid;
  min-height: 8rem;
  place-items: center;
  margin: 0;
  padding: 1.5rem;
  border: 1px solid var(--brand-color-1);
  background: rgba(0, 0, 0, 0.25);
  font-size: 1.1rem;
  text-align: center;
}

.metrics {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  background: var(--brand-color-2);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.metric {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-inline: 1rem;
  text-align: center;
}

.metric + .metric::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-left: 4px dotted var(--brand-color-1);
  content: "";
}

.metric strong {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  font-weight: 800;
  line-height: 1;
}

.metric span {
  margin-top: 0.85rem;
  color: var(--grayscale-2);
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.coverage-art img {
  width: min(100%, 36rem);
  height: auto;
  margin-inline: auto;
}

.coverage h2 {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 600;
}

.coverage-list {
  padding: 0;
  margin: 1.8rem 0 0;
  list-style: none;
}

.coverage-list li {
  position: relative;
  padding-left: 3.25rem;
}

.coverage-list li + li {
  margin-top: 2rem;
}

.coverage-list li::before {
  position: absolute;
  top: 0.4rem;
  left: 0;
  width: 0;
  height: 0;
  border-top: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
  border-left: 1.35rem solid var(--brand-color-1);
  content: "";
}

.coverage-list h3 {
  margin-bottom: 0.15rem;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  font-weight: 500;
}

.coverage-list p {
  max-width: 28rem;
  margin: 0;
}

.section-heading {
  max-width: 63rem;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.section-heading--wide {
  max-width: 67rem;
}

.section-heading p {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.solutions {
  padding-top: 0;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.solution-card {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius);
  background: var(--brand-color-3);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.solution-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.solution-card h3 {
  position: relative;
  margin: 0 0 2rem;
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
}

.solution-card ul {
  padding-left: 1.2rem;
}

.centered-action {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.ecosystem {
  position: relative;
  isolation: isolate;
  background-image: url("../img/bg-dois.png");
  background-position: center;
  background-size: cover;
}

.section-heading--light h2 {
  color: var(--brand-color-1);
}

.ecosystem-grid {
  display: flex;
  justify-content: space-evenly;
  gap: 3rem;
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 0rem 1fr;
  gap: 0rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--brand-color-2);
}

.feature-card > img {
  width: auto;
  margin-top: 0.3rem;
  margin-left: -3.1rem;
  height: 1.9rem;
  max-width: fit-content;
}

.projects {
  overflow-x: clip;
}

.project-carousel {
  position: relative;
}

.project-track {
  display: flex;
  gap: 2rem;
  margin-inline: calc((100vw - min(var(--container), calc(100vw - (var(--gutter) * 2)))) / -2);
  overflow-x: auto;
  padding: 1rem max(var(--gutter), calc((100vw - var(--container)) / 2)) 3.5rem;
  scroll-behavior: smooth;
  scroll-padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.project-track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.project-card {
  flex: 0 0 clamp(18.75rem, 28vw, 22rem);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0 30px rgba(12, 36, 74, 0.15);
  opacity: 1;
  scroll-snap-align: start;
  transition: opacity 200ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.project-card.is-outside-container {
  opacity: 0.45;
}

.project-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.project-card > div {
  min-height: 11rem;
  padding: 1.5rem;
  text-align: center;
}

.project-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.project-card p {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.carousel-button {
  position: absolute;
  z-index: 5;
  top: 43%;
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border: 1px solid var(--brand-color-2);
  border-radius: 50%;
  color: var(--brand-color-1);
  background: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.carousel-button:hover {
  color: var(--white);
  background: var(--brand-color-2);
  transform: translateY(-50%) scale(1.04);
}

.carousel-button:disabled {
  cursor: default;
  opacity: 0.35;
  transform: translateY(-50%);
}

.carousel-button img {
  width: auto;
  height: 1.5rem;
  object-fit: contain;
}

.carousel-button--prev img {
  transform: rotate(180deg);
}

.carousel-button--prev {
  left: -2rem;
}

.carousel-button--next {
  right: -2rem;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0;
}

.carousel-dots[hidden] {
  display: none;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(12, 36, 74, 0.25);
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.carousel-dot.is-active {
  width: 1.5rem;
  background: var(--brand-color-1);
}

.products {
  background: #c9d2db;
}

.product-intro {
  margin-bottom: 2.5rem;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--brand-color-1);
  background: var(--white);
  text-align: center;
}

.product-intro h2 {
  margin-bottom: 1rem;
}

.product-intro p {
  max-width: 65rem;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--brand-color-1);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.product-image {
  display: block;
  width: 100%;
  height: 14rem;
  object-fit: cover;
  object-position: center;
}

.product-card > div:last-child {
  min-height: 13rem;
  padding: 1.5rem;
  text-align: center;
}

.product-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.product-card p {
  margin: 0;
}

.partner-cloud {
  display: flex;
  max-width: 65rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin: 0 auto;
  filter: grayscale(1);
}

.partner-cloud img {
  width: clamp(7rem, 14vw, 10rem);
  height: 7rem;
  object-fit: contain;
}

.final-cta {
  position: relative;
  isolation: isolate;
  min-height: 31rem;
  color: var(--white);
  background: url("../img/bg-tres.webp") center 65% / cover no-repeat;
}

.final-cta-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(12, 36, 74, 0.68);
}

.final-cta-content {
  display: flex;
  min-height: 31rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-block: 4rem;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.8rem);
  font-weight: 700;
}

.final-cta p {
  max-width: 58rem;
  margin-bottom: 2rem;
  color: var(--brand-color-1);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
}

.final-cta .final-cta-eyebrow {
  margin-bottom: 1.5rem;
  color: var(--brand-color-1);
  font-size: clamp(1.25rem, 2.5vw, 1.9rem);
  font-weight: 800;
  text-transform: uppercase;
}

.final-cta--products {
  min-height: 38rem;
  background-image: url("../img/bg-quatro.jpg");
  background-position: center;
}

.final-cta--products .final-cta-content {
  min-height: 38rem;
}

.final-cta--products .final-cta-actions .button {
  width: min(100%, 31rem);
}

.final-cta--supply {
  background-image: url("../img/bg-cinco.jpg");
  background-position: center;
}

.final-cta--projects {
  background-position: center 65%;
}

.final-cta--brands {
  min-height: 38rem;
  background-image: url("../img/bg-sete.jpg");
  background-position: center;
}

.final-cta--brands .final-cta-content {
  min-height: 38rem;
}

.final-cta--brands h2 {
  max-width: 58rem;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.final-cta--brands .final-cta-actions .button {
  width: min(100%, 33rem);
}

.final-cta--coverage {
  background-image: url("../img/bg-nove.jpg");
  background-position: center;
}

.final-cta--coverage h2 {
  max-width: 70rem;
  font-size: clamp(2.25rem, 4vw, 3.4rem);
}

.final-cta--coverage .final-cta-actions .button {
  width: min(100%, 27rem);
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.final-cta-actions .button--outline {
  min-width: min(100%, 36rem);
}

.site-footer {
  padding-block: clamp(3.5rem, 7vw, 6rem) 2rem;
  color: var(--white);
  background: var(--brand-color-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr) minmax(0, 1fr) minmax(0, 1.65fr);
  gap: clamp(1.5rem, 2.5vw, 3rem);
}

.footer-brand img {
  width: 10rem;
  height: auto;
  margin-bottom: 1.5rem;
}

.footer-brand p,
.footer-nav a,
.footer-contact a {
  font-size: 0.9375rem;
}

.footer-brand a {
  font-weight: 600;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav h2,
.footer-contact h2,
.footer-form h2 {
  margin-bottom: 0.65rem;
  color: var(--brand-color-1);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0;
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav a + h2 {
  margin-top: 1.25rem;
}

.footer-form-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
  margin-block: 1.25rem;
}

.footer-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8125rem;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  min-width: 0;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.25rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 1rem;
}

.footer-form textarea {
  resize: vertical;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
}

.footer-form input:focus-visible,
.footer-form textarea:focus-visible {
  outline: 2px solid var(--brand-color-1);
  outline-offset: 2px;
}

.footer-form-message {
  grid-column: 1 / -1;
}

.footer-form-note {
  font-size: 0.75rem;
  line-height: 1.5;
}

.footer-contact .footer-social-title {
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
}

.footer-credit a {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--brand-color-1);
}

.footer-contact address {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-style: normal;
}

.footer-contact address a {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: start;
  gap: 0.75rem;
  text-decoration: none;
}

.footer-contact img {
  width: 2rem;
  height: 2rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.social-links a {
  transition: transform 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.social-links img {
  width: 2.25rem;
  height: 2.25rem;
}

.scroll-top-button {
  position: fixed;
  z-index: 90;
  right: clamp(1rem, 2vw, 2rem);
  bottom: clamp(1rem, 2vw, 2rem);
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  padding: 0;
  border: 2px solid rgba(6, 255, 67, 0.72);
  border-radius: 50%;
  color: var(--brand-color-1);
  background: rgba(12, 36, 74, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, background-color 180ms ease;
  visibility: hidden;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  background: var(--brand-color-2);
  box-shadow: 0 12px 34px rgba(6, 255, 67, 0.2);
}

.scroll-top-button span {
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid currentcolor;
  border-left: 2px solid currentcolor;
  transform: translateY(0.2rem) rotate(45deg);
}

@media (max-width: 1050px) {
  .project-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header {
    position: fixed;
    padding-block: 0.8rem;
    background: rgba(12, 36, 74, 0.95);
    backdrop-filter: blur(14px);
  }

  .language-bar {
    display: none;
  }

  .site-header--internal .desktop-brand {
    display: none;
  }

  .header-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.5rem;
  }

  .mobile-brand {
    position: relative;
    z-index: 3;
    display: block;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .mobile-brand img {
    width: 8.2rem;
    height: auto;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    justify-self: start;
    grid-column: 1;
    grid-row: 1;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    width: 1.25rem;
    height: 2px;
    background: var(--brand-color-1);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    min-height: 100svh;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 7rem var(--gutter) 3rem;
    border-radius: 0;
    background: rgba(12, 36, 74, 0.99);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open .site-header {
    height: 100svh;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    justify-content: center;
    padding: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
  }

  .primary-nav a + a::before {
    display: none;
  }

  .mobile-nav-extras {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    flex-shrink: 0;
  }

  .primary-nav .mobile-nav-cta {
    color: var(--brand-color-2);
    font-size: 0.9375rem;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-bottom: 0;
    white-space: normal;
    text-align: center;
  }

  .mobile-language-bar {
    position: relative;
    z-index: 3;
    display: flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    gap: 0.25rem;
  }

  .mobile-language-bar .language-link {
    flex: 0 0 2rem;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    font-size: 0.75rem;
    color: var(--white);
  }

  .mobile-language-bar .language-link.is-active {
    color: var(--brand-color-2);
  }

  .primary-nav .mobile-nav-privacy {
    border: 0;
    color: var(--white);
    font-size: 0.875rem;
    text-align: center;
  }

  .header-cta {
    display: none;
  }

  .hero-content {
    padding-top: 8rem;
  }

  .internal-hero {
    padding-top: 10rem;
  }

  .about-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 45rem;
  }

  .purpose-item > img,
  .feature-card > img {
    margin-left: -3rem;
  }

  .coverage-art {
    order: 2;
  }

  .coverage-copy {
    max-width: 43rem;
    margin-inline: auto;
  }

  .solution-grid,
  .capabilities-grid,
  .product-catalog-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .capability-card:last-child {
    grid-column: 1 / -1;
  }

  .why-retssa-layout {
    grid-template-columns: 1fr;
  }

  .why-retssa-copy {
    max-width: 44rem;
  }

  .supply-flow-grid {
    max-width: 32rem;
    grid-template-columns: 1fr;
  }

  .supply-flow-card {
    min-height: 16rem;
  }

  .supply-flow-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 1.25rem;
  }

  html {
    scroll-padding-top: 5rem;
  }

  body {
    font-size: 0.95rem;
  }

  .header-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .mobile-brand img {
    width: clamp(6rem, 28vw, 7rem);
  }

  .header-cta {
    display: none;
  }

  .about-grid {
    gap: 2.5rem;
  }

  .internal-hero {
    min-height: 38rem;
    padding-block: 8.5rem 4.5rem;
    background-position: 62% center;
  }

  .internal-hero.internal-hero--product-detail {
    min-height: 20rem;
    padding-block: 7rem 2.25rem;
  }

  .internal-hero::before {
    background: rgba(12, 36, 74, 0.72);
  }

  .internal-hero h1 br,
  .about-intro h2 br {
    display: none;
  }

  .difference-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-left: 0.75rem;
  }

  .difference-card {
    min-height: 7.5rem;
  }

  .purpose-card {
    margin-left: 0.75rem;
  }

  .purpose-item {
    grid-template-columns: 0.75rem 1fr;
    gap: 0.75rem;
  }

  .purpose-item > img {
    width: 1.8rem;
    margin-left: -2.35rem;
    max-width: fit-content;
  }

  .feature-card > img {
    width: 1.2rem;
    margin-left: -2rem;
  }

  .value-grid,
  .metrics-grid,
  .solution-grid,
  .capabilities-grid,
  .also-serve-grid,
  .ecosystem-grid,
  .product-catalog-grid,
  .product-grid,
  .related-products-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-summary {
    grid-template-columns: 1fr;
  }

  .product-detail-panel {
    padding: 1.25rem;
  }

  .product-specs > div {
    grid-template-columns: 5.5rem 1fr;
    gap: 0.75rem;
  }

  .related-products .catalog-product-content {
    min-height: auto;
  }

  .product-catalog {
    padding-top: 2.5rem;
  }

  .product-filter-tabs {
    display: none;
  }

  .product-filter-select-label {
    display: block;
    padding-bottom: 1.5rem;
    color: var(--brand-color-2);
    font-weight: 700;
  }

  .product-filter-select-label span {
    display: block;
    margin-bottom: 0.65rem;
  }

  .product-filter-select {
    width: 100%;
    min-height: 3.5rem;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border: 2px solid var(--brand-color-2);
    border-radius: 0.75rem;
    color: var(--brand-color-2);
    background: var(--white);
    font: inherit;
    font-weight: 700;
  }

  .product-catalog-panel {
    padding-block: 2.5rem;
    border-radius: 1rem 1rem 0 0;
  }

  .product-catalog-grid {
    gap: 1.5rem;
  }

  .project-catalog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .catalog-project-content {
    min-height: auto;
  }

  .catalog-product-card > img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .catalog-product-content {
    min-height: auto;
  }

  .supply-flow-card {
    min-height: auto;
  }

  .certification-panel {
    max-width: 17rem;
    grid-template-columns: 1fr;
  }

  .certification-panel img {
    width: 55%;
    justify-self: center;
  }

  .capability-card {
    min-height: auto;
  }

  .capability-card:last-child {
    grid-column: auto;
  }

  .also-serve-card > img {
    height: auto;
    aspect-ratio: 9 / 5;
  }

  .why-retssa-copy h2 br {
    display: none;
  }

  .why-retssa-features {
    padding-left: 0.75rem;
    gap: 1.25rem;
  }

  .why-retssa-card > img {
    top: calc(var(--why-card-padding) + 0.35rem);
  }

  .why-retssa-video {
    aspect-ratio: 16 / 9;
  }

  .final-cta-actions,
  .final-cta-actions .button {
    width: 100%;
  }

  .value-grid {
    gap: 1rem;
  }

  .value-grid p {
    min-height: 6rem;
  }

  .metrics-grid {
    gap: 0;
  }

  .metric {
    padding-block: 1.6rem;
  }

  .metric + .metric::before {
    top: 0;
    right: 20%;
    bottom: auto;
    left: 20%;
    border-top: 3px dotted var(--brand-color-1);
    border-left: 0;
  }

  .coverage-grid {
    gap: 3rem;
  }

  .coverage-list li {
    padding-left: 2.5rem;
  }

  .section-heading br {
    display: none;
  }

  .solution-card {
    min-height: auto;
  }

  .feature-card {
    grid-template-columns: 0.5rem 1fr;
    margin-left: 0.75rem;
  }

  .ecosystem-grid {
    flex-direction: column;
  }

  .project-track {
    --project-card-width: min(82vw, 20rem);
    gap: 1.1rem;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: calc((100vw - var(--project-card-width)) / 2);
    scroll-padding-inline: calc((100vw - var(--project-card-width)) / 2);
  }

  .project-card {
    flex-basis: var(--project-card-width);
    scroll-snap-align: center;
  }

  .carousel-button {
    top: auto;
    bottom: -1.5rem;
    width: 3.3rem;
    height: 3.3rem;
  }

  .carousel-button--prev {
    left: calc(50% - 4rem);
  }

  .carousel-button--next {
    right: calc(50% - 4rem);
  }

  .project-carousel .carousel-button {
    display: none;
  }

  .projects {
    padding-bottom: 7rem;
  }

  .product-grid {
    gap: 1.25rem;
  }

  .partner-cloud {
    gap: 1rem 1.5rem;
  }

  .footer-grid {
    gap: 2.5rem;
  }

  .footer-form-fields {
    grid-template-columns: 1fr;
  }

  .footer-form .button {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
