/* ============================================================
   RESET & BASE
   ============================================================ */
/* *,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
} */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #fff;
  color: #1a1a1a;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
button {
  cursor: pointer;
  font-family: inherit;
}
a {
  text-decoration: none;
  color: #ca1029;
}
img {
  display: block;
  max-width: 100%;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --peco-red: #d0112b;
  --peco-stone: #2c3340;
  --black: #1a1a1a;
  --peco-slate: #4d4d4d;
  --white: #fff;
  --ui-border: #cccccc;
  --card-shadow: 0px 4px 20px 0px rgba(44, 51, 64, 0.6);

  --h1-size: clamp(36px, 4.5vw, 60px);
  --h1-line: 1.25;
  --h2-size: clamp(24px, 3vw, 44px);
  --h2-line: 1.18;
  --h3-size: clamp(20px, 2vw, 32px);
  --body-size: clamp(15px, 1.2vw, 21px);
  --body-line: 1.48;
  --cta-size: clamp(13px, 1vw, 16px);
  --nav-size: 16px;
  --callout-size: clamp(40px, 4.5vw, 64px);
  --card-title-size: clamp(16px, 1.4vw, 24px);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
.fade-up.d1 {
  transition-delay: 0.1s;
}
.fade-up.d2 {
  transition-delay: 0.2s;
}
.fade-up.d3 {
  transition-delay: 0.3s;
}
.fade-up.d4 {
  transition-delay: 0.4s;
}
.fade-up.d5 {
  transition-delay: 0.5s;
}

/* ============================================================
   NAV — fixed, exact Figma design
   ============================================================ */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 98px;
  background: rgba(208, 17, 43, 0.96);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 2.9%, 56px);
  justify-content: space-between;
  transition:
    height 0.28s ease,
    background 0.3s,
    box-shadow 0.3s;
}
.top-nav.scrolled {
  height: 75px;
  background: var(--peco-red);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}
.nav-logo img {
  height: clamp(52px, 4vw, 61px);
  width: auto;
  transition: height 0.28s ease;
}
.top-nav.scrolled .nav-logo img {
  height: 38px;
}
.nav-logo:hover {
  transform: translateY(-2px) scale(1.015);
  opacity: 0.92;
}
/* Nav links — full desktop */
.nav-center-right {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  list-style: none;
}
.nav-links a {
  color: #fff;
  font-size: var(--nav-size);
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  opacity: 0.85;
  transition:
    opacity 0.2s,
    border-color 0.2s;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  display: inline-block;
}
.nav-links a:hover {
  opacity: 1;
  border-bottom-color: #fff;
}
.language-menu {
  position: relative;
  display: flex;
  align-items: center;
}
.language-toggle {
  color: #fff;
  font-size: var(--nav-size);
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  opacity: 0.72;
  transition:
    opacity 0.2s,
    border-color 0.2s;
  padding: 0 0 4px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.language-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}
