:root {
  --navy: #001b31;
  --navy-dark: #001426;
  --aqua: #006bb9;
  --header-gradient: linear-gradient(90deg, #001427 0%, #003660 52%, #001f3a 100%);
  --mona: "Mona Sans Expanded", "Mona Sans", system-ui, -apple-system, sans-serif;
  --inter: "Mona Sans Expanded", "Mona Sans", system-ui, -apple-system, sans-serif;

  /* Mona Sans Expanded Typographic Scale Tokens */
  --font-h1-xl: 600 clamp(32px, 5vw, 58px) / 1.2 var(--mona);
  --font-h1-l: 600 clamp(26px, 4vw, 44px) / 1.2 var(--mona);
  --font-h2-l: 600 clamp(24px, 3vw, 36px) / 1.2 var(--mona);
  --font-h2-m: 600 clamp(22px, 2.5vw, 32px) / 1.2 var(--mona);
  --font-h2-s: 600 clamp(20px, 2vw, 28px) / 1.2 var(--mona);
  --font-title-24: 600 clamp(18px, 2vw, 24px) / 1.2 var(--mona);
  --font-title-20: 600 clamp(16px, 1.8vw, 20px) / 1.3 var(--mona);
  --font-title-18: 600 clamp(15px, 1.5vw, 18px) / 1.3 var(--mona);
  --font-title-16: 600 clamp(14px, 1.4vw, 16px) / 1.3 var(--mona);
  --font-body-l: 400 clamp(15px, 1.5vw, 18px) / 1.55 var(--inter);
  --font-body-m: 400 clamp(14px, 1.4vw, 16px) / 1.5 var(--inter);
  --font-body-s: 400 clamp(13px, 1.2vw, 14px) / 1.45 var(--inter);
  --font-caption: 400 12px / 1.4 var(--inter);
}

/* Reset & Global Base Settings */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  color: var(--navy);
  background: #fff;
  font-family: var(--mona);
  font-stretch: 125%;
  font-variation-settings: 'wdth' 125;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: #fff;
  color: #011b31;
  font: 600 14px/20px var(--mona);
}

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

button {
  font-family: inherit;
}

h1 {
  font: var(--font-h1-xl);
  letter-spacing: -0.04em;
  margin: 0;
}

h2 {
  font: var(--font-h1-l);
  letter-spacing: -0.03em;
  margin: 0;
}

h3 {
  font: var(--font-title-24);
  letter-spacing: -0.02em;
  margin: 0;
}

h4 {
  font: var(--font-title-20);
  margin: 0;
}

p {
  font: var(--font-body-m);
  margin: 0;
}

small,
caption {
  font: var(--font-caption);
}

/* Accessible Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
}

/* Global Shell & Container Utility */
.section,
.content-wide {
  width: min(1724px, calc(100% - clamp(32px, 5vw, 96px)));
  margin-left: auto;
  margin-right: auto;
}

/* Header & Site Navigation */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  color: #fff;
  background: var(--header-gradient);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.nav-shell {
  width: min(1724px, calc(100% - clamp(32px, 5vw, 96px)));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  height: 48px;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.desktop-nav {
  display: flex;
  gap: clamp(16px, 2.5vw, 28px);
  margin-left: 48px;
  align-items: center;
}

.desktop-nav a {
  color: #fff;
  text-decoration: none;
  font: 400 16px/24px var(--inter);
  padding: 8px 4px;
  transition: opacity 0.2s ease;
}

.desktop-nav a:hover {
  opacity: 0.85;
}

.desktop-nav b {
  display: inline-block;
  margin-left: 4px;
  font-size: 13px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

/* Header Dropdown Submenus */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}

.nav-item-dropdown:hover .nav-dropdown-toggle b,
.nav-item-dropdown.is-open .nav-dropdown-toggle b {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 8px;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  padding: 8px 0;
  background: #011b31;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}

/* Invisible hover bridge to keep dropdown open seamlessly */
.nav-dropdown-menu::after {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #011b31;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.9);
  font: 500 14px/18px var(--mona, 'Mona Sans', sans-serif);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  background: #006bba;
  color: #ffffff;
  opacity: 1;
}

.nav-dropdown-menu img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.nav-dropdown-menu a:hover img {
  opacity: 1;
}

.contact-link,
.primary-button {
  background: var(--aqua);
  color: #fff;
  text-decoration: none;
  font: 600 14px/16.8px var(--mona);
  border-radius: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-link:hover,
.primary-button:hover {
  background: #005aa0;
}

.contact-link {
  min-width: 120px;
  min-height: 40px;
  display: grid;
  place-items: center;
  padding: 0 16px;
}

.desktop-contact-btn {
  margin-left: auto;
}

/* Mobile Nav Toggle Button */
.mobile-nav-toggle {
  display: none;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  z-index: 102;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Navigation Drawer Overlay (Matches Uploaded Mockup Design) */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  overflow-y: auto;
}

.mobile-nav-drawer.is-active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-header {
  height: 72px;
  background: #001b31;
  padding: 0 clamp(20px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.mobile-drawer-close {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.mobile-drawer-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.mobile-drawer-body {
  padding: 24px clamp(20px, 4vw, 32px) 40px;
  display: flex;
  flex-direction: column;
}

.mobile-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 12px;
}

.mobile-section-header span {
  color: #006bb9;
  font: 500 15px/20px var(--mona);
}

.mobile-section-header .section-divider {
  flex: 1;
  height: 1px;
  background: #e5e9f0;
}

.mobile-nav-box {
  display: block;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #001b31;
  font: 700 16px/22px var(--mona);
  text-decoration: none;
  margin-bottom: 8px;
  transition: border-color 0.2s ease;
}

.mobile-nav-box:hover {
  border-color: #006bb9;
}

.mobile-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  margin-bottom: 8px;
}

.mobile-nav-grid a {
  padding: 14px 16px;
  color: #001b31;
  font: 700 15px/20px var(--mona);
  text-decoration: none;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-grid a:nth-child(2n) {
  border-right: none;
}

.mobile-nav-grid a:nth-last-child(-n+2) {
  border-bottom: none;
}

.mobile-nav-grid a:hover {
  background: #f8fafc;
  color: #006bb9;
}

.mobile-nav-stack {
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  margin-bottom: 8px;
}

.mobile-nav-stack a {
  padding: 14px 18px;
  color: #001b31;
  font: 700 16px/22px var(--mona);
  text-decoration: none;
  border-bottom: 1px solid #e2e8f0;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-stack a:last-child {
  border-bottom: none;
}

.mobile-nav-stack a:hover {
  background: #f8fafc;
  color: #006bb9;
}

.projects-box {
  margin-top: 12px;
  margin-bottom: 20px;
}

.mobile-nav-btn {
  display: block;
  width: 100%;
  height: 48px;
  background: #006bb9;
  color: #ffffff;
  text-align: center;
  line-height: 48px;
  font: 700 15px/48px var(--mona);
  text-decoration: none;
  transition: background 0.2s ease;
}

.mobile-nav-btn:hover {
  background: #005696;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 15, 30, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 99;
}

.nav-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Hero Section */
.hero {
  position: relative;
  height: 945px;
  min-height: 0;
  display: block;
  padding: 0;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 27, 49, 0.10) 0%, rgba(0, 27, 49, 0.03) 48%, transparent 100%);
}

.hero-copy {
  position: absolute;
  top: 568px;
  left: max(98px, calc((100vw - 1724px) / 2));
  z-index: 2;
  width: 900px;
  margin: 0;
  color: #fff;
}

.hero h1 {
  margin: 0;
  font: var(--font-h1-xl);
  letter-spacing: -0.04em;
  color: #ffffff;
}

.hero p {
  width: 800px;
  margin: 24px 0;
  font: 400 16px/24px var(--inter);
  color: rgba(255, 255, 255, 0.95);
}

.hero .primary-button {
  width: 184px;
  height: 42px;
  color: var(--navy);
  background: #ffffff;
}

.hero .primary-button:hover {
  background: #e6eef5;
}

.primary-button {
  width: 184px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
}

/* Products Section */
.products {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(40px, 5vw, 64px);
  overflow: hidden;
}

.products h2 {
  color: var(--navy);
  font: var(--font-h1-l);
}

.product-row {
  position: relative;
  display: flex;
  gap: 16px;
  margin-top: 40px;
  padding: 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.product-card {
  flex: 0 0 clamp(240px, 22vw, 264px);
  scroll-snap-align: start;
  min-height: 348px;
  padding: 12px;
  background: #fff;
  border: 1px solid #f0f4f8;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card>div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 230px;
  background: #f7f7f7;
  overflow: hidden;
}

.product-card img {
  width: auto;
  height: auto;
  max-width: 190px;
  max-height: 190px;
  object-fit: contain;
  display: block;
}

.product-card h3 {
  margin: 12px 0;
  font: 600 15px/19px var(--mona);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card a {
  display: grid;
  place-items: center;
  min-height: 44px;
  color: #000;
  background: #f6f6f6;
  font: 600 14px/16.8px var(--mona);
  text-decoration: none;
  transition: background 0.2s ease;
}

.product-card a:hover {
  background: #eaeaea;
}

/* About Section */
.about {
  padding-top: clamp(64px, 8vw, 120px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.about-copy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 540px), 1fr));
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.intro-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 813 / 335;
  padding: 16px;
  border: 1px solid #b7d6ed;
  overflow: hidden;
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about h2 {
  width: 100%;
}

.about h2 em {
  color: #ec37bb;
  font-style: normal;
}

.about p {
  width: 100%;
  margin: 20px 0 32px;
  color: var(--navy);
  font: var(--font-body-l);
}

.about .primary-button {
  width: 140px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 180px;
  margin-top: clamp(48px, 6vw, 64px);
  background: #fafafa;
  border: 1px solid #edf2f7;
  padding: 24px 0;
}

.stats div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  text-align: center;
}

.stats div:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #e4e8ed;
}

.stats strong {
  color: var(--navy);
  font: 600 clamp(40px, 5vw, 58px) / 1.1 var(--mona);
}

.stats span {
  margin-top: 6px;
  padding: 0 8px;
  color: #000;
  font: var(--font-body-m);
}

.stats p {
  width: auto;
  margin: 8px 0 0;
  color: #3e4b5e;
  font: var(--font-body-s);
}

/* Catalogues Section */
.catalogues {
  position: relative;
  padding: clamp(64px, 8vw, 100px) 0;
  color: #fff;
  background: linear-gradient(180deg, #001426 0%, #001426 62%, #ffffff 62%, #ffffff 100%);
}

.catalogue-content {
  width: min(1316px, calc(100% - clamp(32px, 5vw, 96px)));
  margin: 0 auto;
  text-align: center;
}

.catalogues h2 {
  margin: 0;
  color: #fff;
  font: var(--font-h1-l);
}

.catalogues p {
  width: min(720px, 100%);
  margin: 16px auto 56px;
  color: #fff;
  font: var(--font-body-m);
  opacity: 0.95;
}

.catalogue-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 40px);
  text-align: left;
}

.catalogue-card-wrapper {
  position: relative;
  width: 100%;
}

.card-frame {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid #00568c;
  pointer-events: none;
  z-index: 1;
}

.catalogue-card {
  position: relative;
  z-index: 2;
  min-height: 440px;
  background: #002b48;
  padding: 24px 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-img-wrap {
  width: 100%;
  height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.card-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.35));
  transition: transform 0.3s ease;
}

.catalogue-card:hover .card-img-wrap img {
  transform: scale(1.03);
}

.catalogue-card h3 {
  margin: 0;
  color: #ffffff;
  font: var(--font-title-24);
  padding-top: 12px;
}

.explore-catalogues-btn {
  display: inline-grid;
  place-items: center;
  width: 210px;
  min-height: 44px;
  margin: 56px auto 0;
  background: #006bb9;
  color: #ffffff;
  font: 600 14px/16.8px var(--mona);
  text-decoration: none;
}

/* Transforming Vision / Projects Section */
.projects {
  position: relative;
  padding: 64px 0 96px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 470px, #001b31 470px, #001b31 100%);
}

.projects-container {
  width: min(1316px, calc(100% - clamp(32px, 5vw, 96px)));
  margin: 0 auto;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
}

.projects-header-left {
  max-width: 840px;
}

.projects-header-left h2 {
  margin: 0;
  color: #001b31;
  font: 700 clamp(32px, 4vw, 44px) / 1.15 var(--mona);
  letter-spacing: -1.5px;
}

.projects-header-left h2 .pink-text {
  color: #ed16bb;
}

.projects-header-left p {
  margin: 16px 0 32px;
  color: #4b5866;
  font: var(--font-body-m);
}

.featured-projects-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.featured-projects-divider span {
  color: #006bb9;
  font: 600 16px/20px var(--mona);
  white-space: nowrap;
}

