.brand-image {
  width: 224px;
}

.brand-image img {
  width: 100%;
  height: auto;
}

.home-header:not(.scrolled) {
  color: var(--white);
}

.home-header:not(.scrolled) .brand-image {
  width: 258px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.home-header:not(.scrolled) .menu-toggle {
  border-color: rgba(255, 255, 255, 0.35);
}

.home-header:not(.scrolled) .menu-toggle > span:not(.sr-only) {
  background: var(--white);
}

.video-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

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

.video-overlay {
  background:
    linear-gradient(90deg, rgba(8, 16, 17, 0.88) 0%, rgba(8, 16, 17, 0.52) 52%, rgba(8, 16, 17, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 16, 17, 0.55), transparent 45%);
}

.hero-color-line {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 5px;
}

.hero-color-line i:nth-child(1) { background: var(--cyan); }
.hero-color-line i:nth-child(2) { background: var(--magenta); }
.hero-color-line i:nth-child(3) { background: var(--yellow); }
.hero-color-line i:nth-child(4) { background: var(--ink); }

.video-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
}

.hero-kicker {
  margin-bottom: 28px;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.video-hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(4.2rem, 8.2vw, 8.5rem);
}

.video-hero h1 em {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.home-header .header-inner {
  width: min(calc(100% - 32px), 1450px);
  min-height: 92px;
  margin-top: 12px;
  padding: 0 12px 0 14px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: min-height 200ms ease, margin 200ms ease, background 200ms ease, border-color 200ms ease;
}

.home-header:not(.scrolled) .header-inner {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(8, 16, 17, 0.22);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
}

.home-header.scrolled .header-inner {
  min-height: 72px;
  margin-top: 8px;
  border-color: var(--line);
  background: rgba(244, 241, 233, 0.96);
  box-shadow: 0 12px 38px rgba(16, 27, 28, 0.1);
}

.home-header.scrolled {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-header .primary-nav {
  gap: clamp(10px, 1vw, 18px);
}

.home-header .primary-nav > a,
.nav-dropdown summary {
  white-space: nowrap;
}

.home-header .primary-nav > a {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

.home-header .primary-nav .nav-home {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.about-section .eyebrow,
.purpose-card .eyebrow,
.sustainability-heading .eyebrow,
.products-showcase .eyebrow,
.brands-section .eyebrow,
.certifications-section .eyebrow,
.contact-section .eyebrow {
  margin-bottom: 28px;
  gap: 12px;
  font-size: 1rem;
  letter-spacing: 0.15em;
}

.about-section .eyebrow span,
.purpose-card .eyebrow span,
.sustainability-heading .eyebrow span,
.products-showcase .eyebrow span,
.brands-section .eyebrow span,
.certifications-section .eyebrow span,
.contact-section .eyebrow span {
  width: 40px;
  height: 4px;
}

.home-header.scrolled .primary-nav .nav-home {
  border-color: var(--line);
  background: var(--white);
}

.nav-home svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.nav-home span {
  display: none;
}

.primary-nav .nav-home::after {
  display: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary span {
  color: var(--orange);
  font-size: 0.9rem;
}

.nav-dropdown > div {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  width: 215px;
  padding: 10px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-dropdown > div a {
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 0.72rem;
}

.nav-dropdown > div a:hover {
  background: var(--white);
}

.home-header .header-cta {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 44px;
  min-height: 44px;
  padding-left: 16px;
  gap: 12px;
  color: var(--ink);
  border: 1px solid var(--lime);
  border-radius: 8px;
  background: var(--lime);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.home-header .header-cta i {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  min-height: 42px;
  place-items: center;
  border-left: 1px solid rgba(16, 27, 28, 0.18);
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1;
}

.home-header .header-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.video-hero-content > p:not(.hero-kicker) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  margin-top: 38px;
  gap: 16px;
}

.hero-actions .hero-quote-button {
  min-height: 54px;
  color: var(--white);
  border-color: var(--yellow);
  border-radius: 999px;
  background: rgba(8, 16, 17, 0.24);
  box-shadow: 0 12px 28px rgba(8, 16, 17, 0.16);
}

.hero-actions .hero-quote-button span {
  color: var(--yellow);
  transition: color 180ms ease;
}

.hero-actions .hero-quote-button:hover,
.hero-actions .hero-quote-button:focus-visible {
  color: var(--ink);
  border-color: var(--yellow);
  background: var(--yellow);
}

.hero-actions .hero-quote-button:hover span,
.hero-actions .hero-quote-button:focus-visible span {
  color: var(--ink);
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.video-link span {
  color: var(--lime);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 35px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue span {
  width: 1px;
  height: 48px;
  background: var(--white);
}

.original-about {
  background:
    radial-gradient(circle at top left, rgba(0, 181, 226, 0.08), transparent 20%),
    radial-gradient(circle at bottom right, rgba(228, 0, 124, 0.06), transparent 22%),
    linear-gradient(180deg, #f4f4f4 0%, #e8e8e8 100%);
}

.about-title-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 100px;
}

.about-title-grid h2,
.sustainability-heading h2,
.products-showcase .heading-row h2,
.brands-section .heading-row h2,
.certifications-section .heading-row h2,
.contact-section h2 {
  font-size: clamp(3rem, 5.4vw, 5.4rem);
}

.about-title-grid h2 em {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.since-year {
  display: inline-flex;
  align-items: center;
  gap: 0.14em;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.calendar-year {
  display: inline-flex;
  align-items: center;
  gap: 0.08em;
  margin-left: 0.02em;
  transform: translateY(0.03em);
}

.calendar-year__digit {
  position: relative;
  display: inline-block;
  width: 0.9em;
  height: 1.14em;
  overflow: hidden;
  color: var(--orange);
  border: 1px solid rgba(228, 0, 124, 0.2);
  border-radius: 0.18em;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 246, 252, 0.9) 100%);
  box-shadow:
    0 0.08em 0.24em rgba(17, 17, 17, 0.08),
    inset 0 -0.06em 0 rgba(228, 0, 124, 0.08);
}

.calendar-year__digit::after {
  content: "";
  position: absolute;
  left: 0.08em;
  right: 0.08em;
  top: 50%;
  height: 1px;
  background: rgba(228, 0, 124, 0.16);
  transform: translateY(-50%);
  pointer-events: none;
}

.calendar-year__track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(0);
  transition: transform 0.9s cubic-bezier(0.22, 0.88, 0.24, 1);
  will-change: transform;
}

.calendar-year__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1.14em;
  line-height: 1;
  font: inherit;
  color: inherit;
  transform: translateY(-0.09em);
}

.about-lead {
  margin-bottom: 8px;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.about-detail-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  margin: 90px 0 110px;
  gap: 72px;
}

.about-stats-grid {
  display: grid;
  gap: 24px;
}

.home-about-summary .about-detail-grid {
  margin-bottom: 0;
}

.about-number {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 315px;
  padding: 45px;
  color: var(--white);
  overflow: hidden;
  background-color: #202426;
  background:
    linear-gradient(135deg, rgba(17, 27, 28, 0.68) 0%, rgba(17, 17, 17, 0.54) 100%),
    url("../images/home/APP building.webp") center top / cover no-repeat;
}

.about-number::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0.32) 100%),
    linear-gradient(90deg, rgba(0, 181, 226, 0.08) 0%, rgba(228, 0, 124, 0.06) 55%, rgba(255, 210, 0, 0.08) 100%);
  content: "";
}

.about-number strong,
.about-number span {
  position: relative;
  z-index: 1;
}

.about-number strong {
  font-size: clamp(4rem, 7vw, 7rem);
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.about-number span {
  max-width: 230px;
  margin-top: 22px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-number-combined {
  min-height: 385px;
  padding: 22px;
  align-items: end;
}

.about-number-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 14px;
  width: 100%;
  margin-top: auto;
}

.about-number-stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  min-height: 156px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(8, 16, 17, 0.34);
  backdrop-filter: blur(8px);
}

.about-number-title {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-number-stat strong,
.about-number-stat span {
  position: relative;
  z-index: 1;
}

.about-number-stat strong {
  max-width: 100%;
  font-size: clamp(2.7rem, 4.2vw, 4.9rem);
  letter-spacing: -0.065em;
  line-height: 0.88;
  white-space: nowrap;
}

.about-number-stat span {
  max-width: 100%;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-number-stat--space strong {
  color: var(--cyan);
}

.about-number-stat--team strong {
  color: var(--yellow);
}

.about-body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.about-body p {
  color: var(--muted);
}

.about-body .text-link {
  margin-top: 16px;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  background: transparent;
}

.purpose-card {
  position: relative;
  min-height: 500px;
  padding: 65px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 32px;
  box-shadow: 0 24px 46px rgba(17, 17, 17, 0.1);
}

.purpose-card > span {
  position: absolute;
  top: 30px;
  right: 34px;
  color: rgba(16, 27, 28, 0.3);
  font-size: 0.7rem;
  font-weight: 850;
}

.purpose-card h3 {
  max-width: 500px;
  margin: 90px 0 30px;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.purpose-card p:last-child {
  max-width: 600px;
}

.mission {
  background: linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
}

.vision {
  color: var(--white);
  background: var(--ink);
}

.vision > span {
  color: rgba(255, 255, 255, 0.3);
}

.vision p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.values-section {
  margin-top: 42px;
}

.values-heading {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 80px;
  align-items: end;
  margin-top: 58px;
}

.values-heading h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.values-heading > p {
  max-width: 52ch;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 245, 245, 0.9) 100%);
  box-shadow: 0 24px 46px rgba(17, 17, 17, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 52px rgba(17, 17, 17, 0.12);
}

.value-card-icon {
  display: grid;
  place-items: center;
  height: 150px;
  padding: 28px 24px 16px;
}

.value-card-icon svg {
  width: 88px;
  height: 88px;
  overflow: visible;
  transform-origin: center;
}

.value-card-icon svg path,
.value-card-icon svg circle {
  fill: none;
  stroke: #111111;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card-band {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 0 26px;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.value-card-body {
  padding: 20px 26px 28px;
}

.value-card-body ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-card-body li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.value-card-body li::before {
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  opacity: 0.42;
}

.value-card-integrity .value-card-band {
  background: linear-gradient(90deg, #00b5e2 0%, #0899c2 100%);
}

.value-card-quality .value-card-band {
  background: linear-gradient(90deg, #e4007c 0%, #c5006b 100%);
}

.value-card-customer .value-card-band {
  color: #101b1c;
  background: linear-gradient(90deg, #ffd200 0%, #f1c300 100%);
}

.value-card-innovation .value-card-band {
  background: linear-gradient(90deg, #111111 0%, #2b2b2b 100%);
}

.value-card-integrity .value-card-icon svg {
  animation: value-icon-integrity 5.8s ease-in-out infinite;
}

.value-card-quality .value-card-icon svg {
  animation: value-icon-quality 5.2s ease-in-out infinite;
}

.value-card-customer .value-card-icon svg {
  animation: value-icon-customer 5.4s ease-in-out infinite;
}

.value-card-innovation .value-card-icon svg {
  animation: value-icon-innovation 5.8s ease-in-out infinite;
}

.value-card-innovation .value-card-icon {
  padding-top: 32px;
}

@keyframes value-icon-integrity {
  0%, 100% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-3px) scale(1.02) rotate(-1.2deg); }
  70% { transform: translateY(0) scale(0.995) rotate(0.8deg); }
}

@keyframes value-icon-quality {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.03); }
}

@keyframes value-icon-customer {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px) scale(1.02); }
}

@keyframes value-icon-innovation {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.03) rotate(1.4deg); }
}

.value-card-integrity .icon-handshake {
  transform-origin: center;
  animation: value-handshake-sway 5.8s ease-in-out infinite;
}

.value-card-quality .icon-check {
  stroke-dasharray: 10;
  stroke-dashoffset: 10;
  animation: value-check-draw 5.2s ease-in-out infinite;
}

.value-card-customer .icon-headset {
  transform-origin: center;
  animation: value-headset-sway 5.6s ease-in-out infinite;
}

.value-card-customer .icon-headset-base {
  stroke-dasharray: 14;
  stroke-dashoffset: 14;
  animation: value-headset-base 5.6s ease-in-out infinite;
}

.value-card-innovation .icon-puzzle {
  transform-origin: center;
  animation: value-puzzle-shift 5.8s ease-in-out infinite;
}

@keyframes value-handshake-sway {
  0%, 100% { transform: rotate(0deg) scale(1); }
  45% { transform: rotate(2deg) scale(1.015); }
  70% { transform: rotate(-1.5deg) scale(1); }
}

@keyframes value-check-draw {
  0%, 16% { stroke-dashoffset: 10; }
  34%, 78% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 10; }
}

