@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --ink: #192631;
  --muted: #5f6f7c;
  --line: #dce4ea;
  --soft: #f4f7f9;
  --paper: #ffffff;
  --blue: #e6ca2e;
  --blue-2: #f3f055;
  --yellow-deep: #7a5200;
  --yellow-ink: #20180a;
  --steel: #6e879a;
  --gold: #edc346;
  --green: #3f7d58;
  --shadow: 0 18px 45px rgba(52, 40, 14, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #1f1f1f;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding-left: 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 80;
  background: #fff;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.14);
}

.top-nav {
  background: #141109;
  color: rgba(255, 255, 255, 0.82);
}

.top-nav-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 36px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.top-nav a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: color 160ms ease;
}

.top-nav i {
  color: var(--blue-2);
  font-size: 0.82rem;
}

.top-nav a:hover {
  color: #fff;
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 278px;
}

.brand img {
  width: 86px;
  height: auto;
}

.brand strong {
  display: block;
  font-size: 0.86rem;
  line-height: 1.05;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

.brand span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: currentColor;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 500;

  text-transform: uppercase;
}

.primary-nav a,
.dropdown-toggle {
  position: relative;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.primary-nav a::after,
.dropdown-toggle::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-2);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.active::after,
.dropdown-toggle:hover::after,
.dropdown-toggle.active::after,
.nav-dropdown:focus-within .dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dropdown-toggle .chevron {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  min-width: 286px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(220, 228, 234, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: var(--soft);
  color: var(--yellow-deep);
}

.primary-nav .nav-cta {
  padding: 13px 18px;
  color: var(--yellow-ink);
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(214, 162, 28, 0.28);
}

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

.primary-nav .nav-cta:hover {
  background: var(--blue-2);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  clip-path: inset(0);
  color: #fff;
  isolation: isolate;
  background: #141109;
  box-shadow: none;
}

.hero.compact {
  min-height: 78vh;
}

.hero-media {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.hero-right-media {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: min(54vw, 780px);
  height: 100%;
  object-fit: contain;
  object-position: center right;
  pointer-events: none;
}

@keyframes heroRightDriveIn {
  0% {
    opacity: 0;
    transform: translate3d(34vw, -34vh, 0) rotate(4deg) scale(0.92);
  }

  68% {
    opacity: 1;
    transform: translate3d(-16px, 10px, 0) rotate(-0.5deg) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: 1;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.48) 48%, rgba(76, 55, 4, 0.22)),
    linear-gradient(180deg, rgba(35, 26, 3, 0.14), rgba(0, 0, 0, 0.54));
}

.hero::after {
  left: 45%;
  background:
    linear-gradient(135deg, rgba(242, 189, 36, 0.48), rgba(122, 82, 0, 0.86)),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24));
  clip-path: polygon(31% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.86;
}

.hero-with-right::after {
  background:
    linear-gradient(135deg, rgba(242, 189, 36, 0.26), rgba(122, 82, 0, 0.58)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34));
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 170px 0 82px;
}

.hero-inner::before {
  position: absolute;
  top: 88px;
  bottom: 0;
  left: -16px;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.26);
}

.hero-label,
.section-label {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  color: #fff;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-label::before,
.section-label::before {
  width: 12px;
  height: 12px;
  margin-right: 10px;
  content: "";
  background: var(--blue-2);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.section-label {
  margin-bottom: 24px;
  color: var(--ink);
}

.hero-label {
  color: #fff;
}

.hero h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(3.2rem, 8.5vw, 4rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: none;
}

.hero .hero-title + p {
  max-width: 690px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  letter-spacing: 0.02em;
}

.hero-title {
  display: grid;
  gap: 0.3em;
}

.hero-title span {
  display: block;
}

.hero-title span:last-child {
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero.compact h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  letter-spacing: 0.04em;
}

.hero-diamond {
  position: absolute;
  z-index: 4;
  right: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 90px;
  width: auto;
  min-height: auto;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  clip-path: none;
  box-shadow: none;
}

.hero-diamond span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-diamond span::before {
  width: 44px;
  height: 1px;
  content: "";
  background: var(--gold);
  opacity: 1;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.template-split {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  min-height: 640px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(242, 189, 36, 0.94), rgba(166, 112, 0, 0.98) 48%, rgba(92, 61, 0, 0.98)),
    var(--blue);
}

.template-split.hero-continuation {
  margin-top: -1px;
}

.template-split.hero-continuation .template-panel {
  background:
    linear-gradient(135deg, rgba(242, 189, 36, 0.94), rgba(122, 82, 0, 0.98)),
    var(--blue);
}

.template-split .template-copy {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: start;
  padding: clamp(54px, 7vw, 88px) clamp(36px, 6vw, 72px);
  padding-left: max(32px, calc((100vw - var(--max)) / 2 + 32px));
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}

.template-split .template-copy > :not(.template-helmet) {
  position: relative;
  z-index: 2;
}

.template-split .template-panel {
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(58px, 8vw, 104px);
  padding-right: max(32px, calc((100vw - var(--max)) / 2 + 32px));
  padding-left: clamp(72px, 10vw, 150px);
  color: var(--yellow-ink);
  background:
    linear-gradient(140deg, rgba(242, 189, 36, 0.94), rgba(166, 112, 0, 0.98) 48%, rgba(92, 61, 0, 0.98)),
    var(--blue);
}

.template-split .template-panel::before {
  position: absolute;
  top: 18%;
  left: -10%;
  width: min(34vw, 430px);
  height: min(34vw, 430px);
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.28);
  transform: rotate(45deg);
}

.template-split .template-panel::after {
  position: absolute;
  top: 0;
  left: -23%;
  width: 54%;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.12);
  clip-path: polygon(58% 0, 100% 0, 42% 100%, 0 100%);
  pointer-events: none;
}