.featured-projects-divider .divider-line {
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.projects-stat-card {
  width: 206px;
  padding: 24px 20px 20px;
  background: #f7f7f7;
  border-radius: 0;
  text-align: center;
}

.projects-stat-card strong {
  display: block;
  color: #001b31;
  font: 700 48px / 1 var(--mona);
  letter-spacing: -1px;
}

.stat-pill {
  display: inline-block;
  margin: 10px 0 8px;
  padding: 4px 14px;
  background: #ffffff;
  border: 0;
  color: #334155;
  font: var(--font-body-s);
}

.projects-stat-card p {
  margin: 0;
  color: #64748b;
  font: var(--font-body-s);
}

.projects-grid-area {
  position: relative;
}

.project-card-wrapper {
  position: relative;
  width: 100%;
}

.featured-wrapper {
  margin-bottom: 48px;
}

.project-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #002b48;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.featured-card {
  height: 606px;
}

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

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(0, 107, 185, 0.85);
  color: #ffffff;
  border: none;
  font: 400 24px/36px Arial, sans-serif;
  cursor: pointer;
  z-index: 5;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.slider-arrow:hover {
  background: #006bb9;
}

.prev-arrow {
  left: 16px;
}

.next-arrow {
  right: 16px;
}

.project-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px 24px;
  background: linear-gradient(0deg, rgba(0, 24, 46, 0.95) 0%, rgba(0, 24, 46, 0.75) 60%, transparent 100%);
  color: #ffffff;
  z-index: 3;
}

.project-progress {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 12px;
}

.project-progress span {
  cursor: pointer;
  transition: all 0.25s ease;
}

.progress-line.active {
  width: 24px;
  height: 3px;
  background: #ffffff;
}

.progress-dot {
  width: 8px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
}

.project-card-overlay h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font: 600 22px/28px var(--mona);
  letter-spacing: -0.5px;
}

.project-card-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font: 400 13px/19px var(--inter);
}

.projects-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3.5vw, 48px);
  margin-bottom: 50px;
}

.projects-sub-grid .project-card {
  height: 510px;
}

.projects-action-wrap {
  text-align: center;
  margin-top: 20px;
}

.explore-projects-btn {
  display: inline-grid;
  place-items: center;
  width: 190px;
  min-height: 42px;
  background: #006bb9;
  color: #ffffff;
  font: 600 14px/16.8px var(--mona);
  text-decoration: none;
}

/* Reviews Section */
.reviews {
  padding: clamp(64px, 8vw, 96px) 0;
  background: #f8f8f8;
  text-align: center;
}

.reviews .content-wide {
  width: min(1316px, calc(100% - clamp(32px, 5vw, 96px)));
}

.reviews h2,
.blog h2 {
  margin: 0;
  font: var(--font-h1-l);
}

.reviews h2 em,
.blog h2 em {
  color: #ec19bf;
  font-style: normal;
}

.section-lead {
  margin: 16px 0 clamp(40px, 5vw, 64px);
  color: #223a50;
  font: var(--font-body-l);
}

.review-row,
.blog-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
  text-align: left;
}

.review-row::-webkit-scrollbar,
.blog-row::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 clamp(300px, 32vw, 360px);
  min-height: 244px;
  padding: 24px;
  background: #fff;
  border: 1px solid #dbe5ed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-person {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 16px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #e4e9ed;
}

.review-person i {
  grid-row: 1 / 3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #d9d9d9;
}

.review-person b {
  align-self: end;
  font: 600 16px/19px var(--mona);
}

.review-person span {
  align-self: start;
  color: #ff961f;
  letter-spacing: 2px;
  font: 16px/20px Arial, sans-serif;
}

.review-meta {
  margin: 14px 0 10px;
  color: #151e2a;
  font: var(--font-caption);
}

.review-meta a,
.read-more {
  color: #3679ef;
  text-decoration: none;
}

.review-copy {
  margin: 0;
  color: #223a50;
  font: var(--font-body-m);
}

.read-more {
  display: inline-block;
  margin-top: 12px;
  font: var(--font-caption);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}

.slider-progress {
  position: relative;
  display: flex;
  width: 58px;
  height: 4px;
  background: #d4e1e9;
  border-radius: 2px;
  overflow: hidden;
}

.slider-progress::after {
  content: '';
  width: 10px;
  margin-left: 4px;
  background: #d4e1e9;
}

.slider-progress i {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 24px;
  background: #0072bd;
  transition: transform 0.25s ease, width 0.25s ease;
}

.slider-controls button {
  width: 44px;
  height: 44px;
  margin-left: 6px;
  border: 0;
  color: #3b5a70;
  background: #fff;
  cursor: pointer;
  font: 32px/44px Arial, sans-serif;
  display: inline-grid;
  place-items: center;
}

.slider-controls button:last-child {
  color: #fff;
  background: #006bb9;
}

/* Blog Section */
.blog {
  padding: clamp(64px, 8vw, 120px) 0;
  text-align: center;
}

.blog .section-lead {
  margin-bottom: 48px;
}

.blog-card {
  flex: 0 0 clamp(300px, 32vw, 360px);
}

.blog-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

.blog-image span {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 5px 10px;
  color: #34495e;
  background: #fff;
  font: var(--font-caption);
}

.blog-card time {
  display: block;
  margin-top: 16px;
  color: #607286;
  font: var(--font-caption);
}

.blog-card h3 {
  margin: 8px 0;
  font: var(--font-title-18);
}

.blog-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #607286;
  font: var(--font-body-s);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-controls {
  margin-top: 32px;
}

/* Solution CTA Section */
.solution {
  position: relative;
  height: 608px;
  padding: 0;
  overflow: hidden;
  color: var(--navy);
}

.solution>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 27, 49, 0) 42%, rgba(0, 27, 49, 0.78) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.58) 40%, rgba(255, 255, 255, 0.03) 78%);
}

.solution-content {
  position: relative;
  z-index: 2;
  width: min(1724px, calc(100% - clamp(32px, 5vw, 96px)));
  margin: 0 auto;
  padding-top: 130px;
}

.solution h2 {
  margin: 0;
  font: var(--font-h1-l);
}

.solution p {
  margin: 20px 0 0;
  font: var(--font-body-m);

}

.solution-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 16px;
  margin-top: 64px;
}

.solution-links a {
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  align-items: start;
  min-height: 128px;
  padding: 26px 24px;
  color: #304357;
  background: #fff;
  text-decoration: none;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solution-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.solution-links b {
  color: #0072bd;
  font: 22px/24px Arial, sans-serif;
}

.solution-links span {
  font: var(--font-body-s);
}

.solution-links strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font: 600 16px/20px var(--mona);
}

.solution-links i {
  color: #b7c9d8;
  font: 28px/26px Arial, sans-serif;
  font-style: normal;
}

/* Site Footer */
.site-footer {
  color: #dce8ef;
  background: #001b31;
  padding-top: 80px;
}

.footer-main {
  width: min(1724px, calc(100% - clamp(32px, 5vw, 96px)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr repeat(3, 1fr) 2.2fr;
  gap: clamp(24px, 4vw, 44px);
  padding-bottom: 64px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 26px;
  color: #fff;
  text-decoration: none;
  font: 400 43px/36px Georgia, serif;
  letter-spacing: -4px;
}

.footer-brand p,
.footer-main a {
  margin: 0;
  color: #dce8ef;
  text-decoration: none;
  font: var(--font-body-m, 400 14px/20px var(--inter));
}

.footer-main h3 {
  margin: 0 0 18px;
  color: #fff;
  font: 600 16px/20px var(--mona);
}

.footer-main>div:not(.footer-brand):not(.footer-contact)>a {
  display: block;
  margin-bottom: 14px;
}

.footer-main a:hover {
  color: #ffffff;
}

.footer-contact {
  padding-left: clamp(16px, 3vw, 44px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #0074c7;
  stroke: #0074c7;
  transition: color 0.2s ease, stroke 0.2s ease, transform 0.2s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  color: #ffffff;
  stroke: #ffffff;
  transform: translateY(-1px);
}

.footer-contact-item p {
  margin: 0;
  color: #dce8ef;
  font: var(--font-body-m, 400 14px/20px var(--inter));
}

.footer-contact-item a {
  color: #dce8ef;
  text-decoration: none;
  font: var(--font-body-m, 400 14px/20px var(--inter));
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-bottom {
  width: min(1724px, calc(100% - clamp(32px, 5vw, 96px)));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #dce8ef;
  font: var(--font-body-s, 400 13px/18px var(--inter));
}

.footer-bottom a {
  margin-left: 24px;
  color: #dce8ef;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* About Us page */
.desktop-nav a.active {
  color: #7dc6f1;
  font-weight: 600;
}

.about-shell {
  width: min(1316px, calc(100% - clamp(32px, 5vw, 96px)));
  margin: 0 auto;
}

.about-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  color: #fff;
}

.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 27, 49, .73), rgba(0, 27, 49, .13));
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero>div {
  position: absolute;
  z-index: 1;
  top: 230px;
  left: max(98px, calc((100vw - 1724px) / 2));
}

.about-hero p,
.eyebrow {
  color: #0072bd;
  font: 600 14px/20px var(--mona);
  letter-spacing: .05em;
}

.about-hero p {
  color: #fff;
  margin: 0 0 14px;
  font-weight: 400;
  letter-spacing: 0;
}

.about-hero h1 {
  font: 600 58px/1.15 var(--mona);
}

.about-hero em,
.about-intro h2 em,
.about-values h2 em {
  color: #ed16bb;
  font-style: normal;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  padding: 124px 0;
}

.about-intro-media {
  position: relative;
}

.about-intro-media img {
  width: 100%;
  height: 445px;
  object-fit: cover;
}

.about-intro-media span {
  position: absolute;
  right: -32px;
  bottom: -32px;
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  color: #fff;
  background: #006bb9;
  font: 600 46px/1 var(--mona);
}

.about-intro-media small {
  width: 90px;
  margin-top: 8px;
  font: 400 13px/18px var(--inter);
  text-align: center;
}

.about-intro h2,
.about-values h2 {
  margin: 10px 0 24px;
  font: 600 44px/1.18 var(--mona);
  letter-spacing: -.04em;
}

.about-intro p:not(.eyebrow),
.about-values header>p:last-child {
  margin: 0 0 16px;
  color: #354c61;
  font: var(--font-body-m);
}

.about-intro .primary-button {
  margin-top: 16px;
}

.about-stats {
  background: #f6f8fa;
}

.about-stats>div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-stats article {
  min-height: 198px;
  display: grid;
  justify-items: center;
  align-content: center;
  border-right: 1px solid #dce5ec;
}

.about-stats article:last-child {
  border: 0;
}

.about-stats strong {
  font: 600 58px/1 var(--mona);
}

.about-stats span {
  margin: 8px 0;
  padding: 4px 12px;
  background: #fff;
  font: var(--font-body-s);
}

.about-stats p {
  color: #64748b;
  font: var(--font-body-s);
}

.about-values {
  padding: 124px 0;
}

.about-values header {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 64px;
}

.about-values header>p:last-child {
  margin-bottom: 0;
}

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

.about-value-grid article {
  min-height: 258px;
  padding: 32px;
  border: 1px solid #c7dce9;
}

.about-value-grid b {
  color: #0072bd;
  font: 600 18px/1 var(--mona);
}

.about-value-grid h3 {
  margin: 48px 0 12px;
  font: var(--font-title-24);
}

.about-value-grid p {
  color: #52687b;
  font: var(--font-body-s);
}

.about-image-band {
  position: relative;
  height: 440px;
  overflow: hidden;
  color: #fff;
}

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

.about-image-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 27, 49, .42);
}

.about-image-band div {
  position: absolute;
  z-index: 1;
  left: max(98px, calc((100vw - 1724px) / 2));
  bottom: 80px;
  max-width: 640px;
}

.about-image-band .eyebrow {
  color: #7cc7ef;
  margin: 0 0 12px;
}

.about-image-band h2 {
  margin: 0;
  font: 600 44px/1.18 var(--mona);
}

/* About Page Section & Media Layout */
.about-figma h1,
.about-figma h2,
.about-figma h3,
.about-figma p {
  margin-top: 0;
}

.af-story {
  position: relative;
  height: auto;
  min-height: 800px;
  padding-top: clamp(100px, 12vw, 140px);
  padding-bottom: clamp(48px, 6vw, 96px);
  background: linear-gradient(180deg, #011b31 0%, #011b31 750px, #ffffff 750px, #ffffff 100%);
  color: #fff;
  overflow: hidden;
}

.af-story-decoration {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 80px;
  width: min(943px, 65vw);
  height: auto;
  pointer-events: none;
  opacity: 0.95;
}

.af-story-copy {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - clamp(32px, 5vw, 64px)));
  margin: 0 auto;
  text-align: center;
}

.af-story h1 {
  font: 600 clamp(32px, 5vw, 58px) / 1.2 var(--mona);
  letter-spacing: -0.04em;
}

.af-story-copy p {
  width: min(800px, 100%);
  margin: clamp(24px, 3.5vw, 40px) auto;
  font: 400 clamp(14px, 1.4vw, 16px) / 1.55 var(--inter);
  color: rgba(255, 255, 255, 0.92);
}