@keyframes value-headset-sway {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-2px) rotate(-1.4deg); }
}

@keyframes value-headset-base {
  0%, 18% { stroke-dashoffset: 14; }
  34%, 78% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 14; }
}

@keyframes value-puzzle-shift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1px) rotate(1.2deg) scale(1.015); }
}

.sustainable-impact {
  position: relative;
  overflow: hidden;
  padding: 42px 0;
  color: var(--white);
  background: #17382e;
  --sustain-lime: #c7f15a;
  --sustain-orange: #ff6738;
  --sustain-yellow: #f4d83b;
  --sustain-ink: #101b1c;
}

.sustainable-impact::before {
  position: absolute;
  top: -300px;
  right: -260px;
  width: 720px;
  height: 720px;
  border: 120px solid rgba(199, 241, 90, 0.08);
  border-radius: 50%;
  content: "";
}

.sustainability-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-bottom: 48px;
  gap: 24px;
}

.sustainability-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.sustainability-heading p:last-child {
  max-width: 540px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
}

.impact-layout {
  position: relative;
  z-index: 1;
  display: block;
}

.impact-visual {
  display: none;
}

.impact-visual span {
  position: relative;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.impact-visual b {
  position: relative;
  z-index: 2;
  color: var(--sustain-orange);
}

.impact-sun {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--sustain-yellow);
  box-shadow: 0 0 0 18px rgba(244, 216, 59, 0.24);
}