.template-panel > * {
  position: relative;
  z-index: 1;
}

.template-panel h2,
.template-showcase h2 {
  color: inherit;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.98;
}

.template-panel p {
  color: rgba(32, 24, 10, 0.74);
}

.template-showcase p {
  color: rgba(255, 255, 255, 0.78);
}

.template-panel .stats-inner {
  width: 100%;
  padding: 24px 0 0;
  grid-template-columns: repeat(2, 1fr);
}

.template-panel .stat {
  background: rgba(255, 255, 255, 0.12);
}

.template-links {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  color: var(--yellow-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.template-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.template-copy .eyebrow::before {
  width: 0;
  height: 0;
  content: "";
  border-top: 14px solid var(--blue-2);
  border-right: 14px solid transparent;
}

.template-helmet {
  position: absolute;
  left: max(18px, calc((100vw - var(--max)) / 2 + 18px));
  bottom: 0;
  z-index: 1;
  width: min(62%, 360px);
  max-height: 310px;
  object-fit: contain;
  object-position: left bottom;
  opacity: 0.95;
}

.template-showcase {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(680px, 1.28fr);
  min-height: 820px;
  overflow: clip;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.98) 0%, rgba(22, 22, 22, 0.96) 50%, rgba(16, 24, 30, 0.86) 100%),
    url("../img/shop3.webp") center / cover;
  color: #fff;
}

.template-showcase .template-list {
  display: grid;
  align-content: center;
  padding: clamp(58px, 8vw, 104px) clamp(30px, 4vw, 56px);
  padding-left: max(32px, calc((100vw - var(--max)) / 2 + 32px));
  min-width: 0;
}

.template-showcase .hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.template-showcase .hero-label::before {
  width: 0;
  height: 0;
  content: "";
  border-top: 17px solid var(--blue-2);
  border-right: 17px solid transparent;
}

.template-service-list {
  display: grid;
  gap: 20px;
  margin-top: 54px;
  padding: 0;
  list-style: none;
}

.template-service-list li {
  color: rgba(255, 255, 255, 0.32);
  font-size: clamp(1.75rem, 3.7vw, 2.1rem);
  font-weight: 500;
  line-height: 0.92;
}

.template-service-list li.active {
  color: #fff;
}

.template-service-list a {
  color: inherit;
}

.template-service-list button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.template-service-list button.active {
  color: #fff;
}

.selector-link {
  display: inline-flex;
  justify-self: start;
  margin-top: 34px;
  color: #fff;
}

.template-media-grid {
  position: relative;
  display: grid;
  align-self: stretch;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  height: 820px;
  min-height: 820px;
  min-width: 0;
  overflow: visible;
}

.template-showcase {
  position: relative;
  z-index: 2;
}

.template-showcase::before {
  display: none;
}

.template-showcase::after {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 27%;
  height: 41%;
  content: "";
  background: rgba(190, 127, 0, 0.78);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 34% 100%);
  pointer-events: none;
}

.template-list,
.template-media-grid {
  position: relative;
  z-index: 2;
}

.product-panel {
  display: none;
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  width: min(100%, 940px);
  height: 820px;
  margin-left: auto;
  grid-template-columns: minmax(230px, 0.9fr) minmax(190px, 0.58fr) minmax(210px, 0.64fr);
  grid-template-rows: 270px 210px 250px;
  padding: 90px 0 72px clamp(18px, 3vw, 46px);
  gap: 0;
  min-width: 0;
}

.product-panel.active {
  display: grid;
}

.product-summary {
  grid-column: 1;
  grid-row: 2 / 4;
  align-self: center;
  max-width: 350px;
  padding: 0 clamp(22px, 3vw, 44px) 0 0;
}

.product-summary strong {
  display: block;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.24;
}

.product-summary p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.75;
}

.template-media-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  min-width: 0;
}

.template-media-grid .large {
  grid-column: 2 / 4;
  grid-row: 1;
  align-self: stretch;
  height: 100%;
  filter: grayscale(0.14) brightness(0.68);
}

.product-panel img:nth-of-type(2) {
  grid-column: 3;
  grid-row: 2;
}