.af-story .primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 180px;
  height: 44px;
  padding: 0 28px;
  background: #006bba;
  font: 600 14px/1 var(--mona);
  color: #fff;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.af-story .primary-button:hover {
  background: #005696;
  transform: translateY(-1px);
}

.af-story figure {
  position: relative;
  z-index: 1;
  width: min(1312px, calc(100% - clamp(32px, 5vw, 64px)));
  aspect-ratio: 1312 / 692;
  height: auto;
  max-height: 692px;
  margin: clamp(32px, 5vw, 64px) auto 0;
  overflow: hidden;
  box-shadow: 0 14.576px 14.576px rgba(50, 50, 71, 0.05), 0 24.293px 29.152px rgba(50, 50, 71, 0.07);
}

.af-story figure>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.af-story figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.af-story figure button {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 64px);
  bottom: clamp(20px, 5vw, 64px);
  display: grid;
  place-items: center;
  width: clamp(50px, 5.5vw, 72px);
  height: clamp(48px, 5.5vw, 70px);
  padding: 12px;
  border: 0;
  border-radius: 64px;
  background: #f7f8fa;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.af-story figure button:hover {
  transform: scale(1.05);
  background: #ffffff;
}

.af-story figure button img {
  width: clamp(24px, 3vw, 38px);
  height: clamp(24px, 3vw, 38px);
}

.af-trusted {
  width: min(1312px, calc(100% - clamp(32px, 5vw, 64px)));
  height: auto;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 98px) 0 clamp(64px, 10vw, 124px);
}

.af-trusted-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.af-trusted-top h2,
.af-regional h2,
.af-mission h2,
.af-values h2,
.af-global h2 {
  font: 600 clamp(26px, 3.8vw, 44px) / 1.2 var(--mona);
  letter-spacing: -0.04em;
}

.af-trusted h2 em,
.af-regional h2 em,
.af-mission h2 em,
.af-values h2 em,
.af-global h2 em {
  font-style: normal;
  color: #ec008c;
}

.af-trusted-top p {
  margin-top: 16px;
  color: #31495f;
  font: 400 clamp(15px, 1.5vw, 18px) / 1.55 var(--inter);
}

.af-trusted-top figure {
  position: relative;
  margin: clamp(12px, 2vw, 20px) 0 0 clamp(12px, 2vw, 20px);
}

.af-trusted-top figure::before,
.af-regional figure::before,
.af-values figure::before {
  content: '';
  position: absolute;
  left: -20px;
  top: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid #0072bd;
  pointer-events: none;
}

.af-trusted-top img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 616 / 259;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.af-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: auto;
  min-height: 160px;
  margin-top: clamp(40px, 6vw, 64px);
  background: #fafafa;
  border: 1px solid #e4e8ed;
}

.af-stats article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3vw, 32px) 16px;
  text-align: center;
  border-right: 1px solid #e4e8ed;
}

.af-stats article:last-child {
  border-right: 0;
}

.af-stats strong {
  font: 600 clamp(36px, 4.5vw, 58px) / 1.1 var(--mona);
  color: var(--navy);
}

.af-stats span {
  margin: 8px auto;
  padding: 4px 12px;
  background: #ffffff;
  border: 1px solid #e8ecef;
  font: 400 clamp(13px, 1.2vw, 16px) / 1.4 var(--inter);
}

.af-stats p {
  margin: 0;
  color: #3e4b5e;
  font: 400 clamp(13px, 1.2vw, 16px) / 1.4 var(--inter);
}

.af-regional {
  height: auto;
  padding: clamp(25px, 8vw, 66px) clamp(16px, 5vw, 98px);
  background: linear-gradient(180deg, #001b31 0%, #001b31 727px, #ffffff 727px, #ffffff 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.af-regional>div {
  width: min(1724px, 100%);
  margin: 0 auto;
}

.af-regional p {
  width: min(800px, 100%);
  margin: 16px auto clamp(32px, 5vw, 64px);
  font: 400 clamp(15px, 1.5vw, 18px) / 1.55 var(--inter);
  color: rgba(255, 255, 255, 0.9);
}

.af-regional figure {
  position: relative;
  width: min(1708px, calc(100% - clamp(32px, 4vw, 40px)));
  aspect-ratio: 1708 / 611;
  height: auto;
  max-height: 611px;
  margin: clamp(16px, 2vw, 20px) auto 0;
  text-align: left;
}

.af-regional img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.af-mission {
  height: auto;
  width: min(1724px, calc(100% - clamp(32px, 5vw, 64px)));
  margin: 0 auto;
  padding: clamp(27px, 8vw, 60px) 0;
}

.af-mission-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 32px);
  width: 100%;
  height: auto;
  margin: 0 auto;
  align-items: stretch;
}

.af-mission-top article {
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.af-mission-top article h2 {
  margin-bottom: 16px;
}

.af-mission p {
  margin-top: 16px;
  color: #475569;
  font: 400 clamp(14px, 1.2vw, 15px) / 1.6 var(--inter);
}

.af-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 56px);
  width: 100%;
  margin: clamp(48px, 6vw, 64px) auto 0;
  align-items: start;
}

.af-values figure {
  position: relative;
  margin: clamp(12px, 2vw, 20px) 0 0 clamp(12px, 2vw, 20px);
}

.af-values img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  max-height: 457px;
  object-fit: cover;
  display: block;
}

.af-values h3 {
  margin: 12px 0 24px;
  font: 700 clamp(15px, 1.4vw, 17px) / 1.4 var(--mona);
  color: #0f172a;
}

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

.af-value-grid article {
  min-height: 140px;
  padding: clamp(20px, 2vw, 24px) clamp(16px, 1.5vw, 20px);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
}

.af-value-grid article:last-child {
  grid-column: 1 / -1;
  min-height: auto;
}

.af-value-grid b {
  font: 700 16px / 1.3 var(--mona);
  color: #0f172a;
  display: block;
  margin-bottom: 12px;
}

.af-value-grid p {
  margin: 0;
  color: #64748b;
  font: 400 13.5px / 1.55 var(--inter);
}

.af-global {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 540px), 1fr));
  gap: clamp(32px, 5vw, 64px);
  width: min(1724px, calc(100% - clamp(32px, 5vw, 64px)));
  height: auto;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 124px) 0;
  overflow: hidden;
  align-items: start;
}

.af-global-decoration {
  position: absolute;
  z-index: 0;
  right: -20px;
  top: -20px;
  width: min(590px, 50vw);
  height: auto;
  pointer-events: none;
  opacity: 0.5;
}

.af-global::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -115px;
  width: min(590px, 50vw);
  height: min(590px, 50vw);
  border-radius: 50%;
  border: 1px dotted #6ca0bf;
  opacity: 0.5;
  pointer-events: none;
}

.af-global p {
  margin-top: 16px;
  color: #31495f;
  font: 400 clamp(14px, 1.4vw, 16px) / 1.65 var(--inter);
}

.af-countries {
  position: relative;
  z-index: 1;
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: clamp(10px, 1.5vw, 16px);
}