.impact-plant {
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 8px;
  height: 178px;
  background: var(--sustain-ink);
  transform: translateX(-50%);
}

.impact-plant i {
  position: absolute;
  width: 90px;
  height: 52px;
  border-radius: 100% 0 100% 0;
  background: #2c6c47;
}

.impact-plant i:nth-child(1) { top: 42px; right: 0; transform: rotate(15deg); transform-origin: right bottom; }
.impact-plant i:nth-child(2) { top: 108px; left: 0; border-radius: 0 100% 0 100%; transform: rotate(-15deg); transform-origin: left bottom; }
.impact-plant i:nth-child(3) { top: -14px; left: -46px; transform: rotate(45deg); }

.impact-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  height: 100%;
  gap: 10px;
}

.impact-content {
  display: grid;
  grid-template-columns: 1.82fr 0.68fr;
  align-items: stretch;
  gap: 24px;
}

.impact-metrics article {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 0;
  padding: 24px 24px;
  overflow: hidden;
  isolation: isolate;
  background-color: rgba(10, 36, 33, 0.78);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(6, 16, 17, 0.18);
  transform: translateY(22px) scale(0.985);
  opacity: 0;
  transition:
    transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 350ms ease,
    opacity 700ms ease;
}

.impact-metrics article::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 22, 24, 0.18) 0%, rgba(7, 22, 24, 0.72) 100%),
    linear-gradient(135deg, rgba(0, 198, 255, 0.16) 0%, rgba(7, 22, 24, 0.05) 45%, rgba(255, 0, 138, 0.16) 100%);
  content: "";
  z-index: 0;
}