.product-panel img:nth-of-type(3) {
  grid-column: 2 / 4;
  grid-row: 3;
}

.product-panel img:not(.large) {
  height: 100%;
}

.template-media-grid .blue-tile {
  position: relative;
  display: grid;
  grid-column: 2;
  grid-row: 2;
  place-items: center;
  min-height: 210px;
  padding: 28px;
  background: rgba(42, 42, 42, 0.94);
  color: #fff;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-arrow {
  position: absolute;
  left: 50%;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transform: translateX(-50%);
  transition: background 160ms ease, transform 160ms ease;
}

.product-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  content: "";
  border-top: 2px solid rgba(255, 255, 255, 0.58);
  border-left: 2px solid rgba(255, 255, 255, 0.58);
}

.product-arrow.up {
  top: 38%;
}

.product-arrow.down {
  bottom: 35%;
}

.product-arrow.up::before {
  transform: translate(-50%, -32%) rotate(45deg);
}

.product-arrow.down::before {
  transform: translate(-50%, -68%) rotate(225deg);
}

.product-arrow:hover,
.product-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.product-arrow.up:hover,
.product-arrow.up:focus-visible {
  transform: translate(-50%, -3px);
}

.product-arrow.down:hover,
.product-arrow.down:focus-visible {
  transform: translate(-50%, 3px);
}

.template-media-grid .blue-tile span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.7rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--yellow-ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  box-shadow: 0 14px 32px rgba(214, 162, 28, 0.2);
  transform: translateY(-2px);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button.light {
  border-color: var(--line);
  background: #fff;
  color: var(--yellow-deep);
}

.section {
  position: relative;
  z-index: 2;
  padding: 84px 0;
  background: var(--paper);
}

.section.tight {
  padding: 56px 0;
}

.section.soft {
  background: var(--soft);
}

.highlights-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 249, 0.98)),
    var(--paper);
}

.highlights-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(214, 162, 28, 0.18);
}

.highlight-card {
  min-height: 218px;
  display: grid;
  align-content: end;
  padding: 28px;
  background: #fff;
  border-bottom: 4px solid transparent;
  transition: border-color 180ms ease, transform 180ms ease;
}

.highlight-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.highlight-card strong {
  display: block;
  color: var(--yellow-deep);
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  line-height: 0.95;
}