.af-countries span {
  height: auto;
  min-height: 48px;
  padding: 14px 20px;
  background: #fafafa;
  border: 1px solid #edf1f5;
  font: 400 clamp(13px, 1.2vw, 14px) / 20px var(--inter);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Responsive Breakpoint Rules (Mobile First & Content Driven)
   ========================================================================== */

@media (max-width: 1024px) {
  .site-header {
    height: 72px;
  }

  .hero {
    height: min(820px, 100svh);
    padding-top: 72px;
  }

  .hero-copy {
    top: auto;
    bottom: 64px;
    left: clamp(24px, 5vw, 48px);
    width: calc(100% - clamp(48px, 10vw, 96px));
  }

  .hero p {
    width: min(800px, 100%);
  }

  .desktop-nav,
  .desktop-contact-btn {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .projects-header {
    flex-direction: column;
  }

  .projects-stat-card {
    width: 100%;
  }

  .catalogues {
    background: #001426;
  }

  .catalogues p {
    color: #ffffff;
  }

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

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 28px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-contact {
    grid-column: span 2;
    padding-left: 0;
    border-left: none;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 768px) {
  .hero h1 br {
    display: none;
  }

  .about-hero {
    height: 380px;
  }

  .about-hero>div {
    top: 170px;
    left: 24px;
  }

  .about-hero h1 {
    font-size: 40px;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 72px 0;
  }

  .about-intro-media img {
    height: 330px;
  }

  .about-intro-media span {
    right: 12px;
    bottom: -22px;
    width: 120px;
    height: 120px;
    font-size: 34px;
  }

  .about-stats>div,
  .about-value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats article {
    min-height: 150px;
  }

  .about-values {
    padding: 72px 0;
  }

  .about-image-band {
    height: 360px;
  }

  .about-image-band div {
    left: 24px;
    bottom: 48px;
  }

  .about-image-band h2 {
    font-size: 32px;
  }

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

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

  .stats div:nth-child(3)::before {
    display: none;
  }

  .projects-sub-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-row {
    grid-template-columns: 1fr;
  }

  .solution {
    height: auto;
    padding: 64px 0;
  }

  .solution-content {
    padding-top: 0;
  }

  .solution-links {
    margin-top: 40px;
  }

  .solution-shade {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.8) 100%);
  }

  .site-footer {
    padding-top: 56px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
    padding-bottom: 44px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 0;
  }

  .footer-bottom a {
    margin-left: 0;
    margin-right: 20px;
  }
}

/* ==========================================================================
   About Us Page Responsive Breakpoint Rules (320px to 2560px)
   ========================================================================== */

/* 1. Large Displays (1441px - 2560px) */
@media (min-width: 1441px) {
  .af-story-copy {
    max-width: 1200px;
  }

  .af-trusted,
  .af-regional>div,
  .af-mission,
  .af-global {
    max-width: 1724px;
  }
}

/* 2. Tablet & Mid-Size Screens (max-width: 1024px) */
@media (max-width: 1024px) {
  .af-story {
    background: linear-gradient(180deg, #011b31 0%, #011b31 75%, #ffffff 75%, #ffffff 100%);
  }

  .af-regional {
    background: linear-gradient(180deg, #001b31 0%, #001b31 65%, #ffffff 65%, #ffffff 100%);
  }

  .af-trusted-top,
  .af-values,
  .af-global {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .af-stats article:nth-child(2) {
    border-right: 0;
  }

  .af-stats article:nth-child(1),
  .af-stats article:nth-child(2) {
    border-bottom: 1px solid #e4e8ed;
  }

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

  .af-value-grid article:last-child {
    grid-column: 1 / -1;
  }
}

/* 3. Small Tablets & Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .af-story {
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .af-story figure {
    aspect-ratio: 16 / 10;
    margin-top: 36px;
  }

  .af-mission-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .af-mission-top::before {
    display: none;
  }

  .af-mission-top article {
    grid-column: 1 !important;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
  }

  .af-trusted-top figure::before,
  .af-regional figure::before,
  .af-values figure::before {
    left: -12px;
    top: -12px;
  }

  .af-trusted-top figure,
  .af-regional figure,
  .af-values figure {
    margin-left: 12px;
    margin-top: 12px;
  }
}

/* 4. Small Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
  .af-story {
    padding-top: 90px;
    padding-bottom: 32px;
  }

  .af-story h1 {
    font-size: 30px;
    line-height: 38px;
  }

  .af-story-copy p {
    font-size: 14px;
    line-height: 22px;
  }

  .af-story figure button {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    padding: 8px;
  }

  .af-trusted-top figure::before,
  .af-regional figure::before,
  .af-values figure::before {
    left: -8px;
    top: -8px;
  }

  .af-trusted-top figure,
  .af-regional figure,
  .af-values figure {
    margin-left: 8px;
    margin-top: 8px;
  }

  .af-stats {
    grid-template-columns: 1fr;
  }

  .af-stats article {
    border-right: 0 !important;
    border-bottom: 1px solid #e4e8ed;
    padding: 20px 12px;
  }

  .af-stats article:last-child {
    border-bottom: 0;
  }

  .af-value-grid {
    grid-template-columns: 1fr;
  }

  .af-value-grid article:last-child {
    grid-column: 1;
  }

  .af-countries {
    gap: 8px;
  }

  .af-countries span {
    padding: 8px 14px;
    min-height: 40px;
    font-size: 13px;
  }
}

/* Product Listing Directory & Filter Layout */
.product-listing-page {
  background: #f7f7f7;
  color: #071a2c;
}

.product-listing-shell {
  width: min(1724px, calc(100% - 96px));
  margin-inline: auto;
}

.product-listing-page .nav-shell,
.product-listing-page .footer-main,
.product-listing-page .footer-bottom {
  width: min(1724px, calc(100% - 96px));
  margin-inline: auto;
}

.product-listing-hero {
  position: relative;
  height: 436px;
  overflow: hidden;
  background: #011b31;
  color: #fff;
}

.product-listing-watermark {
  position: absolute;
  right: 0;
  bottom: -12px;
  width: 445px;
  height: 332px;
  opacity: .8;
  pointer-events: none;
}

.product-listing-hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 167px;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #90a4b5;
  font: 400 12px/18px var(--inter);
}

.product-breadcrumb a {
  color: #90a4b5;
}

.product-listing-hero h1 {
  margin: 24px 0 0;
  color: #fff;
  font: 600 56px/1.08 var(--mona);
  letter-spacing: -2.4px;
}

.product-listing-intro {
  max-width: 780px;
  margin-top: 22px;
  color: #fff;
  font: 400 14px/20px var(--inter);
}

.product-listing-main {
  min-height: 1260px;
  padding: 32px 0 64px;
  background: #f7f7f7;
}

.product-listing-layout {
  display: grid;
  grid-template-columns: 316px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.product-filter-mobile-toggle {
  display: none;
}

.product-list-filter {
  position: relative;
  min-height: 800px;
  padding: 18px 16px 56px;
  background: #fff;
}

.product-list-filter h2 {
  margin: 0 0 14px;
  color: #101b25;
  font: 600 16px/20px var(--mona);
}

.product-filter-group {
  border-bottom: 1px solid #dfe4e8;
}

.product-filter-heading {
  width: 100%;
  min-height: 43px;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  color: #182632;
  cursor: pointer;
  font: 400 13px/18px var(--inter);
  text-align: left;
}

.product-filter-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-filter-heading img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(38%) sepia(94%) saturate(1098%) hue-rotate(169deg) brightness(91%) contrast(101%);
}

.product-filter-heading i {
  color: #536575;
  font: 400 16px/1 Arial, sans-serif;
  font-style: normal;
}

.product-filter-options {
  display: none;
  padding: 0 0 13px;
}

.product-filter-group.is-open .product-filter-options {
  display: grid;
  gap: 8px;
}

.product-filter-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5e6b76;
  cursor: pointer;
  font: 400 12px/15px var(--inter);
}

.product-filter-options input {
  appearance: none;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin: 0;
  border: 1px solid #a8b4bd;
  border-radius: 0;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.product-filter-options input:checked {
  border-color: #0875c1;
  background: #0875c1;
}

.product-filter-options input:checked::after {
  content: '✓';
  color: #fff;
  font: 700 11px/1 Arial, sans-serif;
}

.product-filter-clear {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  height: 39px;
  border: 0;
  background: #f7f7f7;
  color: #0a1722;
  cursor: pointer;
  font: 500 13px/18px var(--mona);
}

.product-filter-clear:hover {
  background: #eaf2f7;
}

.product-list-toolbar {
  min-height: 40px;
  margin: 0 0 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.product-list-toolbar strong {
  color: #111b24;
  font: 600 14px/20px var(--mona);
}

.product-list-search {
  position: relative;
  display: block;
  width: 300px;
}

.product-list-search::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 1.5px solid #50606d;
  border-radius: 50%;
  transform: translateY(-58%);
  pointer-events: none;
}

.product-list-search::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 21px;
  width: 5px;
  height: 1.5px;
  background: #50606d;
  transform: rotate(45deg);
  pointer-events: none;
}

.product-list-search input {
  width: 100%;
  height: 38px;
  padding: 0 14px 0 38px;
  border: 1px solid #d0d7de;
  border-radius: 0;
  outline: 0;
  background: #fff;
  color: #14202b;
  font: 400 12px/18px var(--inter);
}

.product-list-search input::placeholder {
  color: #667785;
}

.product-list-search input:focus {
  border-color: #0875c1;
  box-shadow: 0 0 0 1px #0875c1;
}

.product-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 16px;
}

.product-list-card {
  min-width: 0;
  text-align: center;
}

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

.product-list-media {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 24px;
  overflow: hidden;
  background: #fff;
}

.product-list-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-list-card h3 {
  min-height: 38px;
  margin: 4px 0 0;
  padding: 10px 8px 6px;
  overflow: hidden;
  background: #fff;
  color: #070e14;
  white-space: nowrap;
  text-overflow: ellipsis;
  font: 600 13px/18px var(--mona);
  letter-spacing: -.25px;
}

.product-list-card>button {
  width: 100%;
  min-height: 44px;
  margin-top: 4px;
  padding: 8px;
  border: 0;
  background: #fff;
  color: #090f14;
  cursor: pointer;
  font: 500 13px/18px var(--mona);
}

.product-list-card>button:hover,
.product-list-card>button:focus-visible {
  background: #0875c1;
  color: #fff;
  outline: 0;
}

.product-list-empty {
  padding: 80px 20px;
  text-align: center;
  color: #617181;
}

.product-listing-page .site-footer {
  padding-top: 58px;
}

.product-listing-page .footer-main {
  padding-bottom: 48px;
}

@media (min-width: 1201px) {

  .product-listing-shell,
  .product-listing-page .nav-shell,
  .product-listing-page .footer-main,
  .product-listing-page .footer-bottom {
    width: min(1724px, calc(100% - 196px));
    margin-inline: auto;
  }
}

@media (max-width: 1200px) {
  .product-listing-layout {
    grid-template-columns: 280px minmax(0, 1fr);
  }

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

@media (max-width: 820px) {
  .product-listing-shell {
    width: calc(100% - 32px);
    margin-inline: auto;
  }

  .product-listing-hero {
    height: 360px;
  }

  .product-listing-hero-copy {
    padding-top: 132px;
  }

  .product-listing-hero h1 {
    font-size: 42px;
  }

  .product-listing-intro br {
    display: none;
  }

  .product-listing-main {
    min-height: 0;
    padding: 24px 0 64px;
  }

  .product-listing-layout {
    display: block;
  }

  .product-filter-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 46px;
    margin-bottom: 12px;
    padding: 0 16px;
    border: 1px solid #d0d7de;
    background: #fff;
    color: #101b25;
    font: 600 14px/20px var(--mona);
  }

  .product-filter-mobile-toggle::after {
    content: '⌄';
  }

  .product-list-filter {
    display: none;
    min-height: 0;
    margin-bottom: 20px;
    padding-bottom: 72px;
  }

  .product-list-filter.is-mobile-open {
    display: block;
  }

  .product-filter-clear {
    bottom: 16px;
  }
}

@media (max-width: 560px) {
  .product-listing-hero {
    height: auto;
    min-height: auto;
    padding-bottom: 40px;
  }

  .product-listing-watermark {
    right: -50px;
    bottom: -10px;
    width: 250px;
    height: auto;
    opacity: 0.12;
  }

  .product-listing-hero-copy {
    padding-top: 92px;
  }

  .product-breadcrumb {
    font-size: 11px;
  }

  .product-listing-hero h1 {
    margin-top: 14px;
    font-size: 36px;
    letter-spacing: -1.3px;
    line-height: 1.12;
  }

  .product-listing-intro {
    margin-top: 14px;
    font-size: 14px;
    line-height: 22px;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.95);
  }

  .product-list-toolbar {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 16px;
  }

  .product-list-search {
    width: 100%;
  }

  .product-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 8px;
    margin-inline: 0;
  }

  .product-list-media {
    padding: 12px;
  }

  .product-list-card h3 {
    min-height: 38px;
    padding: 8px 4px 5px;
    font-size: 12px;
    line-height: 15px;
  }

  .product-list-card>button {
    min-height: 44px;
    font-size: 12px;
  }
}

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

.blog-page {
  background: #fff;
  color: #011b31;
}

.blog-page-shell {
  width: min(1724px, calc(100vw - 196px));
  margin-inline: auto;
}

.blog-page-hero {
  position: relative;
  height: 324px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #011b31;
  color: #fff;
}

.blog-page-hero .blog-page-shell {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

.blog-page-hero h1 {
  margin: 0;
  color: #fff;
  font: 600 56px/1.08 var(--mona);
  letter-spacing: -2.4px;
}

.blog-page-hero p {
  max-width: 720px;
  margin-top: 18px;
  color: #fff;
  font: 400 14px/21px var(--inter);
}

.blog-hero-watermark {
  position: absolute;
  right: 0;
  bottom: -68px;
  width: 445px;
  height: 332px;
  opacity: .78;
  pointer-events: none;
}

.blog-directory {
  position: relative;
  padding: 120px 0 140px;
  background: #fff;
  overflow: hidden;
}

.blog-directory::after {
  content: '';
  position: absolute;
  z-index: 0;
  left: -112px;
  bottom: 0;
  width: 495px;
  height: 495px;
  background: url('../images/products-hero-watermark.svg') center/contain no-repeat;
  opacity: .055;
  transform: rotate(18deg);
  pointer-events: none;
}

.blog-directory-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.blog-filter-panel {
  position: sticky;
  top: 112px;
}

.blog-filter-panel h2 {
  margin: 0;
  color: #154bb5;
  font: 600 48px/1.04 var(--mona);
  letter-spacing: -2px;
}

.blog-filter-panel>p {
  width: 355px;
  margin-top: 22px;
  color: #101c28;
  font: 400 14px/20px var(--inter);
}

.blog-quick-tags {
  width: 400px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid #d9dfe5;
  background: #fff;
}

.blog-quick-tags strong {
  display: block;
  margin-bottom: 10px;
  color: #111b24;
  font: 600 14px/18px var(--mona);
}

.blog-quick-tags div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.blog-quick-tags button {
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid #cbd2d9;
  border-radius: 999px;
  background: #fff;
  color: #14202b;
  cursor: pointer;
  font: 400 13px/18px var(--inter);
  transition: color .2s, background-color .2s, border-color .2s;
}

.blog-quick-tags button:hover,
.blog-quick-tags button.is-active {
  border-color: #154bb5;
  background: #154bb5;
  color: #fff;
}

.blog-results-toolbar {
  min-height: 42px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.blog-results-toolbar>strong {
  color: #101820;
  font: 600 14px/20px var(--mona);
}

.blog-search {
  position: relative;
  display: block;
  width: 300px;
}

.blog-search::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 1.5px solid #50606d;
  border-radius: 50%;
  transform: translateY(-55%);
  pointer-events: none;
}

.blog-search::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 21px;
  width: 5px;
  height: 1.5px;
  background: #50606d;
  transform: rotate(45deg);
  pointer-events: none;
}

.blog-search input {
  width: 100%;
  height: 39px;
  padding: 0 14px 0 38px;
  border: 1px solid #d0d7de;
  border-radius: 0;
  outline: 0;
  background: #fff;
  color: #14202b;
  font: 400 13px/20px var(--inter);
}

.blog-search input::placeholder {
  color: #667785;
}

.blog-search input:focus {
  border-color: #154bb5;
  box-shadow: 0 0 0 1px #154bb5;
}

.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 52px;
}

.blog-list-card {
  min-width: 0;
}

.blog-list-card[hidden] {
  display: none;
}

.blog-list-image {
  position: relative;
  width: 100%;
  aspect-ratio: 636 / 356;
  overflow: hidden;
  background: #e8edf1;
}

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

.blog-list-image span {
  position: absolute;
  top: 8px;
  right: 8px;
  min-width: 40px;
  padding: 5px 8px;
  background: #fff;
  color: #344657;
  text-align: center;
  font: 400 12px/14px var(--inter);
}

.blog-list-card time {
  display: block;
  margin-top: 14px;
  color: #536272;
  font: 400 12px/17px var(--inter);
}

.blog-list-card h3 {
  margin: 5px 0 7px;
  color: #071523;
  font: 600 16px/21px var(--mona);
  letter-spacing: -.35px;
}

.blog-list-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #536272;
  font: 400 13px/18px var(--inter);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-empty {
  padding: 72px 20px;
  text-align: center;
  color: #536272;
}

@media (min-width: 1201px) {

  .blog-page .blog-page-shell,
  .blog-page .nav-shell,
  .blog-page .footer-main,
  .blog-page .footer-bottom {
    width: min(1724px, calc(100vw - 196px));
    margin-left: max(98px, calc((100vw - 1724px) / 2));
    margin-right: 0;
  }
}

@media (max-width: 1200px) {
  .blog-page-shell {
    width: calc(100% - 80px);
  }

  .blog-directory-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 30px;
  }

  .blog-filter-panel h2 {
    font-size: 40px;
  }

  .blog-filter-panel>p,
  .blog-quick-tags {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .blog-page-shell {
    width: calc(100% - 48px);
  }

  .blog-page-hero {
    height: 292px;
  }

  .blog-page-hero h1 {
    font-size: 48px;
  }

  .blog-directory {
    padding: 72px 0 80px;
  }

  .blog-directory-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .blog-filter-panel {
    position: static;
  }

  .blog-filter-panel>p {
    max-width: 430px;
  }

  .blog-quick-tags {
    max-width: 600px;
  }
}