.impact-metrics article::after {
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: -38%;
  width: 34%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 48%, transparent 100%);
  content: "";
  opacity: 0;
  transform: skewX(-18deg) translateX(0);
  z-index: 1;
  pointer-events: none;
}

.impact-metrics.reveal.visible article {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.impact-metrics.reveal.visible article:nth-child(1) { transition-delay: 0ms; }
.impact-metrics.reveal.visible article:nth-child(2) { transition-delay: 120ms; }
.impact-metrics.reveal.visible article:nth-child(3) { transition-delay: 240ms; }
.impact-metrics.reveal.visible article:nth-child(4) { transition-delay: 360ms; }

.impact-metrics.reveal.visible article::after {
  opacity: 1;
  animation: impact-card-sheen 1200ms ease forwards;
}

.impact-metrics.reveal.visible article:nth-child(1)::after { animation-delay: 2140ms; }
.impact-metrics.reveal.visible article:nth-child(2)::after { animation-delay: 2260ms; }
.impact-metrics.reveal.visible article:nth-child(3)::after { animation-delay: 2380ms; }
.impact-metrics.reveal.visible article:nth-child(4)::after { animation-delay: 2500ms; }

.impact-metrics article:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 26px 50px rgba(6, 16, 17, 0.24);
}

.impact-metrics article:nth-child(1) {
  background-image: url("../images/home/impact-biofuel.webp");
  background-position: center 58%;
}

.impact-metrics article:nth-child(2) {
  background-image: url("../images/home/impact-efficiency.webp");
  background-position: center 52%;
}

.impact-metrics article:nth-child(3) {
  background-image: url("../images/home/impact-emissions.jpg");
  background-position: center center;
}

.impact-metrics article:nth-child(4) {
  background-image: url("../images/home/impact-solar.webp");
  background-position: center 56%;
}