.highlight-card span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section.dark {
  background: #1d170c;
  color: #fff;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--yellow-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section h2,
.section h3 {
  margin: 0 0 18px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section h3 {
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-mosaic {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  grid-template-rows: 170px 220px;
  gap: 0;
  box-shadow: var(--shadow);
}

.feature-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-mosaic .tile-a {
  grid-row: span 2;
}

.blue-card {
  display: grid;
  place-items: center;
  min-height: 170px;
  padding: 26px;
  background: rgba(214, 162, 28, 0.93);
  color: var(--yellow-ink);
  text-align: center;
}

.blue-card strong {
  font-size: 1.25rem;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.stats-band {
  position: relative;
  overflow: hidden;
  background: #1d170c;
  color: #fff;
}

.stats-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.stats-inner {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.stat {
  min-height: 136px;
  display: grid;
  align-content: center;
  padding: 24px;
  background: rgba(214, 162, 28, 0.78);
  color: var(--yellow-ink);
}

.stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stat span {
  margin-top: 8px;
  color: rgba(32, 24, 10, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.board-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.board-grid .profile-card img {
  height: 190px;
}

.board-grid .profile-card .body {
  padding: 18px;
}

.board-grid .profile-card h3 {
  font-size: 1rem;
}

.board-grid .profile-card p {
  font-size: 0.9rem;
  line-height: 1.45;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.mission-vision-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(244, 247, 249, 0.98), rgba(255, 255, 255, 0.98)),
    var(--soft);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(214, 162, 28, 0.16);
}

.mission-card {
  min-height: 320px;
  padding: clamp(30px, 5vw, 48px);
  background: #fff;
}

.mission-card.dark {
  background:
    linear-gradient(135deg, rgba(122, 82, 0, 0.98), rgba(58, 40, 6, 0.98)),
    var(--yellow-deep);
  color: #fff;
}

.mission-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--yellow-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mission-card.dark span {
  color: rgba(255, 255, 255, 0.68);
}

.mission-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.mission-card p {
  color: var(--muted);
}

.mission-card.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: rgba(214, 162, 28, 0.16);
}

.about-proof-grid div {
  padding: 24px;
  background: #fff;
}

.about-proof-grid strong {
  display: block;
  color: var(--yellow-deep);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1;
}

.about-proof-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.values-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(244, 247, 249, 0.98), rgba(255, 255, 255, 0.98)),
    var(--soft);
}

.values-feature {
  padding: 104px 0;
  background:
    linear-gradient(90deg, rgba(14, 19, 22, 0.97), rgba(32, 24, 10, 0.94)),
    url("../img/MC-Images/Bucket/AMP-31.jpg") center / cover;
  color: #fff;
}

.values-feature .lead {
  color: rgba(255, 255, 255, 0.76);
}

.figi-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.figi-card {
  min-height: 330px;
  display: grid;
  align-content: end;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.figi-card .value-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 54px;
  background: rgba(242, 189, 36, 0.14);
  border-color: rgba(242, 189, 36, 0.34);
  color: var(--blue-2);
}

.figi-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.figi-card h3 {
  color: #fff;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
}

.figi-card p {
  color: rgba(255, 255, 255, 0.74);
}

.values-section::after {
  position: absolute;
  right: 0;
  top: 0;
  width: min(32vw, 420px);
  height: 100%;
  content: "";
  background: rgba(242, 189, 36, 0.1);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.figi-mascot-section {
  overflow: hidden;
  background: #f4f4f4;
  color: var(--ink);
}

.figi-mascot-section .container {
  position: relative;
  z-index: 1;
}

.figi-mascot-intro {
  max-width: 1240px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.figi-mascot-intro h2 {
  margin-bottom: 30px;
  color: #121a2a;
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
  line-height: 1;
}

.figi-mascot-intro p {
  max-width: 1180px;
  color: #111;
  font-size: clamp(1.08rem, 1.7vw, 1.55rem);
  line-height: 1.62;
}

.figi-mascot-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(360px, 1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.figi-mascot-visual {
  display: grid;
  place-items: center;
  min-height: clamp(360px, 43vw, 560px);
}

.figi-mascot-visual img {
  width: min(100%, 650px);
  height: auto;
  object-fit: contain;
}

.figi-wordmark-list {
  display: grid;
  gap: clamp(18px, 2.7vw, 34px);
  justify-self: start;
  max-width: 760px;
  color: #000;
  font-weight: 900;
}

.figi-wordmark-list p {
  margin: 0;
  color: #000;
  font-size: clamp(1.45rem, 2.8vw, 3.1rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.figi-wordmark-list span {
  display: inline-block;
  margin-right: 2px;
  font-size: 1.52em;
  line-height: 0.72;
}

.values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(214, 162, 28, 0.14);
}

.value-card {
  min-height: 270px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 28px;
  background: #fff;
  text-align: center;
}

.value-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  display: inline-grid;
  place-items: center;
  background: rgba(242, 189, 36, 0.1);
  border: 1px solid rgba(242, 189, 36, 0.24);
  border-radius: 50%;
  color: var(--yellow-deep);
  font-size: 1.35rem;
}

.value-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.value-card p {
  color: var(--muted);
}

.distribution-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(26, 20, 9, 0.9), rgba(26, 20, 9, 0.6) 54%, rgba(26, 20, 9, 0.25)),
    url("../img/world-map.png") center / cover;
  color: #fff;
}

.distribution-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.02fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
  min-height: 520px;
}

.distribution-grid .lead,
.distribution-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.country-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.country-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-section {
  background:
    linear-gradient(135deg, rgba(244, 247, 249, 0.98), rgba(255, 255, 255, 0.98)),
    var(--soft);
}

.evidence-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 0.95fr 0.95fr;
  gap: 1px;
  background: rgba(214, 162, 28, 0.18);
}

.video-card,
.testimonial-card {
  min-height: 310px;
  background: #fff;
  overflow: hidden;
}

.video-card {
  position: relative;
  color: #fff;
}

.video-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 58%);
}

.video-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.video-card span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-card i {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--yellow-ink);
}

.testimonial-card {
  display: grid;
  align-content: end;
  padding: 28px;
}

.testimonial-card.dark {
  background:
    linear-gradient(135deg, rgba(122, 82, 0, 0.98), rgba(58, 40, 6, 0.98)),
    var(--yellow-deep);
  color: #fff;
}

.testimonial-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.testimonial-card.dark p {
  color: rgba(255, 255, 255, 0.76);
}

.testimonial-card strong {
  color: var(--yellow-deep);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.testimonial-card.dark strong {
  color: var(--blue-2);
}

.service-overview-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 249, 0.98)),
    var(--paper);
}

.service-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 46px;
  align-items: center;
}

.service-overview-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #1d170c;
}

.service-overview-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: brightness(0.82);
}

.service-note {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 300px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(242, 189, 36, 0.96), rgba(214, 162, 28, 0.98)),
    var(--blue);
  color: var(--yellow-ink);
}

.service-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.service-note span {
  color: rgba(32, 24, 10, 0.72);
}

.service-capabilities-section {
  overflow: hidden;
}

.service-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(214, 162, 28, 0.16);
}

.service-capability-card {
  min-height: 260px;
  padding: 28px;
  background: #fff;
}

.service-capability-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--yellow-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.service-capability-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.service-capability-card p {
  color: var(--muted);
}

.services-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 21, 31, 0.98), rgba(42, 31, 11, 0.96)),
    #1d170c;
  color: #fff;
}