.language-toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(1px);
}
.language-menu:hover .language-toggle,
.language-menu:focus-within .language-toggle {
  opacity: 1;
  border-bottom-color: #fff;
}
.language-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 178px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
}
.language-menu:hover .language-dropdown,
.language-menu:focus-within .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-dropdown a {
  width: auto;
  padding: 9px 11px;
  border: 1px solid transparent;
  color: #fff;
  opacity: 0.9;
  font-size: 14px;
  letter-spacing: 1.1px;
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    border-color 0.2s ease,
    opacity 0.2s ease;
}
.language-dropdown a:hover {
  background: transparent;
  border-color: var(--peco-red);
  opacity: 1;
}
.diamond-hover {
  --diamond-fill: #d0112b;
  --diamond-hover-color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.diamond-hover__content,
.diamond-hover__label {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.diamond-hover__zone {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 420%;
  height: 420%;
  background: var(--diamond-fill);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  transition:
    opacity 0.06s ease 0.34s,
    transform 0.4s cubic-bezier(0.12, 0.84, 0.22, 1);
}
.diamond-hover:hover,
.diamond-hover:focus-visible {
  color: var(--diamond-hover-color);
}
.diamond-hover:hover .diamond-hover__zone,
.diamond-hover:focus-visible .diamond-hover__zone {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition:
    opacity 0.36s ease,
    transform 2s cubic-bezier(0.12, 0.84, 0.22, 1);
}
.diamond-hover--inverse {
  --diamond-fill: #fff;
  --diamond-hover-color: #d0112b;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
/* Contact Sales — outline, hovers to red fill */
.btn-nav-outline {
  padding: 6px 20px;
  border: 1.5px solid var(--ui-border);
  border-radius: 50px;
  color: #fff;
  font-size: var(--nav-size);
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  background: transparent;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-nav-outline:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.16);
}
.btn-nav-outline.diamond-hover {
  transition:
    border-color 0.25s ease,
    color 0.25s ease;
}
.btn-nav-outline.diamond-hover:hover,
.btn-nav-outline.diamond-hover:focus-visible {
  background: transparent;
  border-color: #fff;
  color: #fff;
  transform: none;
  box-shadow: none;
}
.btn-nav-outline.diamond-hover--inverse:hover,
.btn-nav-outline.diamond-hover--inverse:focus-visible {
  border-color: #fff;
  color: var(--peco-red);
}
/* REDLINK — red fill, hovers to white bg + red text */
.btn-nav-red {
  padding: 6px 20px;
  background: #fff;
  border: 1.5px solid #fff;
  border-radius: 50px;
  color: var(--peco-red);
  font-size: var(--nav-size);
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-nav-red.diamond-hover {
  --diamond-fill: var(--peco-red);
  --diamond-hover-color: #fff;
}
.btn-nav-red:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}
.btn-nav-red.diamond-hover:hover,
.btn-nav-red.diamond-hover:focus-visible {
  background: transparent;
  border-color: #fff;
  color: #fff;
  transform: none;
  box-shadow: none;
}
/* Right group: nav links + buttons flush together */
.nav-right-group {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 98px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 999;
  backdrop-filter: blur(4px);
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.top-nav.scrolled + .mobile-menu {
  top: 75px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--peco-red);
}
.mobile-menu .mobile-btns {
  display: flex;
  gap: 12px;
  padding-top: 20px;
  flex-wrap: wrap;
}
.mobile-language-menu {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-language-menu summary {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  list-style: none;
}
.mobile-language-menu summary::-webkit-details-marker {
  display: none;
}
.mobile-language-menu summary::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: auto;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform 0.2s ease;
}
.mobile-language-menu[open] summary::after {
  transform: rotate(180deg);
}
.mobile-language-options {
  display: grid;
  gap: 0;
  padding: 0 0 8px 34px;
}
.mobile-language-options a {
  border-bottom: 0;
  padding: 10px 0;
  font-size: 14px;
  opacity: 0.86;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: clamp(760px, 94vh, 1080px);
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  left: -4vw;
  right: -4vw;
  bottom: -370px;
  height: 540px;
  background: #fff;
  transform: rotate(-4deg);
  transform-origin: left center;
  z-index: 1;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
/* Gradient fallback behind the Vimeo background embed */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 64% 42%,
      rgba(255, 255, 255, 0.12) 0%,
      transparent 18%
    ),
    linear-gradient(125deg, #000 0%, #111 46%, #000 100%);
  transform: scale(1.04);
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  opacity: 1;
  filter: none;
  pointer-events: none;
  border: 0;
}
.hero-angle-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.7) 29%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}
/* Gradient overlay — keep this even with real video */
.hero-gradient {
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  min-height: clamp(760px, 94vh, 1080px);
  padding: 130px clamp(20px, 11.5%, 220px) 360px;
  display: block;
}
.hero-text {
  max-width: min(44vw, 760px);
  position: relative;
  top: 35px;
}
.hero-text h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: var(--h1-line);
  color: #fff;
  letter-spacing: 0;
  margin-bottom: 16px;
  animation: fadeUp 0.8s 0.35s both;
}
/* Red line under headline — Figma detail */
.hero-redline {
  width: 255px;
  height: 4px;
  background: var(--peco-red);
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.45s both;
}
.hero-text p {
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  max-width: 664px;
  margin-bottom: 88px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
  animation: fadeUp 0.8s 0.5s both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.65s both;
}
.btn-hero-white {
  padding: 12px 24px;
  background: #fff;
  color: var(--peco-red);
  font-size: clamp(13px, 1.1vw, 24px);
  font-weight: 700;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  min-width: 200px;
  justify-content: center;
}
.btn-hero-white:hover {
  background: var(--peco-red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(208, 17, 43, 0.3);
}
.btn-hero-white.diamond-hover:hover,
.btn-hero-white.diamond-hover:focus-visible {
  background: #fff;
  color: #fff;
}
.btn-hero-outline {
  padding: 12px 24px;
  background: transparent;
  color: #fff;
  font-size: clamp(13px, 1.1vw, 24px);
  font-weight: 700;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 254, 254, 0.8);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  min-width: 180px;
  justify-content: center;
}
.btn-hero-outline:hover {
  background: #fff;
  color: var(--peco-red);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.2);
}
.btn-hero-outline.diamond-hover:hover,
.btn-hero-outline.diamond-hover:focus-visible {
  background: transparent;
  color: var(--peco-red);
  border-color: #fff;
}
.hero-pallet {
  position: absolute;
  right: clamp(16px, 4.8vw, 96px);
  bottom: clamp(8px, 1.2vw, 20px);
  width: min(42vw, 720px);
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  animation: fadeRight 1s 0.5s both;
}
.hero-pallet img {
  width: 100%;
  max-width: none;
  filter: drop-shadow(-14px 14px 36px rgba(0, 0, 0, 0.38));
  display: block;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRightCentered {
  from {
    opacity: 0;
    transform: translateX(calc(-50% + 50px));
  }
  to {
    opacity: 1;
    transform: translateX(-50%);
  }
}

/* ============================================================
   BUILT TO REDUCE
   ============================================================ */
.built-section {
  padding: clamp(8px, 1.4vw, 24px) clamp(20px, 11.5%, 220px)
    clamp(60px, 6vw, 120px);
  background: #fff;
  text-align: center;
}
.section-diamond {
  display: inline-block;
  margin-bottom: 20px;
}
.section-diamond img {
  width: min(146px, 34vw);
  height: auto;
  display: block;
}
.section-redline {
  width: 255px;
  height: 4px;
  background: var(--peco-red);
  margin: 16px auto 32px;
}
.built-section h2 {
  font-size: var(--h2-size);
  font-weight: 700;
  letter-spacing: 0;
  line-height: var(--h2-line);
  color: var(--black);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.built-subtitle {
  font-size: var(--body-size);
  color: var(--peco-slate);
  line-height: var(--body-line);
  max-width: 1340px;
  margin: 0 auto 60px;
}
/* 3 feature cards — exact Figma layout */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 53px);
  max-width: 1480px;
  margin: 0 auto;
  align-items: stretch;
}
.feature-card {
  --card-image-height: clamp(220px, 28vw, 511px);
  --card-image-hover-height: clamp(136px, 9vw, 170px);
  --card-label-height: clamp(84px, 7vw, 124px);
  --card-image-position: 50% 24%;
  --card-image-hover-position: var(--card-image-position);
  --card-hover-scale: 1.02;
  background: #fff;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  position: relative;
  width: 100%;
  min-width: 0;
  justify-self: stretch;
  height: calc(var(--card-image-height) + var(--card-label-height));
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.cards-grid .feature-card.fade-up {
  transform: translateY(34px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease,
    box-shadow 0.35s ease;
}
.cards-grid .feature-card.fade-up.visible {
  transform: none;
}
.cards-grid .feature-card.fade-up.visible:nth-child(1) {
  transition-delay: 0.04s;
}
.cards-grid .feature-card.fade-up.visible:nth-child(2) {
  transition-delay: 0.28s;
}
.cards-grid .feature-card.fade-up.visible:nth-child(3) {
  transition-delay: 0.52s;
}
.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(44, 51, 64, 0.35);
  z-index: 10;
}
.card-img-wrap {
  position: relative;
  height: var(--card-image-height);
  overflow: hidden;
  transition: height 0.45s ease;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--card-image-position);
  transform-origin: var(--card-image-transform-origin, center top);
  transform: var(--card-image-transform, none);
  transition:
    transform 0.5s ease,
    object-position 0.45s ease;
}
.feature-card:hover .card-img-wrap,
.feature-card:focus-within .card-img-wrap {
  height: var(--card-image-hover-height);
}
.feature-card:hover .card-img-wrap img,
.feature-card:focus-within .card-img-wrap img {
  transform: var(--card-hover-transform, scale(var(--card-hover-scale)));
  object-position: var(--card-image-hover-position);
}
.feature-card.card-consistent {
  --card-image-position: 39% 53%;
  --card-image-hover-position: 50% 58%;
  --card-image-transform-origin: 44% 58%;
  --card-image-transform: scale(1.025);
  --card-hover-transform: translateX(4%) scale(1.28);
}
.feature-card.card-reliable {
  --card-image-position: 58% 21%;
  --card-image-hover-position: 58% 18%;
}
.feature-card.card-responsive {
  --card-image-position: 58% 18%;
  --card-image-hover-position: 58% 15%;
}
/* Red label bar — exact Figma */
.card-label {
  background: var(--peco-red);
  height: var(--card-label-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition:
    background 0.3s ease,
    box-shadow 0.35s ease;
}
.feature-card:hover .card-label,
.feature-card:focus-within .card-label {
  background: #364152;
  box-shadow: 0 18px 36px rgba(44, 51, 64, 0.18);
}
.card-label span {
  font-size: clamp(19px, 1.3vw, 20px);
  font-weight: 700;
  letter-spacing: 0.9px;
  line-height: 1.14;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 0 18px;
}
/* Hover state — white bg with text + button (Figma "HERO-default" style) */
.card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: calc(var(--card-image-hover-height) + var(--card-label-height));
  background: #fff;
  padding: 18px clamp(24px, 2.2vw, 40px) 24px;
  transform: translateY(105%);
  transition:
    transform 0.4s ease,
    opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.4vw, 22px);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.feature-card:hover .card-body,