@media (max-width: 640px) {
  .blog-page-shell {
    width: calc(100% - 32px);
  }

  .blog-page-hero {
    height: auto;
    min-height: auto;
    padding-bottom: 40px;
  }

  .blog-page-hero .blog-page-shell {
    padding-top: 92px;
  }

  .blog-page-hero h1 {
    font-size: 38px;
    letter-spacing: -1.3px;
    line-height: 1.12;
  }

  .blog-page-hero p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 22px;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.95);
  }

  .blog-page-hero p br {
    display: none;
  }

  .blog-hero-watermark {
    right: -50px;
    bottom: -10px;
    width: 260px;
    height: auto;
    opacity: 0.12;
  }

  .blog-directory {
    padding: 48px 0 64px;
  }

  .blog-directory::after {
    width: 300px;
    height: 300px;
  }

  .blog-filter-panel h2 {
    font-size: 32px;
    letter-spacing: -1.2px;
  }

  .blog-filter-panel>p {
    margin-top: 14px;
  }

  .blog-results-toolbar {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 20px;
  }

  .blog-search {
    width: 100%;
  }

  .blog-page-grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .blog-list-card h3 {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats div::before {
    display: none !important;
  }

  .card-frame {
    top: -8px;
    left: -8px;
  }

  .solution-links a {
    grid-template-columns: 32px 1fr 20px;
    padding: 14px 12px;
  }
}

/* Support Safe Area Insets for Modern Mobile Views */
@supports (padding: env(safe-area-inset-left)) {

  .nav-shell,
  .section,
  .content-wide,
  .solution-content,
  .projects-container {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

/* Accessibility: Respect Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

/* Product Catalogue & Category Navigation Layout */
.products-page {
  background: #fff;
  color: #011b31;
}

.products-shell {
  width: min(1316px, calc(100% - 80px));
  margin-inline: auto;
}

.products-hero {
  position: relative;
  height: 466px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #011b31;
}

.products-hero-watermark {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 445px;
  height: 332px;
  pointer-events: none;
}

.products-hero .products-shell {
  position: relative;
  z-index: 1;
  padding-top: 46px;
}

.products-hero h1 {
  margin: 0;
  color: #fff;
  font: 600 56px/1.08 var(--mona, 'Mona Sans', sans-serif);
  letter-spacing: -2.5px;
}

.products-hero p {
  max-width: 610px;
  margin: 18px 0 0;
  color: #fff;
  font: 400 16px/24px var(--inter, 'Inter', sans-serif);
}

.products-category-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #0074c7;
}

.products-category-nav a {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, .24);
  color: #fff;
  font: 600 18px/1.2 var(--mona, 'Mona Sans', sans-serif);
  text-decoration: none;
}

.products-category-nav i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  background: rgba(255, 255, 255, .14);
  font-style: normal;
}

.products-category-nav img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.products-category-nav b {
  margin-right: auto;
  margin-left: 12px;
  font: inherit;
}

.products-category-nav a:last-child {
  border-right: 0;
}

.products-category-nav span,
.product-section-head span,
.product-filter-row span {
  font-size: 20px;
  font-weight: 400;
}

.product-featured {
  padding-top: 92px;
  padding-bottom: 100px;
}

.product-list-section {
  padding-top: 92px;
  padding-bottom: 96px;
  border-top: 1px solid #d8e2ea;
}

.product-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.product-section-head h2 {
  margin: 0;
  color: #011b31;
  font: 600 42px/1.12 var(--mona, 'Mona Sans', sans-serif);
  letter-spacing: -1.8px;
}

.product-section-head em {
  color: #ec00c7;
  font-style: normal;
}

.product-section-head a {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #006bba;
  font: 600 15px/1.2 var(--mona, 'Mona Sans', sans-serif);
  text-decoration: none;
}

.product-filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: -8px 0 36px;
}

.product-filter-row a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 39px;
  padding: 9px 16px;
  border: 1px solid #c9d7e3;
  color: #476078;
  font: 500 14px/1.2 var(--mona, 'Mona Sans', sans-serif);
  text-decoration: none;
}

.product-filter-row a.is-selected {
  border-color: #0074c7;
  background: #0074c7;
  color: #fff;
}

.product-filter-row a:last-child {
  margin-left: auto;
  color: #006bba;
  border-color: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-catalog-card {
  min-width: 0;
  border: 1px solid #d5e0e8;
  background: #fff;
}

.product-image {
  height: 245px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  background: #fbfcfd;
}

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

.product-image.product-grass {
  padding: 0;
}

.product-image.product-grass img {
  object-fit: cover;
}

.product-catalog-card h3 {
  margin: 18px 18px 5px;
  color: #011b31;
  font: 600 16px/1.35 var(--mona, 'Mona Sans', sans-serif);
}

.product-catalog-card p {
  margin: 0 18px 20px;
  color: #596d80;
  font: 400 13px/1.35 var(--mona, 'Mona Sans', sans-serif);
}

.product-catalog-card:hover {
  border-color: #0074c7;
}

/* Product Showcase Carousel Controls */
.products-page {
  background: #f7f8fa;
}

.products-shell {
  width: calc(100% - 196px);
  max-width: 1724px;
}

.product-featured,
.product-list-section {
  background: #f7f8fa;
}

.product-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.product-slider-viewport {
  width: 100%;
  overflow: hidden;
}

.product-slider .product-grid {
  display: flex;
  gap: 8px;
  width: max-content;
  transition: transform .34s ease;
  will-change: transform;
}

.product-slider .product-catalog-card {
  flex: 0 0 var(--product-card-width, calc((100vw - 220px) / 4));
  width: var(--product-card-width, calc((100vw - 220px) / 4));
  max-width: 425px;
  min-width: 0;
  padding: 8px;
  border: 0;
  background: transparent;
}

.product-slider .product-image {
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 24px;
  background: #fff;
}

.product-slider .product-catalog-card h3 {
  width: 100%;
  margin: 0;
  text-align: center;
  color: #000;
  font: 600 16px/normal var(--mona, 'Mona Sans', sans-serif);
}

.product-slider .product-catalog-card p {
  display: none;
}

.product-card-enquire {
  width: 100%;
  min-height: 41px;
  border: 0;
  background: #fff;
  color: #000;
  font: 600 14px/normal var(--mona, 'Mona Sans', sans-serif);
  cursor: pointer;
}

.product-card-enquire:hover,
.product-card-enquire:focus-visible {
  background: #006bba;
  color: #fff;
  outline: 0;
}

.product-slider-controls {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 10px;
  height: 38px;
  margin-top: 24px;
}

.product-slider-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: opacity .2s, background-color .2s;
}

.product-slider-arrow img {
  width: 15.8904px;
  height: 7.88104px;
  transform: rotate(90deg);
}

.product-slider-arrow--prev {
  background: #fff;
}

.product-slider-arrow--next {
  background: #0060af;
}

.product-slider-arrow--next img {
  transform: rotate(-90deg);
}

.product-slider-arrow:hover {
  background: #004f91;
}

.product-slider-arrow:focus-visible {
  outline: 2px solid #006bba;
  outline-offset: 2px;
}

.product-slider-arrow.is-disabled {
  cursor: default;
  opacity: .45;
}

.product-slider-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.product-slider-dot {
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-slider-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 4px;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  background: rgba(0, 107, 186, .32);
  transition: width .2s, background-color .2s;
}

.product-slider-dot.is-active::after {
  width: 24px;
  background: #006bba;
}

.product-slider-dot:hover::after,
.product-slider-dot:focus-visible::after {
  background: #006bba;
}

@media (max-width: 1024px) {
  .products-shell {
    width: calc(100% - 48px);
    max-width: 976px;
  }

  .products-hero {
    height: auto;
    min-height: 340px;
    padding: 100px 0 48px;
  }

  .products-hero .products-shell {
    padding-top: 0;
  }

  .products-hero h1 {
    font-size: 48px;
  }

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

  .products-category-nav a:nth-child(2) {
    border-right: 0;
  }

  .products-category-nav a:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .24);
  }

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

  .product-slider .product-catalog-card {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .products-shell {
    width: calc(100% - 32px);
    max-width: none;
  }

  .products-hero {
    height: auto;
    min-height: auto;
    padding: 92px 0 40px;
    align-items: flex-start;
  }

  .products-hero .products-shell {
    padding-top: 0;
  }

  .products-hero h1 {
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -1.5px;
  }

  .products-hero p {
    max-width: 100%;
    margin-top: 14px;
    font-size: 14px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.95);
  }

  .products-hero-watermark {
    right: -24px;
    bottom: -10px;
    width: 260px;
    height: auto;
    opacity: 0.12;
  }

  .products-category-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    padding: 46px 12px 12px;
    background: #fff;
    position: relative;
  }

  .products-category-nav::before {
    content: 'Categories';
    position: absolute;
    top: 14px;
    left: 12px;
    color: #011b31;
    font: 600 16px/20px var(--mona, 'Mona Sans', sans-serif);
  }

  .products-category-nav a {
    min-height: 38px;
    padding: 4px 8px;
    border: 0;
    background: #006bba;
    font-size: 12px;
    line-height: 12px;
  }

  .products-category-nav i {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .16);
  }

  .products-category-nav img {
    width: 18px;
    height: 18px;
  }

  .products-category-nav b {
    margin-left: 7px;
    letter-spacing: -.25px;
  }

  .products-category-nav span {
    display: none;
  }

  .product-featured,
  .product-list-section {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .product-section-head {
    margin-bottom: 24px;
  }

  .product-section-head h2 {
    font-size: 18px;
    letter-spacing: -.65px;
  }

  .product-section-head a {
    min-height: 36px;
    padding: 0 12px;
    background: #fff;
    color: #011b31;
    font-size: 12px;
  }

  .product-filter-row {
    gap: 8px;
    margin-bottom: 24px;
  }

  .product-filter-row a {
    min-height: 35px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .product-filter-row a:last-child {
    margin-left: 0;
  }

  .product-grid {
    gap: 12px;
  }

  .product-image {
    height: 164px;
    padding: 12px;
  }

  .product-catalog-card h3 {
    margin: 12px 12px 4px;
    font-size: 13px;
  }

  .product-catalog-card p {
    margin: 0 12px 13px;
    font-size: 11px;
  }

  .product-slider .product-grid {
    gap: 8px;
  }

  .product-slider .product-catalog-card {
    flex-basis: 125px;
    width: 125px;
    padding: 4px;
  }

  .product-slider .product-image {
    padding: 12px;
  }

  .product-slider .product-catalog-card h3 {
    min-height: 36px;
    margin: 0;
    font-size: 12px;
    line-height: 14px;
  }

  .product-card-enquire {
    min-height: 44px;
    font-size: 12px;
  }

  .product-slider-controls {
    margin-top: 12px;
  }

  .product-slider-arrow {
    display: none;
  }

  .product-slider-controls {
    grid-template-columns: 1fr;
  }
}

/* Projects Directory & Filter Layout */
.projects-page {
  background: #fff;
  color: #011b31;
}

.projects-page .site-footer {
  min-height: 370px;
  padding-top: 64px;
}

.projects-page .footer-main {
  padding-bottom: 40px;
}

.projects-page .footer-bottom {
  padding-block: 24px;
}

.projects-page-shell {
  width: min(1724px, calc(100vw - 196px));
  margin-inline: auto;
}

.projects-page-hero {
  position: relative;
  height: 442px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #011b31;
  color: #fff;
}

.projects-page-hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

.projects-page-hero h1 {
  margin: 0;
  color: #fff;
  font: 600 56px/1.08 var(--mona);
  letter-spacing: -2.4px;
}

.projects-page-hero p {
  max-width: 850px;
  margin-top: 18px;
  color: #fff;
  font: 400 14px/21px var(--inter);
}

.projects-page-watermark {
  position: absolute;
  right: -1px;
  bottom: -68px;
  width: 445px;
  height: 332px;
  opacity: .8;
  pointer-events: none;
}

.projects-directory {
  position: relative;
  padding: 124px 0;
  overflow: hidden;
  background: #fff;
}

.projects-directory::after {
  content: '';
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  width: 943px;
  height: 703.54px;
  background: url('../images/products-hero-watermark.svg') center/100% 100% no-repeat;
  opacity: .08;
  pointer-events: none;
}

.projects-directory-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 400px 1286px;
  gap: 38px;
  align-items: start;
}

.projects-filter-panel {
  position: sticky;
  top: 110px;
}

.projects-filter-panel h2 {
  width: 390px;
  margin: 0;
  color: #101c28;
  font: 400 16px/22px var(--inter);
  letter-spacing: 0;
}

.projects-filter-panel h2 span {
  display: block;
  margin-bottom: 11px;
  color: #154bb5;
  font: 600 48px/1.04 var(--mona);
  letter-spacing: -2px;
}

.projects-quick-filter {
  width: 400px;
  margin-top: 26px;
  padding: 16px;
  border: 1px solid #d7dfe5;
  background: #fff;
}

.projects-quick-filter strong {
  display: block;
  margin-bottom: 11px;
  color: #111b24;
  font: 600 14px/18px var(--mona);
}

.projects-quick-filter>div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.projects-quick-filter button {
  min-height: 31px;
  padding: 5px 14px;
  border: 1px solid #cbd2d9;
  border-radius: 999px;
  background: #fff;
  color: #14202b;
  cursor: pointer;
  font: 400 13px/18px var(--inter);
  transition: color .2s, background-color .2s, border-color .2s;
}

.projects-quick-filter button:hover,
.projects-quick-filter button.is-active {
  border-color: #006bba;
  background: #006bba;
  color: #fff;
}

.projects-card-list {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 38px;
}