.impact-metrics strong {
  position: relative;
  z-index: 2;
  color: var(--lime);
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.impact-metrics span {
  position: relative;
  z-index: 2;
  max-width: 190px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.impact-card--efficiency .impact-progress {
  position: relative;
  z-index: 2;
  display: block;
  width: min(170px, 78%);
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.impact-card--efficiency .impact-progress b {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffd200 0%, #ff8a00 100%);
  box-shadow: 0 0 18px rgba(255, 210, 0, 0.28);
  transition: width 2100ms cubic-bezier(0.2, 0.9, 0.2, 1) 420ms;
}

.impact-metrics.reveal.visible .impact-card--efficiency .impact-progress b {
  width: 70%;
}

.impact-card--biofuel strong {
  text-shadow: 0 0 0 rgba(255, 210, 0, 0);
  transition: text-shadow 260ms ease;
}

.impact-metrics.reveal.visible .impact-card--biofuel strong {
  animation: impact-number-warm-glow 700ms ease 2920ms 1;
}

.impact-card--emissions strong::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 2.1em;
  height: 2.1em;
  border: 1px solid rgba(199, 241, 90, 0.42);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
}

.impact-metrics.reveal.visible .impact-card--emissions strong::after {
  animation: impact-clean-ring 760ms ease 2920ms 1 forwards;
}

.impact-card--solar strong {
  text-shadow: 0 0 0 rgba(0, 198, 255, 0);
}

.impact-metrics.reveal.visible .impact-card--solar strong {
  animation: impact-solar-glow 2200ms ease-in-out 2800ms infinite alternate;
}

@keyframes impact-card-sheen {
  0% {
    transform: skewX(-18deg) translateX(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: skewX(-18deg) translateX(420%);
    opacity: 0;
  }
}

@keyframes impact-number-warm-glow {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(255, 210, 0, 0);
  }
  50% {
    text-shadow: 0 0 18px rgba(255, 210, 0, 0.26);
  }
}

@keyframes impact-clean-ring {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }
  30% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes impact-solar-glow {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(0, 198, 255, 0);
  }
  50% {
    text-shadow: 0 0 22px rgba(0, 198, 255, 0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .impact-metrics article,
  .impact-metrics article::after,
  .impact-card--biofuel strong,
  .impact-card--emissions strong::after,
  .impact-card--solar strong,
  .impact-card--efficiency .impact-progress b {
    animation: none !important;
    transition: none !important;
  }

  .impact-metrics article {
    transform: none;
    opacity: 1;
  }

  .impact-card--efficiency .impact-progress b {
    width: 70%;
  }
}

.impact-copy {
  margin-top: 0;
  columns: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}

.impact-copy p {
  break-inside: avoid;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.sustainability-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.sustainability-link .button {
  min-height: 48px;
}

.products-showcase {
  background: linear-gradient(180deg, #f5f5f5 0%, #ececec 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 24px;
}

.products-grid-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.service-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.service-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 16, 17, 0.94), transparent 68%);
  content: "";
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: transform 500ms ease, filter 300ms ease;
}

.service-card:hover img {
  filter: saturate(1);
  transform: scale(1.045);
}

.service-card-die-cutting img {
  transform: scale(1);
  transform-origin: center center;
}

.service-card-die-cutting:hover img {
  transform: scale(1.03);
}

.service-card-folding-gluing img {
  transform: scale(1.28);
  transform-origin: center center;
}

.service-card-folding-gluing:hover img {
  transform: scale(1.31);
}

.service-card span,
.service-card h3,
.service-card i {
  position: absolute;
  z-index: 2;
}

.service-card span {
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  color: var(--white);
  border-radius: 8px;
  background: rgba(8, 16, 17, 0.9);
  box-shadow: 0 10px 22px rgba(8, 16, 17, 0.24);
  font-size: 0.54rem;
  font-weight: 850;
}

.service-card h3 {
  right: 48px;
  bottom: 16px;
  left: 16px;
  margin: 0;
  font-size: 1.08rem;
}

.service-card i {
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--lime);
  font-style: normal;
}

.brands-section {
  background: linear-gradient(180deg, #f8f8f8 0%, #efefef 100%);
}

.brands-section .heading-row {
  margin-bottom: 34px;
}

.brands-section .heading-row > p {
  max-width: 500px;
  font-size: 1.1rem;
}

.section-tail-link-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.section-tail-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: var(--ink);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.section-tail-link i {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-style: normal;
  font-size: 0.78rem;
  line-height: 1;
}

.section-tail-link:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 17, 0.22);
  background: rgba(255, 255, 255, 0.95);
}

.showcase-shell,
.certification-showcase {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border-radius: 36px;
}

.showcase-shell {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(212, 182, 120, 0.12), transparent 24%),
    linear-gradient(180deg, #0d0d0d 0%, #171717 52%, #1f1f1f 100%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
}