.feature-card:focus-within .card-body {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.card-body p {
  font-size: var(--body-size);
  color: var(--peco-slate);
  line-height: var(--body-line);
  text-align: center;
  max-width: 29ch;
  margin: 0 auto;
}
.btn-card-red {
  padding: 12px 28px;
  background: var(--peco-red);
  color: #fff;
  font-size: var(--cta-size);
  font-weight: 700;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1.5px solid var(--peco-red);
  transition: all 0.25s;
  margin-top: 0;
}
.btn-card-red.diamond-hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  line-height: 1;
  padding: 0 34px;
}
.btn-card-red:hover {
  background: #b80f24;
  transform: translateY(-2px);
}
.btn-card-red.diamond-hover:hover,
.btn-card-red.diamond-hover:focus-visible {
  background: var(--peco-red);
  color: var(--peco-red);
  border-color: var(--peco-red);
  transform: none;
}
@media (hover: hover) and (min-width: 1101px) {
  .card-body {
    padding: clamp(18px, 1.8vw, 28px) clamp(24px, 2.2vw, 40px);
  }
}

/* ============================================================
   PALLET POOLING / BY THE NUMBERS
   ============================================================ */
.pooling-numbers {
  background:
    linear-gradient(0deg, rgba(8, 4, 6, 0.46), rgba(8, 4, 6, 0.46)),
    url("new-homepage/stack-of-pallets-section.jpg") center center / cover
      no-repeat;
  padding: clamp(60px, 6vw, 140px) clamp(20px, 11.5%, 220px);
  position: relative;
  overflow: hidden;
}
/* What Is Pallet Pooling */
.pooling-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 54px);
  align-items: start;
  max-width: 1480px;
  margin: 0 auto 100px;
  background: #fff;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
  padding: clamp(28px, 3vw, 56px);
}
.pooling-img {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 1.1;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
  margin: 0 auto;
}
.pooling-graphic {
  background: url("new-homepage/infographic-transparent.png") center center /
    contain no-repeat;
}
.pooling-graphic .pooling-img {
  opacity: 0;
}
.pooling-text-wrap {
  padding-top: clamp(8px, 1.4vw, 24px);
}
.pooling-text-wrap h2 {
  font-size: var(--h2-size);
  font-weight: 700;
  color: var(--peco-red);
  letter-spacing: 0;
  line-height: var(--h2-line);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.pooling-text-wrap .pooling-desc {
  font-size: var(--body-size);
  color: #4d4d4d;
  line-height: var(--body-line);
  margin-bottom: 36px;
}
.pooling-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.pooling-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: clamp(16px, 1.5vw, 24px) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.pooling-features.visible .pooling-feature {
  opacity: 1;
  transform: none;
}
.pooling-features.visible .pooling-feature:nth-child(1) {
  transition-delay: 0.03s;
}
.pooling-features.visible .pooling-feature:nth-child(2) {
  transition-delay: 0.18s;
}
.pooling-features.visible .pooling-feature:nth-child(3) {
  transition-delay: 0.33s;
}
.pooling-feature:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}
.pool-num {
  min-width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--peco-red);
  color: #fff;
  font-size: var(--h2-size);
  font-weight: 700;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pool-feature-text h4 {
  font-size: var(--card-title-size);
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0;
  margin-bottom: 6px;
}
.pool-feature-text p {
  font-size: var(--body-size);
  color: var(--peco-slate);
  line-height: var(--body-line);
}