.projects-list-card {
  position: relative;
  width: 1286px;
  height: 678px;
  overflow: hidden;
  border: 1px solid #56a7d6;
  background: #dfeaf0;
}

.projects-list-card[hidden] {
  display: none;
}

.projects-list-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .18s ease;
}

.projects-list-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 27, 49, 0) 48%, rgba(0, 27, 49, .23) 64%, rgba(0, 27, 49, .98) 100%);
  pointer-events: none;
}

.projects-card-copy {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 25px;
  left: 30px;
  color: #fff;
}

.projects-card-copy h3 {
  margin: 11px 0 6px;
  color: #fff;
  font: 600 22px/27px var(--mona);
  letter-spacing: -.7px;
}

.projects-card-copy p {
  max-width: 1060px;
  margin: 0;
  overflow: hidden;
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
  font: 400 13px/18px var(--inter);
}

.projects-card-progress {
  display: flex;
  gap: 5px;
  width: 78px;
  height: 3px;
}

.projects-card-progress i {
  width: 14px;
  height: 2px;
  background: rgba(255, 255, 255, .42);
  transition: width .2s, background-color .2s;
}

.projects-card-progress i.is-active {
  width: 34px;
  background: #fff;
}

.projects-card-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0 0 3px;
  border: 0;
  background: #006bba;
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  font: 300 31px/34px Arial, sans-serif;
  transition: background-color .2s;
}

.projects-card-arrow:hover {
  background: #00518e;
}

.projects-card-arrow-prev {
  left: 0;
}

.projects-card-arrow-next {
  right: 0;
}

.projects-list-empty {
  padding: 80px 20px;
  color: #536272;
  text-align: center;
}

.projects-solution {
  position: relative;
  height: 646px;
  overflow: hidden;
  color: #011b31;
}

.projects-solution>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-solution-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 27, 49, 0) 42%, rgba(0, 27, 49, .82) 100%), linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .57) 42%, rgba(255, 255, 255, .02) 79%);
}

.projects-solution-content {
  position: relative;
  z-index: 1;
  padding-top: 130px;
}

.projects-solution h2 {
  margin: 0;
  color: #011b31;
  font: 600 44px/1.12 var(--mona);
  letter-spacing: -1.8px;
}

.projects-solution-content>p {
  margin-top: 20px;
  color: #172635;
  font: 400 14px/21px var(--inter);
}

.projects-solution-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 64px;
}

.projects-solution-links a {
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  align-items: start;
  min-height: 128px;
  padding: 26px 24px;
  background: #fff;
  color: #304357;
  transition: transform .2s, box-shadow .2s;
}

.projects-solution-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.projects-solution-links b {
  color: #0072bd;
  font: 22px/24px Arial, sans-serif;
}

.projects-solution-links span {
  font: 400 13px/18px var(--inter);
}

.projects-solution-links strong {
  display: block;
  margin-bottom: 4px;
  color: #011b31;
  font: 600 16px/20px var(--mona);
}

.projects-solution-links i {
  color: #b7c9d8;
  font: 28px/26px Arial, sans-serif;
  font-style: normal;
}

@media (min-width: 1201px) {

  .projects-page .nav-shell,
  .projects-page .footer-main,
  .projects-page .footer-bottom {
    width: min(1724px, calc(100vw - 196px));
    margin-left: max(98px, calc((100vw - 1724px) / 2));
    margin-right: 0;
  }
}

@media (max-width: 1800px) and (min-width: 1201px) {
  .projects-directory-layout {
    grid-template-columns: minmax(300px, 400px) minmax(0, 1fr);
  }

  .projects-list-card {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .projects-page-shell {
    width: calc(100% - 80px);
  }

  .projects-page .site-footer {
    height: auto;
    min-height: 0;
    padding-top: 72px;
    overflow: visible;
  }

  .projects-page .footer-main {
    padding-bottom: 48px;
  }

  .projects-page .footer-bottom {
    padding-block: 28px;
  }

  .projects-directory {
    padding: 72px 0 90px;
  }

  .projects-directory-layout {
    display: block;
  }

  .projects-filter-panel {
    position: static;
  }

  .projects-filter-panel h2 {
    width: min(650px, 100%);
  }

  .projects-filter-panel h2 span {
    font-size: 42px;
  }

  .projects-quick-filter {
    width: 100%;
    margin: 24px 0 38px;
  }

  .projects-list-card {
    width: 100%;
    height: auto;
    aspect-ratio: 1286 / 678;
  }

  .projects-solution {
    height: auto;
    min-height: 646px;
  }

  .projects-solution-links {
    grid-template-columns: 1fr;
    margin-top: 42px;
    padding-bottom: 70px;
  }

  .projects-solution-links a {
    min-height: 100px;
  }
}

@media (max-width: 720px) {
  .projects-page-shell {
    width: calc(100% - 32px);
  }

  .projects-page-hero {
    height: 358px;
  }

  .projects-page-hero-copy {
    padding-top: 74px;
  }

  .projects-page-hero h1 {
    font-size: 40px;
    letter-spacing: -1.5px;
  }

  .projects-page-hero p {
    margin-top: 15px;
    font-size: 12px;
    line-height: 17px;
  }

  .projects-page-hero p br,
  .projects-solution-content>p br {
    display: none;
  }

  .projects-page-watermark {
    right: -80px;
    bottom: -30px;
    width: 300px;
    height: auto;
  }

  .projects-directory {
    padding: 48px 0 64px;
  }

  .projects-directory::after {
    left: 0;
    bottom: 0;
    width: 78vw;
    height: auto;
    aspect-ratio: 943 / 703.54;
  }

  .projects-filter-panel h2 {
    font-size: 14px;
    line-height: 20px;
  }

  .projects-filter-panel h2 span {
    margin-bottom: 8px;
    font-size: 31px;
    line-height: 1.08;
    letter-spacing: -1.2px;
  }

  .projects-quick-filter {
    padding: 14px;
  }

  .projects-quick-filter button {
    padding-inline: 11px;
    font-size: 12px;
  }

  .projects-card-list {
    gap: 18px;
  }

  .projects-list-card {
    min-height: 300px;
    aspect-ratio: auto;
  }

  .projects-card-copy {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .projects-card-copy h3 {
    margin-top: 8px;
    font-size: 17px;
    line-height: 21px;
  }

  .projects-card-copy p {
    max-width: calc(100% - 10px);
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 11px;
    line-height: 15px;
  }

  .projects-card-arrow {
    width: 32px;
    height: 32px;
    font-size: 25px;
  }

  .projects-solution {
    min-height: 720px;
  }

  .projects-solution>img {
    object-position: 58% center;
  }

  .projects-solution-content {
    padding-top: 68px;
  }

  .projects-solution h2 {
    font-size: 32px;
    letter-spacing: -1.2px;
  }

  .projects-solution-content>p {
    margin-top: 16px;
    font-size: 12px;
    line-height: 17px;
  }

  .projects-solution-links {
    gap: 10px;
    margin-top: 34px;
    padding-bottom: 48px;
  }

  .projects-solution-links a {
    min-height: 96px;
    padding: 20px 16px;
    grid-template-columns: 32px 1fr 20px;
  }

  .projects-solution-links strong {
    font-size: 14px;
  }

  .projects-solution-links span {
    font-size: 11px;
    line-height: 16px;
  }
}

/* Project Detail Page Layout & Gallery */
.project-detail-page {
  background: #fff;
  color: #011b31;
}

.project-detail-shell {
  width: min(1724px, calc(100vw - 196px));
  margin-inline: auto;
}

.detail-site-header {
  position: fixed;
  height: 81.14px;
  background: var(--header-gradient);
  box-shadow: none;
}

.detail-nav-shell {
  width: min(1724px, calc(100vw - 196px));
}

.project-detail-hero {
  position: relative;
  height: 365px;
  overflow: hidden;
  background: #011b31;
  color: #fff;
}

.project-detail-hero-watermark {
  position: absolute;
  left: 0;
  top: -222px;
  width: 943px;
  height: 703.54px;
  opacity: .92;
  pointer-events: none;
}

.project-detail-hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-top: 81.14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.project-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, .58);
  font: 400 12px/16px var(--inter);
}

.project-detail-breadcrumb a {
  color: rgba(255, 255, 255, .58);
}

.project-detail-breadcrumb a:hover {
  color: #fff;
}

.project-detail-hero h1 {
  margin: 0;
  color: #fff;
  font: 600 40px/1.14 var(--mona);
  letter-spacing: -1.5px;
}

.project-detail-about {
  height: 681.85px;
  padding: 98px 0 124px;
  overflow: hidden;
  background: #fff;
}

.project-detail-about-layout {
  display: grid;
  grid-template-columns: 800px 828px;
  gap: 96px;
  align-items: start;
}

.project-detail-copy h2 {
  margin: 0 0 20px;
  color: #011b31;
  font: 600 48px/1.08 var(--mona);
  letter-spacing: -1.8px;
}

.project-detail-copy p {
  margin: 0 0 17px;
  color: #101c28;
  font: 400 14px/20px var(--inter);
}

.project-detail-copy p:last-child {
  margin-bottom: 0;
}

.project-detail-gallery {
  position: relative;
  width: 828px;
  height: 459.85px;
  overflow: hidden;
  border: 1px solid #56a7d6;
  background: #e8eef2;
}

.project-detail-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail-gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0 0 3px;
  border: 0;
  background: #006bba;
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  font: 300 31px/34px Arial, sans-serif;
  transition: background-color .2s;
}

.project-detail-gallery-arrow:hover {
  background: #00518e;
}

.project-detail-gallery-prev {
  left: 0;
}

.project-detail-gallery-next {
  right: 0;
}

.project-detail-solution {
  height: 646px;
}

.project-detail-footer {
  height: 370px;
  min-height: 370px;
  padding-top: 64px;
  overflow: hidden;
}

.project-detail-footer .footer-main {
  padding-bottom: 40px;
}

.project-detail-footer .footer-bottom {
  padding-block: 24px;
}

.project-detail-bottom-space {
  height: 87.15px;
  background: #fff;
}

@media (min-width: 1201px) {

  .project-detail-page .nav-shell,
  .project-detail-page .footer-main,
  .project-detail-page .footer-bottom {
    width: min(1724px, calc(100vw - 196px));
    margin-left: max(98px, calc((100vw - 1724px) / 2));
    margin-right: 0;
  }
}

@media (max-width: 1800px) and (min-width: 1201px) {
  .project-detail-about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 1.035fr);
  }

  .project-detail-gallery {
    width: 100%;
  }
}

@media (max-width: 1200px) {

  .project-detail-shell,
  .detail-nav-shell {
    width: calc(100% - 80px);
  }

  .project-detail-about {
    height: auto;
    padding: 78px 0 94px;
    overflow: visible;
  }

  .project-detail-about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .project-detail-gallery {
    width: 100%;
    height: auto;
    aspect-ratio: 828 / 459.85;
  }

  .project-detail-footer {
    height: auto;
    min-height: 0;
    padding-top: 72px;
    overflow: visible;
  }

  .project-detail-footer .footer-main {
    padding-bottom: 48px;
  }

  .project-detail-footer .footer-bottom {
    padding-block: 28px;
  }

  .project-detail-bottom-space {
    display: none;
  }
}

@media (max-width: 720px) {

  .project-detail-shell,
  .detail-nav-shell {
    width: calc(100% - 32px);
  }

  .detail-site-header {
    height: 70px;
  }

  .project-detail-hero {
    height: auto;
    min-height: 260px;
    padding-bottom: 40px;
  }

  .project-detail-hero-watermark {
    left: -82px;
    top: -36px;
    width: 520px;
    height: auto;
    opacity: 0.12;
  }

  .project-detail-hero-content {
    padding: 92px 16px 0;
  }

  .project-detail-breadcrumb {
    margin-bottom: 19px;
    font-size: 11px;
  }

  .project-detail-hero h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.14;
    letter-spacing: -1.2px;
  }

  .project-detail-about {
    padding: 56px 0 68px;
  }

  .project-detail-copy h2 {
    margin-bottom: 17px;
    font-size: 34px;
    letter-spacing: -1.2px;
  }

  .project-detail-copy p {
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 18px;
  }

  .project-detail-about-layout {
    gap: 34px;
  }

  .project-detail-gallery {
    min-height: 240px;
    aspect-ratio: auto;
  }

  .project-detail-gallery-arrow {
    width: 32px;
    height: 32px;
    font-size: 25px;
  }

  .project-detail-solution {
    height: auto;
    min-height: 720px;
  }
}

/* Product Detail Page Layout & Specifications */
.product-detail-page {
  background: #fff;
  color: #071826;
}

.product-detail-shell {
  width: min(1724px, calc(100vw - 196px));
  margin-inline: auto;
}

.product-detail-information {
  min-height: 1662px;
  padding-top: 124px;
  background: #fff;
}

.product-detail-inner {
  display: grid;
  grid-template-columns: 564px minmax(0, 1fr);
  gap: 48px;
  width: 1840px;
  min-height: 1538px;
  margin: 0 auto;
  padding: 98px;
}

.product-detail-gallery {
  min-width: 0;
}