.services-band::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 34%;
  height: 100%;
  content: "";
  background: rgba(242, 189, 36, 0.4);
  clip-path: polygon(46% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.services-band-image {
  position: relative;
  min-height: 360px;
}

.services-band-image::after {
  position: absolute;
  inset: 0;
  content: "";
  
}

.services-band-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-band-content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: clamp(54px, 8vw, 96px);
  padding-right: max(32px, calc((100vw - var(--max)) / 2 + 32px));
}

.services-band-content p {
  color: rgba(255, 255, 255, 0.76);
}

.service-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.16);
}

.service-step-grid article {
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.service-step-grid strong {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.service-step-grid span {
  color: #fff;
}

.team-responsibility-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 249, 0.98)),
    var(--paper);
}

.team-responsibility-section::after {
  position: absolute;
  right: 0;
  top: 0;
  width: min(30vw, 420px);
  height: 100%;
  content: "";
  background: rgba(242, 189, 36, 0.1);
  clip-path: polygon(42% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.responsibility-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(214, 162, 28, 0.16);
}

.responsibility-card {
  min-height: 360px;
  padding: clamp(30px, 5vw, 48px);
  background: #fff;
}

.responsibility-card.dark {
  background:
    linear-gradient(135deg, rgba(122, 82, 0, 0.98), rgba(58, 40, 6, 0.98)),
    var(--yellow-deep);
  color: #fff;
}

.responsibility-card i {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  display: inline-grid;
  place-items: center;
  background: rgba(242, 189, 36, 0.1);
  border: 1px solid rgba(242, 189, 36, 0.24);
  border-radius: 50%;
  color: var(--yellow-deep);
  font-size: 1.35rem;
}

.responsibility-card.dark i {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.responsibility-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--yellow-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.responsibility-card.dark span {
  color: rgba(255, 255, 255, 0.7);
}

.responsibility-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
  line-height: 1.1;
}

.responsibility-card p {
  color: var(--muted);
}

.responsibility-card.dark p {
  color: rgba(255, 255, 255, 0.76);
}

.choose-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  min-height: 640px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 21, 31, 0.98), rgba(42, 31, 11, 0.96)),
    #1d170c;
  color: #fff;
}

.choose-section::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 36%;
  height: 100%;
  content: "";
  background: rgba(242, 189, 36, 0.42);
  clip-path: polygon(44% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.choose-image {
  position: relative;
  min-height: 420px;
}

.choose-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(214, 162, 28, 0.72), transparent 48%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22));
}

.choose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choose-content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: clamp(54px, 8vw, 96px);
  padding-right: max(32px, calc((100vw - var(--max)) / 2 + 32px));
}

.choose-content .lead,
.choose-content p {
  color: rgba(255, 255, 255, 0.76);
}

.choose-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 38px;
  background: rgba(255, 255, 255, 0.16);
}

.choose-list article {
  min-height: 172px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.choose-list strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.02rem;
}

.clients-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 249, 0.98)),
    var(--paper);
}

.clients-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(30vw, 380px);
  height: 100%;
  content: "";
  background: rgba(242, 189, 36, 0.08);
  clip-path: polygon(46% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.clients-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}

.clients-intro h2 {
  max-width: 720px;
}

.clients-intro p:last-child {
  color: var(--muted);
}

.client-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(214, 162, 28, 0.16);
}

.client-logo {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 26px;
  background: #fff;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.client-logo img {
  width: min(150px, 78%);
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.58;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.client-logo.text-logo {
  color: #485867;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.client-logo:hover,
.client-logo:focus-within {
  background: #fff;
  box-shadow: inset 0 -3px 0 var(--blue-2);
}

.client-logo:hover img,
.client-logo:focus-within img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.location-overview-section,
.product-overview-section {
  overflow: hidden;
  background: var(--paper);
}

.location-overview-section {
  min-height: 620px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(26, 20, 9, 0.88), rgba(26, 20, 9, 0.52) 48%, rgba(26, 20, 9, 0.18)),
    url("../img/world-map.png") center / cover;
  color: #fff;
}

.location-overview-grid,
.product-overview-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: center;
}

.location-overview-copy,
.product-overview-copy {
  padding: clamp(10px, 2vw, 24px) 0;
}

.location-overview-copy {
  max-width: 620px;
  padding: clamp(34px, 5vw, 58px);
  background: rgba(122, 82, 0, 0.84);
  backdrop-filter: blur(2px);
}

.location-overview-copy .lead,
.location-overview-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.location-points {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.18);
}

.location-points article {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.1);
}

.location-points strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.location-points span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
}

.product-overview-section {
  background:
    linear-gradient(135deg, rgba(244, 247, 249, 0.98), rgba(255, 255, 255, 0.98)),
    var(--soft);
}

.product-overview-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #1d170c;
}

.product-overview-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: brightness(0.82);
}

.product-overview-note {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 280px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(242, 189, 36, 0.96), rgba(214, 162, 28, 0.98)),
    var(--blue);
  color: var(--yellow-ink);
}