.brand-loop-showcase {
  width: min(calc(100% - 12px), 1620px);
  margin-inline: auto;
  padding: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-loop-shell {
  position: relative;
  padding: 24px 48px 20px;
  border-radius: 50% / 54%;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.brand-loop-stage {
  position: relative;
  min-height: 472px;
  perspective: 1800px;
  perspective-origin: 50% 50%;
  overflow: hidden;
}

.brand-loop-track {
  position: relative;
  width: 100%;
  height: 472px;
  transform-style: preserve-3d;
}

.brand-loop-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 292px;
  height: 188px;
  padding: 34px 30px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 24px;
  background: #ffffff;
  box-shadow:
    0 30px 60px rgba(17, 17, 17, 0.24),
    0 10px 18px rgba(17, 17, 17, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backface-visibility: hidden;
  transform: translate(-50%, -50%) scale(0.01);
  transform-origin: center center;
  will-change: transform, opacity;
  opacity: 0;
  transition: box-shadow 180ms ease, filter 180ms ease;
}

.brand-loop-card img {
  width: 100%;
  max-width: 256px;
  max-height: 130px;
  object-fit: contain;
}

.brand-loop-card-polo img {
  max-width: 268px;
  max-height: 138px;
}

.brand-loop-card:hover {
  box-shadow:
    0 36px 72px rgba(17, 17, 17, 0.28),
    0 14px 24px rgba(17, 17, 17, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  filter: saturate(1.02);
}

.brand-loop-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  box-shadow: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
  padding: 0;
}

.brand-loop-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}

.brand-loop-arrow svg {
  width: 100%;
  height: 100%;
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.brand-loop-button:hover,
.brand-loop-button:focus-visible {
  transform: translateY(-2px);
  background: #1a1a1a;
}

.brand-loop-button:hover .brand-loop-arrow svg,
.brand-loop-button:focus-visible .brand-loop-arrow svg {
  stroke: rgba(216, 255, 88, 0.98);
}

.brand-loop-button:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.18);
  outline-offset: 4px;
}

.orbit-showcase {
  padding: 36px;
}

.orbit-stage {
  position: relative;
  min-height: 720px;
}