.product-detail-gallery-sticky {
  position: sticky;
  top: 96px;
  width: 564px;
}

.product-detail-main-image {
  display: grid;
  width: 564px;
  height: 500px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #cbd4db;
  background: #fff;
}

.product-detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 4px;
}

.product-detail-thumbnails button {
  display: grid;
  height: 129px;
  padding: 8px;
  place-items: center;
  border: 1px solid #d4dce2;
  background: #fff;
  cursor: pointer;
}

.product-detail-thumbnails button.is-active {
  border-color: #299ad9;
}

.product-detail-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-enquire {
  display: inline-grid;
  min-width: 154px;
  height: 48px;
  margin-top: 24px;
  padding: 0 22px;
  place-items: center;
  background: #006bba;
  color: #fff;
  font: 500 14px/18px var(--mona);
}

.product-detail-enquire:hover {
  background: #005795;
}

.product-detail-copy {
  min-width: 0;
  color: #071826;
}

.product-detail-copy h1 {
  margin: 0 0 34px;
  color: #050b10;
  font: 600 32px/1.18 var(--mona);
  letter-spacing: -1.2px;
}

.product-detail-copy section {
  padding: 0 0 28px;
  margin: 0 0 28px;
  border-bottom: 1px solid #dce1e5;
}

.product-detail-copy section:last-child {
  border-bottom: 0;
}

.product-detail-copy h2 {
  margin: 0 0 12px;
  color: #111820;
  font: 600 17px/1.35 var(--mona);
  letter-spacing: -.3px;
}

.product-detail-copy p,
.product-detail-copy li {
  color: #566271;
  font: 400 13px/20px var(--inter);
}

.product-detail-copy ul {
  margin: 3px 0 0;
  padding-left: 18px;
}

.product-detail-related {
  height: 898.5px;
  padding: 124px 0;
  overflow: hidden;
  background: #f7f8fa;
}

.product-detail-related h2 {
  margin: 0 0 68px;
  color: #071826;
  font: 600 34px/1.15 var(--mona);
  letter-spacing: -1.2px;
}

.product-detail-related-viewport {
  overflow: hidden;
}

.product-detail-related-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  transition: transform .35s ease;
}

.product-detail-related-card {
  min-width: 0;
  padding: 8px;
  text-align: center;
}

.product-detail-related-card>div {
  display: grid;
  height: 408px;
  padding: 28px;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.product-detail-related-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-related-card h3 {
  min-height: 43px;
  padding: 14px 8px 8px;
  overflow: hidden;
  color: #090f14;
  white-space: nowrap;
  text-overflow: ellipsis;
  font: 600 14px/19px var(--mona);
}

.product-detail-related-card>a {
  display: grid;
  height: 42px;
  place-items: center;
  background: #fff;
  color: #090f14;
  font: 500 13px/18px var(--mona);
}

.product-detail-related-card>a:hover {
  background: #006bba;
  color: #fff;
}

.product-detail-related-controls {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.product-detail-related-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0 0 3px;
  place-items: center;
  border: 0;
  background: #fff;
  color: #95a8b5;
  cursor: pointer;
  font: 300 27px/30px Arial, sans-serif;
}

.product-detail-related-controls button.next {
  background: #006bba;
  color: #fff;
}

.product-detail-related-controls span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.product-detail-related-controls i {
  width: 8px;
  height: 3px;
  border-radius: 5px;
  background: rgba(0, 107, 186, .25);
}

.product-detail-related-controls i.is-active {
  width: 24px;
  background: #006bba;
}

.product-detail-solution {
  height: 646px;
}

.product-detail-footer {
  height: 370px;
  min-height: 370px;
}

@media (min-width: 1201px) {

  .product-detail-page .nav-shell,
  .product-detail-page .footer-main,
  .product-detail-page .footer-bottom {
    width: min(1724px, calc(100vw - 196px));
    margin-left: max(98px, calc((100vw - 1724px) / 2));
    margin-right: 0;
  }
}

@media (max-width: 1919px) and (min-width: 1201px) {
  .product-detail-inner {
    width: calc(100% - 80px);
    grid-template-columns: minmax(390px, 32%) minmax(0, 1fr);
    padding-inline: 40px;
  }

  .product-detail-gallery-sticky,
  .product-detail-main-image {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .product-detail-shell {
    width: calc(100% - 80px);
  }

  .product-detail-information {
    min-height: 0;
    padding-top: 81px;
  }

  .product-detail-inner {
    grid-template-columns: 1fr;
    width: calc(100% - 80px);
    min-height: 0;
    padding: 72px 0 90px;
  }

  .product-detail-gallery-sticky {
    position: static;
    width: min(564px, 100%);
    margin-inline: auto;
  }

  .product-detail-main-image {
    width: 100%;
  }

  .product-detail-related {
    height: auto;
    padding: 88px 0;
  }

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

  .product-detail-related-card>div {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .product-detail-solution {
    height: auto;
    min-height: 646px;
  }

  .product-detail-footer {
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 720px) {

  .product-detail-shell,
  .product-detail-inner {
    width: calc(100% - 32px);
  }

  .product-detail-information {
    padding-top: 70px;
  }

  .product-detail-inner {
    gap: 48px;
    padding: 32px 0 64px;
  }

  .product-detail-main-image {
    height: auto;
    aspect-ratio: 548 / 500;
  }

  .product-detail-thumbnails button {
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 4px;
  }

  .product-detail-enquire {
    width: 100%;
  }

  .product-detail-copy h1 {
    margin-bottom: 28px;
    font-size: 27px;
  }

  .product-detail-copy section {
    padding-bottom: 22px;
    margin-bottom: 22px;
  }

  .product-detail-copy h2 {
    font-size: 16px;
  }

  .product-detail-copy p,
  .product-detail-copy li {
    font-size: 12px;
    line-height: 18px;
  }

  .product-detail-related {
    padding: 58px 0 64px;
  }

  .product-detail-related h2 {
    margin-bottom: 32px;
    font-size: 27px;
  }

  .product-detail-related-track {
    display: flex;
    gap: 8px;
    width: max-content;
  }

  .product-detail-related-card {
    width: 176px;
  }

  .product-detail-related-card>div {
    height: 168px;
    padding: 14px;
    aspect-ratio: auto;
  }

  .product-detail-related-card h3 {
    min-height: 38px;
    padding-inline: 3px;
    font-size: 10px;
    line-height: 14px;
  }

  .product-detail-related-card>a {
    height: 36px;
    font-size: 11px;
  }

  .product-detail-related-controls {
    margin-top: 22px;
  }

  .product-detail-solution {
    min-height: 720px;
  }
}

/* Catalogue Collection & Brochure Viewer Layout */
.catalogues-page {
  background: #fff;
  color: #071826;
}

.catalogues-shell {
  width: min(1724px, calc(100vw - 196px));
  margin-inline: auto;
}

.catalogues-hero {
  position: relative;
  height: 367px;
  overflow: hidden;
  background: #001b31;
  color: #fff;
}

.catalogues-hero-watermark {
  position: absolute;
  right: -4px;
  bottom: -78px;
  width: 445px;
  height: 332px;
  opacity: .52;
  pointer-events: none;
}

.catalogues-hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 167px;
}

.catalogues-hero h1 {
  color: #fff;
  font: 600 52px/1.08 var(--mona);
  letter-spacing: -2px;
}

.catalogues-hero p {
  margin-top: 17px;
  color: #fff;
  font: 400 13px/19px var(--inter);
}

.catalogues-products {
  min-height: 1990px;
  background: #fff;
}

.catalogues-products>.catalogues-shell {
  padding-top: 98px;
}

.catalogues-about {
  display: grid;
  grid-template-columns: 826px minmax(0, 1fr);
  gap: 98px;
  width: 100%;
  height: 406px;
  align-items: center;
}

.catalogues-about-image {
  width: 826px;
  height: 406px;
  overflow: hidden;
  border: 1px solid #54a6d6;
}

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

.catalogues-about-copy h2 {
  margin: 0 0 22px;
  color: #071826;
  font: 600 38px/1.12 var(--mona);
  letter-spacing: -1.3px;
}

.catalogues-about-copy p {
  max-width: 785px;
  color: #52606d;
  font: 400 14px/21px var(--inter);
}

.catalogues-about-copy a {
  display: inline-grid;
  min-width: 208px;
  height: 46px;
  margin-top: 25px;
  padding: 0 20px;
  place-items: center;
  background: #006bba;
  color: #fff;
  font: 500 13px/18px var(--mona);
}

.catalogues-about-copy a:hover {
  background: #005893;
}

.catalogues-collection {
  margin-top: 54px;
}

.catalogues-collection>h2 {
  margin: 0 0 24px;
  color: #071826;
  font: 600 19px/24px var(--mona);
  letter-spacing: -.35px;
}

.catalogues-carousel {
  width: 100%;
}

.catalogues-viewport {
  overflow: hidden;
}

.catalogues-track {
  display: flex;
  gap: 36px;
  width: max-content;
  transition: transform .35s ease;
}

.brochure-capture-card,
.catalogues-card {
  flex: 0 0 379px;
  width: 379px;
  height: 458px;
  overflow: hidden;
  background: #001f35;
}

.brochure-capture-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalogues-card {
  display: flex;
  flex-direction: column;
  padding: 16px 16px 26px;
  color: #fff;
}

.catalogues-card>div {
  display: grid;
  flex: 1 1 auto;
  min-height: 0;
  place-items: center;
}

.catalogues-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalogues-card h3 {
  margin: 9px 0 0;
  color: #fff;
  font: 500 16px/20px var(--mona);
  letter-spacing: -.3px;
}

.catalogues-controls {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 10px;
  height: 38px;
  margin-top: 36px;
}

.catalogues-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0 0 3px;
  place-items: center;
  border: 0;
  background: #fff;
  color: #5f7280;
  cursor: pointer;
  font: 300 27px/30px Arial, sans-serif;
}

.catalogues-controls button.next {
  background: #006bba;
  color: #fff;
}

.catalogues-controls span {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.catalogues-controls i {
  width: 8px;
  height: 3px;
  border-radius: 4px;
  background: rgba(0, 107, 186, .24);
}

.catalogues-controls i.is-active {
  width: 24px;
  background: #006bba;
}

.catalogues-divider {
  height: 1px;
  margin-top: 38px;
  background: #d7dfe5;
}

.catalogues-main-collection {
  margin-top: 54px;
}

.catalogues-divider-bottom {
  margin-top: 38px;
}

.catalogues-solution {
  height: 646px;
}

.catalogues-footer {
  height: 370px;
  min-height: 370px;
}

.catalogues-bottom-space {
  height: 38px;
  background: #fff;
}

@media (min-width: 1201px) {

  .catalogues-page .nav-shell,
  .catalogues-page .footer-main,
  .catalogues-page .footer-bottom {
    width: min(1724px, calc(100vw - 196px));
    margin-left: max(98px, calc((100vw - 1724px) / 2));
    margin-right: 0;
  }
}

@media (max-width: 1800px) and (min-width: 1201px) {
  .catalogues-about {
    grid-template-columns: minmax(480px, 1fr) minmax(0, 1fr);
  }

  .catalogues-about-image {
    width: 100%;
  }

  .brochure-capture-card,
  .catalogues-card {
    flex-basis: calc((100vw - 340px) / 4);
    width: calc((100vw - 340px) / 4);
  }
}

@media (max-width: 1200px) {
  .catalogues-shell {
    width: calc(100% - 80px);
  }

  .catalogues-products {
    height: auto;
    overflow: visible;
  }

  .catalogues-products>.catalogues-shell {
    padding: 78px 0 94px;
  }

  .catalogues-about {
    grid-template-columns: 1fr;
    gap: 38px;
    height: auto;
  }

  .catalogues-about-image {
    width: 100%;
    height: auto;
    aspect-ratio: 826 / 406;
  }

  .catalogues-about-copy p {
    max-width: none;
  }

  .catalogues-track {
    gap: 20px;
  }

  .brochure-capture-card,
  .catalogues-card {
    flex-basis: calc((100vw - 120px) / 2);
    width: calc((100vw - 120px) / 2);
  }

  .catalogues-solution {
    height: auto;
    min-height: 646px;
  }

  .catalogues-footer {
    height: auto;
    min-height: 0;
  }

  .catalogues-bottom-space {
    display: none;
  }
}

@media (max-width: 720px) {
  .catalogues-shell {
    width: calc(100% - 32px);
  }

  .catalogues-hero {
    height: auto;
    min-height: auto;
    padding-bottom: 40px;
  }

  .catalogues-hero-copy {
    padding-top: 92px;
  }

  .catalogues-hero h1 {
    font-size: 38px;
    letter-spacing: -1.4px;
    line-height: 1.12;
  }

  .catalogues-hero p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 22px;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.95);
  }

  .catalogues-hero p br {
    display: none;
  }

  .catalogues-hero-watermark {
    right: -50px;
    bottom: -10px;
    width: 260px;
    height: auto;
    opacity: 0.12;
  }

  .catalogues-products>.catalogues-shell {
    padding: 48px 0 66px;
  }

  .catalogues-about {
    gap: 28px;
  }

  .catalogues-about-copy h2 {
    margin-bottom: 16px;
    font-size: 29px;
    letter-spacing: -1px;
  }

  .catalogues-about-copy p {
    font-size: 12px;
    line-height: 18px;
  }

  .catalogues-about-copy a {
    width: 100%;
    margin-top: 20px;
  }

  .catalogues-collection,
  .catalogues-main-collection {
    margin-top: 48px;
  }

  .catalogues-collection>h2 {
    margin-bottom: 20px;
    font-size: 17px;
  }

  .catalogues-track {
    gap: 12px;
  }

  .brochure-capture-card,
  .catalogues-card {
    flex-basis: 245px;
    width: 245px;
    height: 296px;
  }

  .catalogues-card {
    padding: 10px 10px 16px;
  }

  .catalogues-card h3 {
    font-size: 12px;
    line-height: 15px;
  }

  .catalogues-controls {
    margin-top: 22px;
  }

  .catalogues-divider {
    margin-top: 28px;
  }

  .catalogues-solution {
    min-height: 720px;
  }
}

/* About page: 393px Figma composition */
@media (max-width: 480px) {
  .about-page .site-header {
    height: 72px;
  }

  .about-page .nav-shell {
    width: calc(100% - 32px);
  }

  .about-page .brand-logo-img {
    height: 38px;
  }

  .about-page .mobile-nav-toggle {
    width: 40px;
    height: 40px;
    padding: 11px 9px;
  }

  .about-page .af-story {
    min-height: 0;
    padding: 105px 16px 0;
    background: linear-gradient(180deg, #011b31 0%, #011b31 calc(100% - 95px), #ffffff calc(100% - 95px), #ffffff 100%);
    overflow: hidden;
  }

  .about-page .af-story-decoration {
    top: 72px;
    left: -48px;
    width: 480px;
    opacity: .28;
  }

  .about-page .af-story-copy,
  .about-page .af-story figure,
  .about-page .solution-content,
  .about-page .footer-main,
  .about-page .footer-bottom {
    width: 100%;
  }

  .about-page .af-story h1 {
    font-size: 38px;
    line-height: 46px;
    letter-spacing: -1.5px;
  }

  .about-page .af-story-copy p {
    width: 361px;
    max-width: 100%;
    margin: 20px auto 24px;
    color: rgba(255, 255, 255, .94);
    font-size: 16px;
    line-height: 24px;
  }

  .about-page .af-story .primary-button {
    min-width: 180px;
    height: 42px;
    padding: 0 22px;
    font-size: 14px;
  }

  .about-page .af-story figure {
    position: relative;
    width: 100%;
    height: 190px;
    margin: 40px auto 0;
    aspect-ratio: auto;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }

  .about-page .af-story figure > img {
    object-position: center 50%;
  }

  .about-page .af-story figure button {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    padding: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .about-page .af-trusted {
    width: calc(100% - 32px);
    padding: 32px 0 0;
  }

  .about-page .af-trusted-top,
  .about-page .af-values,
  .about-page .af-global {
    gap: 26px;
  }

  .about-page .af-trusted-top h2,
  .about-page .af-regional h2,
  .about-page .af-mission h2,
  .about-page .af-values h2,
  .about-page .af-global h2 {
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -1.2px;
  }

  .about-page .af-trusted-top p,
  .about-page .af-regional p,
  .about-page .af-mission p,
  .about-page .af-global p {
    font-size: 16px;
    line-height: 24px;
  }

  .about-page .af-trusted-top p {
    margin-top: 22px;
  }

  .about-page .af-trusted-top figure,
  .about-page .af-regional figure,
  .about-page .af-values figure {
    margin: 8px 0 0 8px;
  }

  .about-page .af-trusted-top figure::before,
  .about-page .af-regional figure::before,
  .about-page .af-values figure::before {
    top: -8px;
    left: -8px;
  }

  .about-page .af-trusted-top img {
    height: 219px;
    aspect-ratio: auto;
    object-position: center;
  }

  .about-page .af-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    margin-top: 0;
  }

  .about-page .af-stats article {
    min-height: 175px;
    padding: 26px 10px 20px;
    border-right: 1px solid #e4e8ed !important;
    border-bottom: 1px solid #e4e8ed;
  }

  .about-page .af-stats article:nth-child(2n) {
    border-right: 0 !important;
  }

  .about-page .af-stats article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .about-page .af-stats strong {
    font-size: 40px;
    line-height: 46px;
  }

  .about-page .af-stats span {
    margin: 8px auto 14px;
    padding: 5px 13px;
    font-size: 14px;
    line-height: 18px;
  }

  .about-page .af-stats p {
    max-width: 100px;
    font-size: 14px;
    line-height: 21px;
  }

  .about-page .af-regional {
    padding: 62px 16px 0;
    background: linear-gradient(180deg, #001b31 0%, #001b31 calc(100% - 109px), #ffffff calc(100% - 109px), #ffffff 100%);
    overflow: hidden;
  }

  .about-page .af-regional p {
    width: min(345px, 100%);
    margin: 28px auto 44px;
    font-size: 14px;
    line-height: 22px;
  }

  .about-page .af-regional figure {
    position: relative;
    width: min(340px, calc(100% - 24px));
    height: 218px;
    margin: 12px auto 0;
    aspect-ratio: auto;
  }

  .about-page .af-regional figure::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 100%;
    height: 100%;
    border: 1px solid #0072bd;
    pointer-events: none;
  }

  .about-page .af-regional img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .about-page .af-mission {
    width: calc(100% - 32px);
    padding: 48px 0 56px;
  }

  .about-page .af-mission-top {
    gap: 0;
    padding: 0 16px;
    border: 1px solid #dce3e9;
  }

  .about-page .af-mission-top article {
    padding: 28px 0 30px;
    border: 0;
    border-bottom: 1px solid #dce3e9;
  }

  .about-page .af-mission-top article + article {
    padding-top: 30px;
  }

  .about-page .af-mission-top article h2 {
    margin-bottom: 0;
  }

  .about-page .af-mission p {
    margin-top: 14px;
  }

  .about-page .af-values {
    margin-top: 34px;
  }

  .about-page .af-values img {
    height: 224px;
    aspect-ratio: auto;
    object-position: center;
  }

  .about-page .af-values h3 {
    margin: 20px 0 26px;
    font-size: 18px;
    line-height: 23px;
  }

  .about-page .af-value-grid {
    gap: 16px;
  }

  .about-page .af-value-grid article,
  .about-page .af-value-grid article:last-child {
    min-height: 156px;
    padding: 28px 24px;
  }

  .about-page .af-value-grid b {
    margin-bottom: 24px;
    font-size: 17px;
  }

  .about-page .af-value-grid p {
    font-size: 16px;
    line-height: 24px;
  }

  .about-page .af-global {
    display: block;
    width: 100%;
    padding: 58px 16px 64px;
  }

  .about-page .af-global-decoration {
    top: auto;
    right: -70px;
    bottom: -88px;
    width: 330px;
    opacity: .52;
  }

  .about-page .af-global::after {
    top: auto;
    right: -92px;
    bottom: -136px;
    width: 350px;
    height: 350px;
  }

  .about-page .af-global p {
    margin-top: 24px;
  }

  .about-page .af-countries {
    display: flex;
    gap: 16px;
    margin-top: 42px;
  }

  .about-page .af-countries span {
    min-width: 88px;
    min-height: 60px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, .86);
    font-size: 16px;
    line-height: 22px;
  }

  .about-page .solution {
    min-height: 720px;
    padding: 0 16px 54px;
  }

  .about-page .solution > img {
    object-position: 56% center;
  }

  .about-page .solution-shade {
    background: linear-gradient(180deg, rgba(240, 250, 255, .94) 0%, rgba(218, 242, 253, .88) 100%);
  }

  .about-page .solution-content {
    padding-top: 54px;
  }

  .about-page .solution h2 {
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -1.1px;
  }

  .about-page .solution p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 22px;
  }

  .about-page .solution p br {
    display: none;
  }

  .about-page .solution-links {
    gap: 12px;
    margin-top: 34px;
  }

  .about-page .solution-links a {
    grid-template-columns: 34px 1fr 18px;
    min-height: 136px;
    padding: 24px 18px;
  }

  .about-page .solution-links strong {
    font-size: 17px;
    line-height: 22px;
  }

  .about-page .solution-links span {
    font-size: 15px;
    line-height: 22px;
  }

  .about-page .site-footer {
    padding: 54px 16px 0;
  }

  .about-page .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 22px;
    padding-bottom: 42px;
  }

  .about-page .footer-brand,
  .about-page .footer-contact {
    grid-column: 1 / -1;
  }

  .about-page .footer-brand p,
  .about-page .footer-main a,
  .about-page .footer-contact-item p {
    font-size: 16px;
    line-height: 24px;
  }

  .about-page .footer-main h3 {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 21px;
  }

  .about-page .footer-main > div:not(.footer-brand):not(.footer-contact) > a {
    margin-bottom: 10px;
  }

  .about-page .footer-contact {
    padding-top: 22px;
  }

  .about-page .footer-contact-item {
    margin-bottom: 12px;
  }

  .about-page .footer-contact-item:has(a[href^="tel:"]) {
    display: none;
  }

  .about-page .footer-contact-icon {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
  }

  .about-page .footer-bottom {
    gap: 14px;
    padding: 22px 0 26px;
    font-size: 14px;
    line-height: 21px;
  }

  .about-page .footer-bottom span:last-child {
    display: flex;
    gap: 18px;
  }

  .about-page .footer-bottom a {
    margin: 0;
  }
}