.product-overview-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.product-overview-note span {
  color: rgba(32, 24, 10, 0.72);
}

.home-cta {
  position: relative;
  z-index: 2;
  padding: 82px 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 249, 0.98)),
    var(--paper);
}

.home-cta-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(122, 82, 0, 0.98), rgba(58, 40, 6, 0.98)),
    var(--yellow-deep);
}

.home-cta-panel::after {
  position: absolute;
  right: 0;
  top: 0;
  width: min(34%, 360px);
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.1);
  clip-path: polygon(36% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.home-cta-panel > * {
  position: relative;
  z-index: 1;
}

.home-cta-panel .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.home-cta-panel .cta-actions {
  justify-content: flex-end;
}

.media-handoff-section {
  background: #fff;
}

.media-handoff {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(32px, 5vw, 52px);
  border: 1px solid rgba(214, 162, 28, 0.22);
  background:
    linear-gradient(135deg, rgba(244, 247, 249, 0.98), rgba(255, 255, 255, 0.98)),
    var(--soft);
}

.media-handoff p:last-child {
  max-width: 760px;
  color: var(--muted);
}

.disabled-link {
  pointer-events: none;
  opacity: 0.72;
}

.product-card,
.profile-card,
.location-card,
.service-card,
.spec-card,
.story-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(14, 35, 52, 0.06);
}

.product-card img,
.profile-card img {
  width: 100%;
  height: 226px;
  object-fit: cover;
}

.product-gallery-section {
  overflow: hidden;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
}

.product-gallery-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #1d170c;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(14, 35, 52, 0.08);
}

.product-gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.product-gallery-item.wide {
  grid-column: span 2;
}

.product-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.product-gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.02) 58%);
  pointer-events: none;
}

.product-gallery-item figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-gallery-item:hover img {
  filter: brightness(1.04);
  transform: scale(1.035);
}

.product-card .body,
.profile-card .body,
.service-card,
.spec-card,
.story-card,
.location-card {
  padding: 24px;
}

.product-card h3,
.profile-card h3,
.service-card h3,
.spec-card h3,
.story-card h3,
.location-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.product-card p,
.profile-card p,
.service-card p,
.spec-card p,
.story-card p,
.location-card p {
  color: var(--muted);
}