/* Stats / By The Numbers */
.stats-wrap {
  max-width: 1480px;
  margin: 0 auto;
  text-align: center;
}
.stats-wrap .section-diamond {
  margin-bottom: 18px;
}
.stats-title {
  font-size: var(--h2-size);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.stats-redline {
  width: 255px;
  height: 4px;
  background: var(--peco-red);
  margin: 0 auto 60px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 32px);
  margin-bottom: 48px;
}
.stats-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
  max-width: calc((1480px / 4) * 3 + 64px);
  margin: 0 auto;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-size: var(--callout-size);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0;
}
.stat-label {
  font-size: var(--body-size);
  font-weight: 700;
  color: #fff;
  line-height: var(--body-line);
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.serve-section {
  background: rgba(178, 180, 182, 0.1);
  padding: clamp(60px, 6vw, 100px) clamp(20px, 11.5%, 220px);
}
.serve-section h2 {
  font-size: var(--h2-size);
  font-weight: 700;
  letter-spacing: 0;
  line-height: var(--h2-line);
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.serve-subtitle {
  font-size: var(--body-size);
  color: var(--peco-slate);
  line-height: var(--body-line);
  max-width: 1217px;
  margin: 0 auto 56px;
  text-align: center;
}
/* 4-up top row, 3-up bottom row — exact Figma */
.serve-grid-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto 24px;
}
.serve-grid-bot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: calc(75% - 6px);
  max-width: 1104px;
  margin: 0 auto;
}
.serve-card {
  background: #fff;
  border: 2px solid var(--peco-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3vw, 49px) 16px clamp(16px, 2vw, 27px);
  gap: 16px;
  min-height: clamp(140px, 12vw, 186px);
  cursor: default;
}
.serve-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.serve-icon svg,
.serve-icon img {
  width: 44px;
  height: 44px;
}
.serve-label {
  font-size: var(--body-size);
  font-weight: 700;
  color: var(--black);
  text-align: center;
  line-height: var(--body-line);
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section {
  background: #fff;
  padding: clamp(60px, 6vw, 100px) clamp(20px, 6vw, 120px);
  overflow: hidden;
}
.map-inner {
  display: grid;
  grid-template-columns: minmax(360px, 545px) minmax(0, 1fr);
  gap: clamp(56px, 5vw, 96px);
  align-items: center;
  max-width: 1720px;
  margin: 0 auto;
}
.map-text-col {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  background: #fff;
}
.map-text-col h2 {
  font-size: var(--h2-size);
  font-weight: 700;
  color: var(--peco-red);
  letter-spacing: 0;
  line-height: var(--h2-line);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.map-text-col p {
  font-size: var(--body-size);
  color: var(--peco-slate);
  line-height: var(--body-line);
  margin-bottom: 28px;
  max-width: 525px;
}
.map-legend {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--body-size);
  color: var(--peco-slate);
}
.legend-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-dot.red {
  background: var(--peco-red);
}
.legend-dot.white {
  background: #fff;
  border: 2px solid var(--peco-red);
}
.btn-contact-red {
  padding: 12px 28px;
  background: var(--peco-red);
  color: #fff;
  font-size: var(--cta-size);
  font-weight: 700;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1.5px solid var(--peco-red);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 24px;
}
.btn-contact-red:hover {
  background: #fff;
  color: var(--peco-red);
  border-color: var(--peco-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(208, 17, 43, 0.16);
}
.btn-contact-red.diamond-hover:hover,
.btn-contact-red.diamond-hover:focus-visible {
  background: var(--peco-red);
  color: var(--peco-red);
  border-color: var(--peco-red);
  transform: none;
  box-shadow: none;
}
.map-pallet-img {
  width: clamp(420px, 36vw, 760px);
  max-width: none;
  filter: none;
  margin-top: 28px;
  margin-left: clamp(-84px, -4vw, -48px);
  align-self: flex-start;
  position: relative;
  z-index: 0;
}
.map-visual {
  min-width: 0;
  overflow: visible;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.map-visual img {
  width: min(61.2vw, 1088px);
  max-width: none;
  height: auto;
  transform: none;
  transform-origin: center center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: #000;
  padding: clamp(60px, 8vw, 129px) clamp(20px, 11.5%, 220px);
}
.faq-inner {
  display: grid;
  grid-template-columns: 352px 1fr;
  gap: clamp(24px, 3vw, 34px);
  max-width: 1480px;
  margin: 0 auto;
}
.faq-title-col {
  padding-top: 8px;
}
.faq-title-col h2 {
  font-family: "Helvetica-Bold", Helvetica, Arial, sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.18;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.faq-redline {
  width: 255px;
  height: 4px;
  background: var(--peco-red);
  margin-top: 8px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* First FAQ item — open state (Figma shows first item open) */
.faq-item {
  position: relative;
  transition: background 0.2s;
}
.faq-item-open .faq-q-wrap {
  background: rgba(36, 36, 36, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.faq-q-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(12px, 1.5vw, 24px) clamp(20px, 2.5vw, 48px)
    clamp(12px, 1.5vw, 24px) clamp(12px, 2vw, 48px);
  background: rgba(36, 36, 36, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  gap: 16px;
  transition: background 0.2s;
  position: relative;
}
.faq-q-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: transparent;
  transition: background 0.2s;
}
.faq-item-open .faq-q-wrap::before {
  background: var(--peco-red);
}
.faq-q-wrap:hover {
  background: rgba(36, 36, 36, 0.5);
}
.faq-question-text {
  font-size: var(--card-title-size);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.3;
  flex: 1;
}
.faq-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.faq-toggle span {
  position: absolute;
  background: var(--peco-red);
  transition: all 0.3s;
  border-radius: 2px;
}
.faq-toggle span:nth-child(1) {
  width: 18px;
  height: 2px;
}
.faq-toggle span:nth-child(2) {
  width: 2px;
  height: 18px;
}
.faq-item-open .faq-toggle span:nth-child(2) {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  background: rgba(36, 36, 36, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: none;
  padding: 0 clamp(20px, 2.5vw, 48px);
}
.faq-item-open .faq-answer {
  max-height: 300px;
  padding: clamp(12px, 1.5vw, 24px) clamp(20px, 2.5vw, 48px);
}
.faq-answer p {
  font-size: var(--body-size);
  color: #fff;
  line-height: var(--body-line);
}
/* Divider line inside first FAQ */
.faq-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 8px;
}

/* ============================================================
   LEGACY FOOTER
   ============================================================ */
.legacy-footer {
  position: relative;
  display: block;
  background: #111 url("new-homepage/desktop_footer_bg.jpg") center/cover
    no-repeat;
  color: #cfcfcf;
  padding: clamp(64px, 7vw, 118px) clamp(28px, 11vw, 240px) 34px;
  text-align: left;
  overflow: hidden;
}
.legacy-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  pointer-events: none;
}
.legacy-footer__inner,
.legacy-footer__legal {
  position: relative;
  z-index: 1;
}
.legacy-footer__inner {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 1fr);
  gap: clamp(56px, 9vw, 160px);
  align-items: start;
  max-width: 1480px;
  margin: 0 auto;
}
.legacy-footer__logo img {
  width: min(320px, 100%);
  height: auto;
  display: block;
  margin-bottom: 28px;
}
.legacy-footer__contact {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.45;
}
.legacy-footer__contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.legacy-footer a {
  color: #cfcfcf;
  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}
.legacy-footer a:hover {
  color: #fff;
}
.legacy-footer__linkedin img {
  width: 40px;
  height: 40px;
  display: block;
}
.legacy-footer__awards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}
.legacy-footer__awards img {
  display: block;
  max-height: 70px;
  width: auto;
}
.legacy-footer__awards img[alt*="Green"] {
  max-height: 62px;
}
.legacy-footer__awards img[alt*="CITT"] {
  max-height: 76px;
}
.legacy-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: clamp(44px, 6vw, 120px);
  padding-top: 44px;
}
.legacy-footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.legacy-footer__links li {
  margin: 0 0 13px;
}
.legacy-footer__links a {
  font-size: 14px;
  line-height: 1.25;
}
.legacy-footer__legal {
  max-width: 1480px;
  margin: clamp(56px, 6vw, 88px) auto 0;
  text-align: center;
  color: #d8d8d8;
  font-size: 13px;
  line-height: 1.45;
}
@media (max-width: 900px) {
  .legacy-footer {
    padding: 56px 28px 32px;
    text-align: center;
  }
  .legacy-footer__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .legacy-footer__logo img {
    margin: 0 auto 24px;
    width: min(300px, 86vw);
  }
  .legacy-footer__contact-row {
    justify-content: center;
  }
  .legacy-footer__awards {
    justify-content: center;
    gap: 18px;
  }
  .legacy-footer__links {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 22px 36px;
    padding-top: 8px;
    text-align: left;
    max-width: 420px;
    margin: 0 auto;
  }
  .legacy-footer__legal {
    margin-top: 42px;
    font-size: 12px;
  }
}
@media (max-width: 520px) {
  .legacy-footer {
    padding: 46px 22px 28px;
  }
  .legacy-footer__links {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
  }
  .legacy-footer__contact-row {
    flex-direction: column;
    gap: 14px;
  }
  .legacy-footer__awards img {
    max-height: 58px;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1400px) {
  .map-inner {
    grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
  }
  .map-pallet-img {
    display: none;
  }
  .map-visual img {
    width: min(47.6vw, 663px);
    transform: none;
  }
}
@media (max-width: 1200px) {
  .hero-content {
    padding-bottom: 320px;
  }
  .hero-text {
    max-width: min(52vw, 700px);
  }
  .hero-pallet {
    width: min(44vw, 560px);
    right: clamp(8px, 3vw, 40px);
    bottom: 12px;
  }
  footer {
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 34px clamp(24px, 6vw, 72px);
    text-align: center;
  }
  .footer-logo {
    margin: 0 auto;
  }
  .footer-logo img {
    height: 52px;
  }
  .footer-nav {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px clamp(24px, 4vw, 44px);
  }
  .map-section {
    padding-left: clamp(20px, 7vw, 84px);
    padding-right: clamp(20px, 7vw, 84px);
  }
  .map-inner {
    grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
  }
  .map-text-col p {
    max-width: 100%;
  }
  .map-visual img {
    width: min(45.9vw, 612px);
    max-width: none;
    transform: none;
  }
}
/* Compact nav — hide text links before they crowd the PECO mark */
@media (max-width: 1350px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 1350px) {
  .top-nav {
    justify-content: flex-start;
  }
  .nav-right-group {
    margin-left: auto;
    margin-right: 14px;
    gap: 0;
  }
  .nav-buttons {
    gap: 10px;
  }
  .hero-content {
    padding-bottom: 390px;
  }
  .hero-pallet {
    left: 50%;
    right: auto;
    bottom: 10px;
    margin: 0;
    width: min(54vw, 672px);
    justify-content: center;
    transform: translateX(-50%);
    animation: fadeRightCentered 1s 0.5s both;
  }
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
  }
  .cards-grid .feature-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 440px;
    justify-self: center;
  }
  .map-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .map-text-col {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
  }
  .map-text-col p {
    max-width: 760px;
  }
  .map-legend {
    align-items: flex-start;
  }
  .map-pallet-img {
    display: none;
  }
  .map-visual {
    justify-content: center;
  }
  .map-visual img {
    width: min(78.2vw, 782px);
    max-width: 100%;
  }
}
@media (min-width: 1201px) and (max-width: 1350px) {
  .hero-content {
    padding-bottom: 320px;
  }
  .hero-pallet {
    left: auto;
    right: clamp(8px, 3vw, 40px);
    bottom: 12px;
    width: min(44vw, 560px);
    justify-content: flex-end;
    transform: none;
    animation: fadeRight 1s 0.5s both;
  }
}
@media (min-width: 1101px) and (max-width: 1350px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1480px;
  }
  .cards-grid .feature-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
}
@media (max-width: 1000px) {
  .pooling-inner {
    grid-template-columns: 1fr;
    padding: 28px 24px 32px;
  }
  .pooling-text-wrap {
    padding-top: 0;
  }
}
/* Mobile only — hide entire right group, show hamburger only */
@media (max-width: 767px) {
  .top-nav {
    height: 86px;
    padding: 0 28px;
  }
  .top-nav.scrolled {
    height: 64px;
  }
  .top-nav + .mobile-menu {
    top: 86px;
  }
  .top-nav.scrolled + .mobile-menu {
    top: 64px;
  }
  .nav-right-group {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-logo img {
    height: 56px;
  }
  .top-nav.scrolled .nav-logo img {
    height: 40px;
  }
  .hero {
    min-height: 820px;
    align-items: flex-start;
  }
  .hero::after {
    left: -8vw;
    right: -8vw;
    bottom: -290px;
    height: 470px;
    transform: rotate(-6deg);
  }
  .hero-angle-panel {
    inset: 0;
    width: 100%;
    opacity: 1;
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.68) 62%,
      rgba(0, 0, 0, 0.54) 100%
    );
  }
  .hero-content {
    min-height: 820px;
    text-align: left;
    padding: 112px 32px 400px;
  }
  .hero-text {
    max-width: none;
  }
  .hero-redline {
    margin: 0 0 32px;
  }
  .hero-text p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .hero-btns {
    justify-content: flex-start;
  }
  .hero-pallet {
    left: 0;
    right: 0;
    bottom: 38px;
    margin: 0 auto;
    width: min(96vw, 508px);
    justify-content: center;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
    gap: 72px;
  }
  .feature-card {
    --card-image-height: clamp(280px, 60vw, 340px);
    --card-image-hover-height: clamp(118px, 24vw, 150px);
    --card-label-height: 92px;
  }
  .card-body {
    padding: 20px 26px 28px;
    gap: 16px;
  }
  .card-body p {
    max-width: 29ch;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .serve-grid-top {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .serve-grid-bot {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 100%;
  }
  .map-inner {
    grid-template-columns: 1fr;
  }
  .map-visual {
    justify-content: center;
  }
  .map-visual img {
    width: 85%;
    max-width: 578px;
    transform: none;
  }
  .map-pallet-img {
    display: none;
  }
  .faq-inner {
    grid-template-columns: 1fr;
  }
  .faq-redline {
    margin-bottom: 32px;
  }
  footer {
    min-height: auto;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 28px 24px 30px;
    text-align: center;
  }
  .footer-logo {
    margin: 0 auto;
  }
  .footer-logo img {
    height: 52px;
  }
  .footer-nav {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 14px 24px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    text-align: center;
  }
  .btn-footer-outline {
    margin-top: 6px;
  }
}
@media (max-width: 1100px), (hover: none) {
  .feature-card,
  .feature-card:hover,
  .feature-card:focus-within {
    height: auto;
    transform: none;
  }
  .feature-card:hover,
  .feature-card:focus-within {
    box-shadow: var(--card-shadow);
  }
  .card-img-wrap,
  .feature-card:hover .card-img-wrap,
  .feature-card:focus-within .card-img-wrap {
    height: var(--card-image-height);
  }
  .feature-card:hover .card-img-wrap img,
  .feature-card:focus-within .card-img-wrap img {
    transform: var(--card-image-transform, none);
    object-position: var(--card-image-position);
  }
  .card-label,
  .feature-card:hover .card-label,
  .feature-card:focus-within .card-label {
    background: #364152;
    box-shadow: none;
  }
  .card-body,
  .feature-card:hover .card-body,
  .feature-card:focus-within .card-body {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    min-height: 0;
    padding-top: 34px;
    padding-bottom: 34px;
  }
}
@media (max-width: 600px) {
  .hero-content {
    padding-bottom: 370px;
  }
  .hero-text h1 {
    font-size: clamp(34px, 9.2vw, 46px);
    line-height: 1.16;
  }
  .hero-text p {
    font-size: clamp(17px, 4.9vw, 21px);
  }
  .hero-pallet {
    left: 0;
    right: 0;
    bottom: 26px;
    margin: 0 auto;
    width: min(96vw, 455px);
  }
  .feature-card {
    --card-image-height: 320px;
    --card-image-hover-height: 124px;
    --card-label-height: 90px;
  }
  .card-label span {
    padding: 0 16px;
  }
  .card-body {
    padding: 28px 24px 30px;
    gap: 14px;
  }
  .card-body p {
    max-width: 27ch;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .serve-grid-top,
  .serve-grid-bot {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 100%;
  }
  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    justify-items: center;
    row-gap: 14px;
    column-gap: 24px;
  }
  .btn-footer-outline {
    grid-column: 1 / -1;
    margin-top: 8px;
    min-width: 180px;
  }
  .footer-nav a,
  .btn-footer-outline {
    font-size: 13px;
    letter-spacing: 1px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .diamond-hover__zone {
    transition-duration: 1ms;
  }
}
@media (hover: none), (max-width: 1100px) {
  .diamond-hover__zone {
    display: none;
  }
  .diamond-hover:hover,
  .diamond-hover:focus-visible {
    transform: none;
    box-shadow: none;
  }
  .diamond-hover:hover .diamond-hover__zone,
  .diamond-hover:focus-visible .diamond-hover__zone {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  .btn-hero-white.diamond-hover:hover,
  .btn-hero-white.diamond-hover:focus-visible {
    background: #fff;
    color: var(--peco-red);
    border-color: #fff;
  }
  .btn-hero-outline.diamond-hover:hover,
  .btn-hero-outline.diamond-hover:focus-visible,
  .btn-nav-outline.diamond-hover:hover,
  .btn-nav-outline.diamond-hover:focus-visible,
  .btn-footer-outline.diamond-hover:hover,
  .btn-footer-outline.diamond-hover:focus-visible {
    background: transparent;
    color: #fff;
    border-color: #fff;
  }
  .btn-nav-red.diamond-hover:hover,
  .btn-nav-red.diamond-hover:focus-visible {
    background: #fff;
    color: var(--peco-red);
    border-color: #fff;
  }
  .btn-card-red.diamond-hover:hover,
  .btn-card-red.diamond-hover:focus-visible,
  .btn-contact-red.diamond-hover:hover,
  .btn-contact-red.diamond-hover:focus-visible {
    background: var(--peco-red);
    color: #fff;
    border-color: var(--peco-red);
  }
}
#bottom_cta {
  /* display: none; */
}
#sitemap_wrapper {
  font-family: "Open Sans", sans-serif !important;
}
#awards_images {
  display: flex;
  gap: 10px;
}
@media (min-width: 1050px) and (max-width: 1200.98px) {
  .hero-content {
    padding-bottom: 500px;
  }
}
@media (max-width: 767.98px) {
  #awards_images {
    justify-content: center;
  }
  #sitemap_logo {
    margin-left: auto;
    margin-right: auto;
  }

  .mobile_hide {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .faq-inner {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1401px) and (max-width: 1790px) {
  .map-section .map-visual img {
    width: auto;
    max-width: 100%;
  }
}

.top-nav .btn-nav-red {
  letter-spacing: 0px;
  font-family: "Open Sans", sans-serif;
}

@media (max-width: 767.98px) {
  .hero-pallet {
    bottom: 70px;
    margin: 0 auto;
    width: min(89vw, 455px);
  }

  .hero-pallet img {
    filter: drop-shadow(-9px 9px 30px rgba(0, 0, 0, 0.38));
  }
}

.top-nav .nav-links li {
  position: relative;
}

.top-nav .nav-links li ul {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 178px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
}

.top-nav .nav-links li ul li a {
  width: auto;
  padding: 9px 11px;
  border: 1px solid transparent;
  color: #fff;
  opacity: 0.9;
  font-size: 14px;
  letter-spacing: 1.1px;
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    border-color 0.2s ease,
    opacity 0.2s ease;
}

@media (min-width: 1351px) {
  .top-nav .nav-links li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 1350px) {
  .mobile-menu a {
    display: inline-block;
  }

  .mobile-menu ul li {
    position: relative;
  }

  .mobile-menu ul li .trigger_dropdown {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgb(255 255 255);
    transition: transform 0.2s ease;
    position: absolute;
    right: 0;
    top: 19px;
  }

  .mobile-menu ul li ul {
    display: none;
    padding: 0 0 8px 34px;
  }

  .mobile-menu ul li ul li a {
    border-bottom: 0;
    padding: 10px 0;
    font-size: 14px;
    opacity: 0.86;
    align-items: center;
  }

  .mobile-menu ul li .trigger_dropdown.active {
    transform: rotate(180deg);
  }

  .mobile-menu ul li ul.active {
    display: block;
  }
}

@media (max-width: 1682px) {
  .hide_br {
    display: none;
  }
}

.top-nav .nav-links li ul li a:hover {
  background: transparent;
  border-color: var(--peco-red);
  opacity: 1;
}
@media (max-width: 1350px) {
  .mobile-menu ul li .trigger_dropdown::before {
    content: "";
    width: 100vw;
    height: 46px;
    position: absolute;
    top: -25px;
    right: -30px;
  }
  .mobile-menu ul li .trigger_dropdown.active::before {
    left: -30px;
    right: unset;
  }
  .mobile-menu a {
    border-bottom: none;
    z-index: 2;
    position: relative;
  }
  .mobile-menu a::before {
    content: "";
    width: calc(100vw - 46px);
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

#pallet_vert img {
  margin-left: auto;
  margin-right: auto;
}

.top-nav .nav-links li ul,
.language-dropdown {
  top: calc(100% + 0px);
}

#pallet_specs ul li img,
#casestudies ul li img,
#brochures ul li img,
.detail_column.thirty img,
.pecocanadaimg .detail_container img,
.landing_container h1 img,
#service_net_image {
  display: inline;
}

.top-nav {
  gap: 20px;
}
#no_banner {
  padding-top: 100px;
}
@media screen and (max-width: 960px) {
  #no_banner {
    margin-top: 20%;
  }
}