/* Data-driven card links */
.has-detail-link {
  position: relative;
}

.card-detail-link {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: inherit;
  background: transparent !important;
}

.card-detail-link:hover {
  background: transparent !important;
}

.card-detail-link:focus-visible {
  outline: 3px solid #0a79c1;
  outline-offset: -3px;
}

.has-detail-link > button,
.has-detail-link > a:not(.card-detail-link),
.has-detail-link .product-card-enquire,
.has-detail-link .product-detail-enquire {
  position: relative;
  z-index: 10 !important;
  pointer-events: auto !important;
}

.has-detail-link:hover h3 {
  color: #006bba;
}

/* Blog detail page */
.blog-detail-page {
  background: #fff;
  color: #071826;
}

.blog-detail-shell {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
}

.blog-detail-hero {
  position: relative;
  min-height: 420px;
  padding: 164px 0 70px;
  overflow: hidden;
  background: #011b31;
  color: #fff;
}

.blog-detail-watermark {
  position: absolute;
  right: -40px;
  bottom: -90px;
  width: 460px;
  opacity: .22;
  pointer-events: none;
}

.blog-detail-hero-copy {
  position: relative;
  z-index: 1;
}

.blog-detail-breadcrumb {
  display: flex;
  gap: 9px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .76);
  font: 500 13px/18px var(--inter);
}

.blog-detail-breadcrumb a:hover {
  color: #fff;
}

.blog-detail-hero h1 {
  max-width: 980px;
  color: #fff;
  font: 600 clamp(38px, 4.2vw, 56px)/1.08 var(--mona);
  letter-spacing: -.04em;
}

.blog-detail-hero time {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, .78);
  font: 400 13px/18px var(--inter);
}

.blog-detail-article {
  padding: 82px 0 96px;
}

.blog-detail-feature {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8.7;
  object-fit: cover;
}

.blog-detail-lead {
  max-width: 900px;
  margin: 46px auto 0;
  color: #10283b;
  font: 500 22px/1.55 var(--inter);
}

.blog-detail-body {
  max-width: 900px;
  margin: 28px auto 0;
}

.blog-detail-body p {
  margin-top: 20px;
  color: #526575;
  font: 400 15px/1.75 var(--inter);
}

.blog-detail-back {
  display: inline-flex;
  margin: 42px max(0px, calc((100% - 900px) / 2)) 0;
  color: #006bba;
  font: 600 14px/20px var(--mona);
}

.blog-detail-related {
  padding: 80px 0 96px;
  background: #f6f8fa;
}

.blog-detail-related h2 {
  margin-bottom: 36px;
  font: 600 36px/1.15 var(--mona);
  letter-spacing: -.035em;
}

.blog-detail-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

@media (max-width: 768px) {
  .blog-detail-shell {
    width: calc(100% - 32px);
  }

  .blog-detail-hero {
    min-height: 360px;
    padding: 118px 0 50px;
  }

  .blog-detail-watermark {
    right: -85px;
    bottom: -35px;
    width: 300px;
    opacity: .14;
  }

  .blog-detail-hero h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  .blog-detail-article {
    padding: 48px 0 64px;
  }

  .blog-detail-feature {
    aspect-ratio: 4 / 3;
  }

  .blog-detail-lead {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.5;
  }

  .blog-detail-body p {
    font-size: 14px;
    line-height: 1.7;
  }

  .blog-detail-related {
    padding: 56px 0 68px;
  }

  .blog-detail-related h2 {
    margin-bottom: 28px;
    font-size: 29px;
  }

  .blog-detail-related-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