.read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: var(--yellow-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.read-more::before {
  width: 16px;
  height: 2px;
  margin-right: 8px;
  content: "";
  background: var(--gold);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.split-band img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.split-content {
  padding: clamp(36px, 7vw, 84px);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 16px;
  height: 16px;
  content: "";
  border: 4px solid var(--gold);
  border-radius: 50%;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.image-strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 42px;
  align-items: center;
  padding: clamp(34px, 6vw, 64px);
  background: #1d170c;
  color: #fff;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-box {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
}

.contact-box a {
  color: var(--yellow-deep);
  font-weight: 800;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
}

.form-grid textarea {
  min-height: 132px;
  resize: vertical;
}

.form-grid button {
  justify-self: start;
  cursor: pointer;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.tab-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.tab-button.active {
  border-color: var(--yellow-deep);
  background: var(--blue);
  color: var(--yellow-ink);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: #fff;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--yellow-deep);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.country-heading {
  margin: 42px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
  color: var(--yellow-deep);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer {
  background: #141109;
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
}

.footer-inner strong {
  color: #fff;
}

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.footer-brand p,
.footer-contact p {
  margin-bottom: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  min-height: 86px;
  padding: 10px 12px;

  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.footer-logo img {
  width: 88px;
  height: auto;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--yellow-ink);
  background: var(--blue);
  border-radius: 50%;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.footer-socials a:hover {
  background: var(--blue-2);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.86rem;
}

.footer-bottom a {
  color: #fff;
  font-weight: 700;
}

.animations-ready .scroll-flow,
.animations-ready .hero-line-flow {
  opacity: 0;
  will-change: opacity, transform, filter, clip-path;
  transition:
    opacity 680ms ease,
    transform 780ms cubic-bezier(0.18, 0.78, 0.22, 1),
    filter 680ms ease,
    clip-path 780ms cubic-bezier(0.18, 0.78, 0.22, 1);
  transition-delay: var(--flow-delay, 0ms);
}

.animations-ready .scroll-flow {
  filter: blur(6px);
  transform: translate3d(0, 34px, 0);
}

.animations-ready .scroll-flow[data-flow="text"] {
  clip-path: inset(0 100% 0 0);
  transform: translate3d(-42px, 0, 0);
}

.animations-ready .scroll-flow[data-flow="media"] {
  filter: blur(7px) saturate(0.86);
  transform: translate3d(0, 42px, 0) scale(0.965);
}

.animations-ready .scroll-flow[data-flow="accent"] {
  clip-path: inset(0 100% 0 0);
  filter: saturate(0.8) brightness(0.94);
  transform: translate3d(-24px, 18px, 0) scale(0.88);
  transform-origin: left center;
}

.animations-ready .hero-line-flow {
  clip-path: inset(0 100% 0 0);
  filter: blur(5px);
  transform: translate3d(-72px, 0, 0);
  transform-origin: left center;
}

.animations-ready .scroll-flow.is-visible,
.animations-ready .hero-line-flow.is-visible {
  clip-path: inset(0 0 0 0);
  filter: blur(0) saturate(1);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.animations-ready .hero-inner::before {
  opacity: 0.26;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 640ms cubic-bezier(0.18, 0.78, 0.22, 1);
}

.animations-ready .hero.section-in-view .hero-inner::before {
  transform: scaleY(1);
}

.animations-ready .hero-label::before,
.animations-ready .section-label::before,
.animations-ready .template-copy .eyebrow::before,
.animations-ready .template-showcase .hero-label::before,
.animations-ready .read-more::before,
.animations-ready .check-list li::before {
  opacity: 0;
  transform: scaleX(0) rotate(-8deg);
  transform-origin: left center;
  transition:
    opacity 420ms ease,
    transform 620ms cubic-bezier(0.18, 0.78, 0.22, 1);
  transition-delay: calc(var(--flow-delay, 0ms) + 120ms);
}

.animations-ready .section-in-view .hero-label::before,
.animations-ready .section-in-view .section-label::before,
.animations-ready .section-in-view .template-copy .eyebrow::before,
.animations-ready .section-in-view .template-showcase .hero-label::before,
.animations-ready .section-in-view .read-more::before,
.animations-ready .section-in-view .check-list li::before {
  opacity: 1;
  transform: scaleX(1) rotate(0deg);
}

.animations-ready .hero::after,
.animations-ready .template-showcase::after,
.animations-ready .services-band::after,
.animations-ready .choose-section::after,
.animations-ready .values-section::after,
.animations-ready .team-responsibility-section::after,
.animations-ready .clients-section::before,
.animations-ready .home-cta-panel::after {
  opacity: 0;
  transform: translate3d(54px, 0, 0) scaleX(0.72);
  transform-origin: right center;
  transition:
    opacity 700ms ease,
    transform 860ms cubic-bezier(0.18, 0.78, 0.22, 1);
}

.animations-ready .hero.section-in-view::after {
  opacity: 0.86;
  transform: translate3d(0, 0, 0) scaleX(1);
}

.animations-ready .hero-with-right.section-in-view::after {
  opacity: 1;
}

.animations-ready .hero-with-right .hero-right-media {
  opacity: 0;
  transform: translate3d(34vw, -34vh, 0) rotate(4deg) scale(0.92);
}

.animations-ready .hero-with-right.section-in-view .hero-right-media {
  animation: heroRightDriveIn 1100ms cubic-bezier(0.16, 0.82, 0.2, 1) 180ms both;
}

.animations-ready .template-showcase.section-in-view::after,
.animations-ready .services-band.section-in-view::after,
.animations-ready .choose-section.section-in-view::after,
.animations-ready .values-section.section-in-view::after,
.animations-ready .team-responsibility-section.section-in-view::after,
.animations-ready .clients-section.section-in-view::before,
.animations-ready .home-cta.section-in-view .home-cta-panel::after {
  opacity: 1;
  transform: translate3d(0, 0, 0) scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-flow,
  .hero-line-flow,
  .hero-right-media,
  .hero-label::before,
  .section-label::before,
  .template-copy .eyebrow::before,
  .template-showcase .hero-label::before,
  .read-more::before,
  .check-list li::before,
  .hero::after,
  .template-showcase::after,
  .services-band::after,
  .choose-section::after,
  .values-section::after,
  .team-responsibility-section::after,
  .clients-section::before,
  .home-cta-panel::after {
    clip-path: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 0;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    padding: 18px 24px 28px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.nav-open .primary-nav {
    display: grid;
    gap: 2px;
  }

  .primary-nav a {
    padding: 12px 0;
    color: var(--ink);
  }

  .nav-dropdown {
    display: grid;
    align-items: stretch;
  }

  .dropdown-toggle {
    justify-content: space-between;
    padding: 12px 0;
    color: var(--ink);
  }

  .dropdown-toggle::after {
    bottom: 6px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 6px 0 10px 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: grid;
    gap: 2px;
  }

  .primary-nav a::after {
    bottom: 6px;
  }

  .primary-nav .nav-cta {
    justify-self: start;
    padding: 12px 16px;
    color: var(--yellow-ink);
  }

  .intro-grid,
  .split-band,
  .cta-panel,
  .template-split,
  .template-showcase,
  .choose-section,
  .services-band,
  .service-overview-grid,
  .location-overview-grid,
  .product-overview-grid {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .figi-grid,
  .highlight-grid,
  .evidence-grid,
  .choose-list,
  .client-grid,
  .about-proof-grid,
  .responsibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .clients-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .highlights-header,
  .distribution-grid,
  .media-handoff {
    grid-template-columns: 1fr;
  }

  .choose-section::after {
    width: 42%;
    opacity: 0.72;
  }

  .choose-image {
    min-height: 360px;
  }

  .choose-content {
    padding: clamp(44px, 7vw, 72px) max(32px, calc((100vw - var(--max)) / 2 + 32px));
  }

  .home-cta-panel .cta-actions {
    justify-content: flex-start;
  }

  .template-split .template-panel::before {
    display: none;
  }

  .template-split .template-panel::after {
    display: none;
  }

  .template-split .template-copy {
    clip-path: none;
  }

  .template-split .template-panel {
    padding-left: clamp(36px, 6vw, 72px);
  }

  .template-helmet {
    position: static;
    z-index: auto;
    width: 100%;
    max-height: 240px;
    margin-top: 24px;
    object-fit: cover;
  }

  .template-media-grid {
    height: auto;
    min-height: 520px;
  }

  .template-showcase {
    overflow: hidden;
  }

  .product-panel,
  .product-panel.active {
    width: 100%;
    height: auto;
    margin-left: 0;
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0;
  }

  .product-summary {
    grid-column: auto;
    grid-row: auto;
    max-width: none;
    padding: 34px 0;
  }

  .template-media-grid .large,
  .product-panel img:nth-of-type(2),
  .product-panel img:nth-of-type(3),
  .template-media-grid .blue-tile {
    grid-column: auto;
    grid-row: auto;
  }

  .template-media-grid img,
  .template-media-grid .blue-tile {
    min-height: 240px;
  }

  .template-media-grid .large {
    height: auto;
  }

  .stats-inner,
  .card-grid,
  .board-grid,
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .board-grid {
    gap: 18px;
  }
}

@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .hero-inner {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .top-nav-inner {
    min-height: 42px;
    padding: 6px 0;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 14px;
    row-gap: 2px;
    font-size: 0.64rem;
  }

  .top-nav a {
    gap: 6px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 62px;
  }

  .brand strong {
    font-size: 0.74rem;
  }

  .brand span {
    display: none;
  }

  .hero,
  .hero.compact {
    min-height: 430px;
  }

  .hero-inner {
    padding: 116px 28px 54px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.04;
  }

  .hero-title {
    gap: 0.12em;
  }

  .hero p,
  .hero .hero-title + p {
    max-width: 100%;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .section h2 {
    font-size: 1.65rem;
    line-height: 1.14;
  }

  .lead {
    font-size: 0.98rem;
  }

  .hero-inner::before {
    display: none;
  }

  .hero::after,
  .hero-right-media,
  .hero-diamond {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .feature-mosaic,
  .stats-inner,
  .card-grid,
  .board-grid,
  .values-grid,
  .figi-grid,
  .highlight-grid,
  .evidence-grid,
  .choose-list,
  .service-capability-grid,
  .service-step-grid,
  .client-grid,
  .figi-mascot-layout,
  .about-proof-grid,
  .responsibility-grid,
  .mission-vision-grid,
  .image-strip,
  .spec-grid,
  .locations-grid,
  .template-media-grid,
  .product-gallery-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .product-gallery-grid {
    grid-auto-rows: 230px;
  }

  .product-gallery-item.large,
  .product-gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .figi-mascot-section {
    padding: 58px 0;
  }

  .figi-mascot-intro {
    margin-bottom: 22px;
  }

  .figi-mascot-intro h2 {
    margin-bottom: 18px;
  }

  .figi-mascot-visual {
    min-height: 0;
  }

  .figi-wordmark-list {
    width: 100%;
    gap: 18px;
  }

  .figi-wordmark-list p {
    font-size: clamp(1.38rem, 7vw, 2.2rem);
  }

  .value-card,
  .choose-list article {
    min-height: auto;
  }

  .choose-section::after,
  .services-band::after,
  .team-responsibility-section::after,
  .values-section::after,
  .clients-section::before,
  .home-cta-panel::after {
    display: none;
  }

  .choose-image {
    min-height: 300px;
  }

  .choose-content {
    padding: 48px 28px;
  }

  .services-band-content {
    padding: 48px 28px;
  }

  .mission-card,
  .value-card,
  .responsibility-card,
  .service-capability-card,
  .service-step-grid article,
  .location-points article {
    padding: 24px;
  }

  .service-overview-media,
  .service-overview-media img,
  .product-overview-media,
  .product-overview-media img {
    min-height: 300px;
  }

  .service-note,
  .product-overview-note {
    position: static;
    max-width: none;
  }

  .template-media-grid {
    height: auto;
    min-height: 0;
    grid-template-rows: auto;
  }

  .template-media-grid .large {
    grid-row: auto;
  }

  .product-panel,
  .product-panel.active {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .product-summary {
    padding: 28px 0;
  }

  .feature-mosaic {
    grid-template-rows: auto;
  }

  .feature-mosaic .tile-a {
    grid-row: auto;
    height: 300px;
  }

  .feature-mosaic img:not(.tile-a) {
    height: 220px;
  }

  .split-band img {
    min-height: 300px;
  }
}