.orbit-ring,
.orbit-axis {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.orbit-ring {
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring-outer {
  width: min(78vw, 680px);
  height: min(78vw, 680px);
  border: 1px solid rgba(0, 181, 226, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.orbit-ring-inner {
  width: min(56vw, 470px);
  height: min(56vw, 470px);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.orbit-axis {
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.06);
}

.orbit-axis-horizontal {
  width: min(78vw, 680px);
  height: 1px;
}

.orbit-axis-vertical {
  width: 1px;
  height: min(78vw, 680px);
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 20px;
  transform: translate(-50%, -50%);
}

.orbit-center-mark {
  display: grid;
  width: 280px;
  height: 280px;
  padding: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 247, 0.95));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.8),
    0 26px 56px rgba(0, 0, 0, 0.26);
}

.orbit-center-mark img {
  width: 100%;
  max-width: 192px;
  object-fit: contain;
}

.orbit-center p {
  margin: 0;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.orbit-slot {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 180px;
  transform: translate(-50%, -50%);
}

.orbit-wheel {
  position: absolute;
  inset: 0;
  animation: orbit-spin 44s linear infinite;
  transform-origin: 50% 50%;
}

.orbit-slot-1 { transform: translate(-50%, -50%) translateY(-280px); }
.orbit-slot-2 { transform: translate(-50%, -50%) translate(242px, -140px); }
.orbit-slot-3 { transform: translate(-50%, -50%) translate(242px, 140px); }
.orbit-slot-4 { transform: translate(-50%, -50%) translateY(280px); }
.orbit-slot-5 { transform: translate(-50%, -50%) translate(-242px, 140px); }
.orbit-slot-6 { transform: translate(-50%, -50%) translate(-242px, -140px); }

.orbit-slot .brand-card {
  min-height: 118px;
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  animation: orbit-counter-spin 44s linear infinite;
}

.certification-showcase {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.vertical-belts {
  display: grid;
  align-items: stretch;
  gap: 22px;
}

.brands-belts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 560px;
}

.certification-belts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: 458px;
}

.vertical-belt {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.belt-scroller {
  display: flex;
  flex-direction: column;
  gap: 22px;
  will-change: transform;
}

.belt-up .belt-scroller {
  animation: vertical-up 34s linear infinite;
}

.belt-down .belt-scroller {
  animation: vertical-down 38s linear infinite;
}

.belt-track {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.showcase-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 26px;
  border: 1px solid rgba(16, 27, 28, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(243, 243, 243, 0.99) 100%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.brand-card {
  min-height: 152px;
}

.brand-card img {
  width: 100%;
  max-width: 146px;
  max-height: 70px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.showcase-card-polo img {
  max-width: 160px;
  max-height: 82px;
}

.orbit-brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.orbit-brand-tile {
  display: grid;
  min-height: 92px;
  padding: 16px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.orbit-brand-tile img {
  width: 100%;
  max-width: 112px;
  max-height: 46px;
  object-fit: contain;
}

.certifications-section {
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(0, 181, 226, 0.18), transparent 22%),
    radial-gradient(circle at bottom right, rgba(0, 181, 226, 0.1), transparent 24%),
    linear-gradient(180deg, #122129 0%, #173039 52%, #1d3b45 100%);
}

.certifications-section .heading-row > p {
  color: rgba(255, 255, 255, 0.62);
}

.section-tail-link-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.section-tail-link-light i {
  background: var(--white);
  color: #173039;
}

.section-tail-link-light:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
}

.service-preview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
  margin-top: 44px;
}

.service-preview-card {
  display: flex;
  flex-direction: column;
  aspect-ratio: auto;
  min-height: 0;
  border-radius: 16px;
  box-shadow: 0 20px 38px rgba(8, 16, 17, 0.14);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 650ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 240ms ease, opacity 650ms ease;
}

.service-preview-card:nth-child(5) {
  display: none;
}

.service-preview-card::after {
  display: none;
}

.service-preview-card__media {
  aspect-ratio: 1.5 / 1;
  overflow: hidden;
  background: var(--ink);
}

.service-preview-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-preview-card__caption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 14px 20px;
  color: var(--white);
  background: rgba(8, 16, 17, 0.98);
}

.service-preview-card__caption span,
.service-preview-card__caption h3,
.service-preview-card__caption i {
  position: static;
}

.service-preview-card span {
  min-width: 0;
  height: auto;
  padding: 0;
  color: var(--yellow);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.service-preview-card.reveal.visible {
  transform: translateY(0);
  opacity: 1;
}

.service-preview-card:nth-child(2) { transition-delay: 80ms; }
.service-preview-card:nth-child(3) { transition-delay: 160ms; }
.service-preview-card:nth-child(4) { transition-delay: 240ms; }
.service-preview-card:nth-child(5) { transition-delay: 320ms; }

.service-preview-card:hover {
  box-shadow: 0 28px 52px rgba(8, 16, 17, 0.22);
}

.service-preview-card h3 {
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  line-height: 1.08;
}

.service-preview-card i {
  width: 32px;
  height: 32px;
}

.products-preview-footer {
  margin-top: 30px;
}

@media (max-width: 1100px) {
  .service-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .service-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .service-preview-card h3 {
    font-size: 0.9rem;
  }

  .service-preview-card i {
    width: 24px;
    height: 24px;
  }

  .service-preview-card span {
    font-size: 0.6rem;
  }

  .service-preview-card__caption {
    gap: 10px;
    min-height: 54px;
    padding: 10px 12px;
  }

  .products-preview-footer {
    justify-content: flex-start;
  }
}

.certification-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  gap: 12px;
  color: var(--ink);
  text-align: center;
}

.certification-card img {
  width: 190px;
  height: 144px;
  object-fit: contain;
}

.certification-card span {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  color: rgba(16, 27, 28, 0.78);
}

.contact-section {
  padding: 105px 0;
  background: linear-gradient(135deg, var(--magenta) 0%, #b1005e 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
}

.contact-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
}

.contact-actions > a:not(.button) {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(16, 27, 28, 0.3);
  font-weight: 750;
}

.contact-actions .button {
  align-self: flex-start;
  margin-top: 30px;
}

.footer-logo {
  padding: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f1f1 100%);
}

.footer-socials {
  display: flex;
  margin-top: 28px;
  gap: 10px;
}

.footer-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--social-color, var(--white));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-socials a:hover {
  color: var(--white);
  border-color: var(--social-color);
  background: var(--social-color);
  transform: translateY(-3px);
}

.social-facebook { --social-color: #1877f2; }
.social-linkedin { --social-color: #0a66c2; }
.social-whatsapp { --social-color: #25d366; }

.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

@media (max-width: 1180px) {
  .home-header .primary-nav {
    gap: 15px;
  }

  .home-header .primary-nav a {
    font-size: 0.68rem;
  }

  .brand-image {
    width: 190px;
  }
}

@media (max-width: 1100px) {
  .home-header:not(.scrolled) .primary-nav {
    color: var(--ink);
  }

  .home-header .header-inner,
  .home-header.scrolled .header-inner {
    min-height: 72px;
    margin-top: 8px;
  }

  .home-header .primary-nav {
    top: 88px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .home-header .primary-nav .nav-home {
    display: flex;
    width: auto;
    height: auto;
    gap: 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav-home svg {
    width: 24px;
    height: 24px;
  }

  .nav-home span {
    display: inline;
  }

  .nav-dropdown summary {
    font-size: 1.6rem;
  }

  .nav-dropdown > div {
    position: static;
    width: 100%;
    padding: 10px 0 0 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown > div a {
    font-size: 1.05rem;
  }

  .home-header .header-cta {
    margin-left: auto;
  }

  .about-title-grid,
  .about-detail-grid,
  .values-heading,
  .sustainability-heading,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .impact-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-detail-grid {
    margin: 65px 0 85px;
    gap: 44px;
  }

  .about-stats-grid {
    gap: 18px;
  }

  .about-number-combined {
    min-height: 340px;
  }

  .about-number-grid {
    gap: 12px;
  }

  .about-number-stat {
    min-height: 138px;
    padding: 16px;
  }

  .purpose-card {
    padding: 45px;
  }

  .values-section {
    margin-top: 26px;
  }

  .sustainability-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .sustainable-impact {
    padding: 34px 0;
  }

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

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

  .products-grid-footer {
    justify-content: flex-start;
  }

}

@media (max-width: 720px) {
  .home-header:not(.scrolled) .header-inner,
  .home-header.scrolled .header-inner {
    overflow: visible;
    backdrop-filter: none;
  }

  .site-header.scrolled {
    backdrop-filter: none;
  }

  .brand-image {
    width: 194px;
  }

  .home-header:not(.scrolled) .brand-image,
  .home-header.scrolled .brand-image {
    width: 190px;
    padding: 5px 8px;
  }

  .home-header .header-cta {
    display: none;
  }

  .video-hero h1 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .video-hero-content {
    padding-top: 80px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .scroll-cue {
    display: none;
  }

  .about-title-grid {
    gap: 30px;
  }

  .purpose-grid,
  .values-grid,
  .service-grid:not(.service-preview-grid) {
    grid-template-columns: 1fr;
  }

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

  .values-heading {
    gap: 28px;
  }

  .value-card-icon {
    height: 126px;
  }

  .value-card-body {
    padding: 18px 22px 24px;
  }

  .purpose-card {
    min-height: auto;
    padding: 38px 28px 50px;
  }

  .purpose-card h3 {
    margin-top: 70px;
  }

  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .impact-copy {
    columns: 1;
  }

  .sustainability-link {
    justify-content: flex-start;
  }

  .showcase-shell,
  .certification-showcase {
    padding: 18px;
    border-radius: 24px;
  }

  .orbit-showcase {
    padding: 22px 18px;
  }

  .brand-loop-showcase {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .brand-loop-shell {
    width: 100%;
    padding: 14px 8px 10px;
  }

  .brand-loop-stage {
    min-height: 330px;
    perspective: 1320px;
    touch-action: pan-y;
  }

  .brand-loop-track {
    height: 330px;
  }

  .brand-loop-card {
    width: 158px;
    height: 102px;
    padding: 16px 14px;
    border-radius: 18px;
  }

  .brand-loop-card img {
    max-width: 124px;
    max-height: 56px;
  }

  .brand-loop-card-polo img {
    max-width: 136px;
    max-height: 66px;
  }

  .brand-loop-button {
    display: none;
  }

  .brand-loop-arrow {
    width: 30px;
    height: 30px;
  }

  .orbit-stage {
    min-height: 620px;
  }

  .orbit-ring-outer {
    width: min(92vw, 420px);
    height: min(92vw, 420px);
  }

  .orbit-ring-inner {
    width: min(62vw, 250px);
    height: min(62vw, 250px);
  }

  .orbit-axis-horizontal {
    width: min(92vw, 420px);
  }

  .orbit-axis-vertical {
    height: min(92vw, 420px);
  }

  .orbit-center-mark {
    width: 150px;
    height: 150px;
    padding: 18px;
  }

  .orbit-center-mark img {
    max-width: 102px;
  }

  .orbit-center p {
    max-width: 180px;
    font-size: 0.72rem;
  }

  .orbit-slot {
    width: 118px;
  }

  .orbit-slot-1 { transform: translate(-50%, -50%) translateY(-206px); }
  .orbit-slot-2 { transform: translate(-50%, -50%) translate(176px, -102px); }
  .orbit-slot-3 { transform: translate(-50%, -50%) translate(176px, 102px); }
  .orbit-slot-4 { transform: translate(-50%, -50%) translateY(206px); }
  .orbit-slot-5 { transform: translate(-50%, -50%) translate(-176px, 102px); }
  .orbit-slot-6 { transform: translate(-50%, -50%) translate(-176px, -102px); }

  .orbit-slot .brand-card {
    min-height: 88px;
    padding: 16px 12px;
    border-radius: 18px;
  }

  .certification-card {
    min-height: 120px;
    gap: 10px;
  }

  .certification-card img {
    width: 128px;
    height: 96px;
  }

  .orbit-brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .orbit-brand-tile {
    min-height: 74px;
    padding: 12px;
    border-radius: 14px;
  }

  .orbit-brand-tile img {
    max-width: 86px;
    max-height: 34px;
  }

}

@keyframes orbit-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-counter-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes vertical-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-50% - 11px));
  }
}

@keyframes vertical-down {
  from {
    transform: translateY(calc(-50% - 11px));
  }
  to {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .belt-scroller {
    animation: none;
  }
}
