:root {
  --ink: #17202a;
  --muted: #5b6673;
  --line: #dfe5eb;
  --panel: #f6f8fa;
  --white: #ffffff;
  --brand: #0f6f9f;
  --brand-dark: #0b4f72;
  --accent: #c9402d;
  --steel: #263949;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(23, 32, 42, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 229, 235, 0.9);
  background: #ffffff;
}

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

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 210px;
}

.brand-link img {
  width: 74px;
  height: auto;
}

.brand-name {
  display: grid;
  gap: 0.05rem;
  color: #105b87;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-name span {
  color: #65717d;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.iso-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  min-width: 112px;
  height: 58px;
}

.iso-badge img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-dropdown {
  position: relative;
}

.site-nav a {
  display: block;
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
  color: var(--steel);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav .nav-parent {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-parent::after {
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  content: "";
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 60;
  display: grid;
  gap: 0.2rem;
  min-width: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.45rem;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 0.72rem 0.8rem;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--brand-dark);
  background: #eaf4f8;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  padding: 0.72rem 1rem;
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 111, 159, 0.22);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 390px;
  color: var(--white);
  overflow: hidden;
  background: #101a22;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 22, 32, 0.9), rgba(8, 22, 32, 0.66), rgba(8, 22, 32, 0.42));
  content: "";
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  width: 400%;
  animation: heroSlide 12s ease-in-out infinite;
}

.hero-slider img {
  width: 25%;
  height: 100%;
  object-fit: cover;
}

@keyframes heroSlide {
  0%,
  16% {
    transform: translateX(0);
  }

  25%,
  41% {
    transform: translateX(-25%);
  }

  50%,
  66% {
    transform: translateX(-50%);
  }

  75%,
  91% {
    transform: translateX(-75%);
  }

  100% {
    transform: translateX(-75%);
  }
}

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

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 390px;
  padding: 3.25rem 0;
}

.hero-copy {
  max-width: 1080px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 3px;
  background: var(--accent);
  content: "";
}

.eyebrow.no-line::before {
  display: none;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 5vw, 5rem);
}

.hero h1 {
  max-width: 1080px;
  font-size: clamp(2rem, 4vw, 4rem);
}

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

h3 {
  font-size: 1.2rem;
}

.hero p {
  max-width: 680px;
  margin-top: 1.35rem;
  color: #edf7fb;
  font-size: 1.1rem;
}

.hero-points {
  display: grid;
  gap: 0.55rem;
  max-width: 680px;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.8rem;
  color: #eef7fb;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  font-weight: 800;
}

.hero-points li::before {
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: #58b4d4;
  content: "+";
  font-weight: 900;
}

.hero .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow {
  color: #d9edf5;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(var(--max), calc(100% - 32px));
  margin: -56px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--line);
}

.metric {
  min-height: 112px;
  padding: 1.25rem;
  background: var(--white);
}

.metric strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.55rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 86px 0;
}

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

.section.alt {
  background: var(--panel);
}

.solutions-list-section {
  padding-bottom: 76px;
}

.solutions-list-head,
.page-list-head {
  margin-bottom: 1.2rem;
}

.procurement-section,
.support-section {
  padding: 34px 0;
}

.procurement-copy,
.support-copy {
  max-width: none;
}

.procurement-copy h2,
.support-copy h2 {
  max-width: none;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  white-space: nowrap;
}

.support-copy h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.procurement-copy p,
.support-copy p {
  max-width: none;
  margin-top: 0.55rem;
  margin-bottom: 0;
  color: var(--muted);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.card.pad {
  padding: 1.35rem;
}

.card.media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.solution-grid .card.media img {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #f3f5f7;
}

.industry-grid .card.media img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.card-body {
  padding: 1.35rem;
}

.card p,
.feature p,
.list-card p {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 0.6rem;
  color: var(--brand-dark);
  font-weight: 800;
}

.feature {
  border-left: 4px solid var(--brand);
  padding: 1rem 1.1rem;
  background: var(--white);
}

.why-head {
  margin-bottom: 2rem;
  text-align: center;
}

.why-head h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
}

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

.why-grid::before,
.why-grid::after {
  position: absolute;
  left: calc(16.666% + 52px);
  right: calc(16.666% + 52px);
  height: 2px;
  background: linear-gradient(90deg, transparent, #c8a34a 12%, #c8a34a 88%, transparent);
  content: "";
}

.why-grid::before {
  top: 60px;
}

.why-grid::after {
  top: calc(50% + 60px);
}

.why-item {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  min-height: 136px;
  padding: 0.75rem 1rem;
  text-align: center;
}

.why-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid #c4dbe6;
  border-radius: 999px;
  color: var(--brand-dark);
  background:
    radial-gradient(circle at 35% 25%, #ffffff 0 24%, transparent 25%),
    linear-gradient(145deg, #f6fbfd, #dceff6);
  box-shadow: 0 18px 34px rgba(15, 79, 114, 0.14), inset 0 0 0 8px rgba(255, 255, 255, 0.62);
}

.why-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item h3 {
  color: var(--steel);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.why-section {
  padding: 68px 0 58px;
}

.mission-section {
  background: var(--white);
}

.mission-section .eyebrow::before {
  display: none;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.mission-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(23, 32, 42, 0.07);
}

.mission-card h3 {
  margin-bottom: 0.55rem;
  color: var(--steel);
  font-size: 1.05rem;
  text-transform: uppercase;
}

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

.page-hero {
  height: 273px;
  background: var(--steel);
  color: var(--white);
  overflow: hidden;
}

.page-hero .section-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  height: 273px;
  min-height: 0;
  padding: 0;
}

.page-hero p {
  max-width: 680px;
  margin-top: 1rem;
  color: #dbe7ed;
  font-size: 1.05rem;
}

.page-hero img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-hero,
.fade-hero {
  position: relative;
  background: #263949;
}

.about-hero .section-inner,
.fade-hero .section-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.about-hero h1,
.fade-hero h1 {
  max-width: none;
  font-size: clamp(2rem, 3.15vw, 3.25rem);
  white-space: nowrap;
}

.about-hero .section-inner > div,
.fade-hero .section-inner > div {
  position: relative;
  z-index: 2;
  max-width: 1040px;
}

.about-hero p,
.fade-hero p {
  max-width: 1040px;
  margin-top: 0.85rem;
}

.about-hero img,
.fade-hero img {
  position: absolute;
  top: 0;
  right: calc((100vw - 100%) / -2);
  bottom: 0;
  left: 0;
  z-index: 1;
  width: calc(100% + ((100vw - 100%) / 2));
  max-width: none;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  object-position: right center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 18%, rgba(0, 0, 0, 0.72) 46%, #000 64%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 18%, rgba(0, 0, 0, 0.72) 46%, #000 64%);
}

.about-hero::after,
.fade-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #263949 0%, rgba(38, 57, 73, 0.98) 34%, rgba(38, 57, 73, 0.82) 54%, rgba(38, 57, 73, 0.18) 78%, rgba(38, 57, 73, 0) 100%);
  content: "";
}

.fade-hero::after {
  background: linear-gradient(90deg, #263949 0%, rgba(38, 57, 73, 0.99) 34%, rgba(38, 57, 73, 0.94) 56%, rgba(38, 57, 73, 0.56) 82%, rgba(38, 57, 73, 0.34) 100%);
}

.solution-detail-hero img {
  object-position: right center;
}

.solution-detail-hero p {
  max-width: 920px;
}

.contact-hero img {
  object-position: right center;
}

.brands-hero img {
  object-fit: cover;
  object-position: 92% center;
}

.brands-hero::after {
  background: linear-gradient(90deg, #263949 0%, rgba(38, 57, 73, 0.99) 34%, rgba(38, 57, 73, 0.95) 58%, rgba(38, 57, 73, 0.68) 84%, rgba(38, 57, 73, 0.52) 100%);
}

.breadcrumb {
  margin-bottom: 1rem;
  color: #b9ccd6;
  font-size: 0.9rem;
  font-weight: 700;
}

.list-card {
  position: relative;
  height: 100%;
  border: 1px solid #d7e3ea;
  border-radius: var(--radius);
  padding: 1.35rem 1.35rem 1.25rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%) padding-box,
    linear-gradient(135deg, rgba(15, 111, 159, 0.5), rgba(217, 226, 232, 0.75)) border-box;
  box-shadow: 0 16px 32px rgba(23, 32, 42, 0.075);
  overflow: hidden;
}

.list-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand), #4aa3bd);
  content: "";
}

.list-card::after {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 111, 159, 0.13), rgba(15, 111, 159, 0.05) 55%, transparent 56%);
  content: "";
}

.list-card h3 {
  position: relative;
  padding-right: 2rem;
  color: #223444;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag-list span {
  border: 1px solid #bfd9e6;
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  color: #164f6d;
  font-size: 0.84rem;
  font-weight: 800;
  background: #e8f3f8;
}

.tag-list span:nth-child(3n + 2) {
  border-color: #d7dde2;
  color: #3f4b56;
  background: #f2f4f6;
}

.tag-list span:nth-child(3n) {
  border-color: #e2c987;
  color: #745516;
  background: #fff6df;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 1.8rem;
  position: relative;
  color: var(--muted);
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--brand);
  content: "+";
  font-weight: 900;
}

.brand-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--white);
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
}

.brand-logo-tile {
  display: grid;
  place-items: center;
  height: 104px;
  border: 1px solid #dfe7ec;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(23, 32, 42, 0.06);
}

.brand-logo-tile img {
  width: 150px;
  height: 58px;
  object-fit: contain;
  object-position: center;
}

.brand-logo-tile img[src$="L&T.png"],
.brand-logo-tile img[src$="CPplus.jpg"],
.brand-logo-tile img[src$="Shell.png"],
.brand-logo-tile img[src$="dowell's.png"] {
  width: 178px;
  height: 84px;
}

.brand-logo-tile img[src$="Schneider-Electric.png"],
.brand-logo-tile img[src$="Siemens.svg"],
.brand-logo-tile img[src$="WAGO.svg"] {
  width: 188px;
  height: 84px;
}

.brand-logo-tile img[src$="L&T.png"],
.brand-logo-tile img[src$="ABB.svg"] {
  width: 200px;
  height: 90px;
}


.brands-section h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.brands-section {
  padding-bottom: 54px;
}

.clients-section h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.clients-section {
  padding-top: 42px;
  padding-bottom: 48px;
  background: var(--white);
}

.clients-section .section-head {
  margin-bottom: 0.8rem;
}

.brand-panel img {
  width: 100%;
  border-radius: 6px;
}

.brand-panel.brand-logo-grid img {
  border-radius: 0;
}

.logo-carousel {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 0.35rem 0;
}

.logo-grid {
  display: flex;
  gap: 0.35rem;
  width: max-content;
  transition: transform 0.55s ease;
  will-change: transform;
}

.client-logo {
  display: grid;
  place-items: center;
  flex: 0 0 calc((min(var(--max), calc(100vw - 32px)) - 0.7rem) / 3);
  min-height: 96px;
  padding: 0.65rem;
}

.client-logo img {
  max-height: 76px;
  width: auto;
}

.contact-wrap {
  display: grid;
  gap: 1.25rem;
  max-width: 840px;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--white);
}

.contact-column {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.enquiry-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--white);
}

.enquiry-strip h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.enquiry-strip p {
  max-width: 560px;
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #c4dbe6;
  border-radius: 999px;
  color: var(--brand-dark);
  background: linear-gradient(145deg, #f6fbfd, #dceff6);
}

.contact-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: var(--white);
}

.contact-box strong,
.contact-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.contact-box p,
.contact-box a,
.contact-card p,
.contact-card a {
  color: var(--muted);
}

.contact-box .enquiry-button {
  width: fit-content;
  margin-top: 0.65rem;
  color: var(--white);
  white-space: nowrap;
}

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  color: var(--steel);
  font-weight: 800;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

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

.cta-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 79, 114, 0.96), rgba(15, 111, 159, 0.86)),
    url("../img/world-network.jpg") center / cover;
}

.section.cta-band {
  padding: 48px 0;
}

.cta-band .eyebrow::before {
  display: none;
}

.cta-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band p {
  max-width: 620px;
  color: #e9f5fa;
}

.section.solution-cta {
  padding: 34px 0;
}

.solution-cta .section-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.solution-cta h2 {
  max-width: none;
  font-size: clamp(1.65rem, 2.5vw, 2.45rem);
  white-space: nowrap;
}

.solution-cta p {
  max-width: none;
  margin-top: 0.55rem;
  margin-bottom: 0;
}

.solution-cta .button {
  min-width: 152px;
  white-space: nowrap;
}

.site-footer {
  color: #d9e2e8;
  background: #121c24;
}

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

.footer-grid h3 {
  margin-bottom: 0.8rem;
  color: var(--white);
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: #b9c7d0;
}

.footer-logo {
  width: 82px;
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: 6px;
  padding: 0.35rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  color: #9badb8;
  text-align: center;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.75rem;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem;
  }

  .nav-dropdown {
    display: grid;
    gap: 0.25rem;
  }

  .nav-parent::after {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    border: 0;
    padding: 0 0 0 0.85rem;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 0.68rem 0.85rem;
    color: var(--muted);
    white-space: normal;
  }

  .nav-cta {
    display: none;
  }

  .iso-badge {
    display: none;
  }

  .metrics,
  .grid.four,
  .grid.three,
  .why-grid,
  .brand-logo-grid,
  .page-hero .section-inner,
  .split,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero .section-inner,
  .split {
    gap: 1.5rem;
  }

  .why-grid::before,
  .why-grid::after {
    display: none;
  }

}

@media (max-width: 680px) {
  .brand-name {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 410px;
  }

  .page-hero {
    height: auto;
  }

  .metrics,
  .grid.two,
  .grid.three,
  .grid.four,
  .mission-grid,
  .why-grid,
  .brand-logo-grid,
  .page-hero .section-inner,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .logo-carousel {
    padding: 0.25rem 0;
  }

  .client-logo {
    flex-basis: calc(100vw - 32px);
    min-height: 92px;
  }

  .enquiry-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section {
    padding: 64px 0;
  }

  .procurement-section,
  .support-section {
    padding: 34px 0;
  }

  .procurement-copy h2,
  .support-copy h2 {
    white-space: normal;
  }

  .section-head,
  .cta-band .section-inner {
    display: block;
  }

  .solution-cta .section-inner {
    display: grid;
    gap: 1.25rem;
  }

  .solution-cta h2 {
    white-space: normal;
  }

  .page-hero .section-inner {
    height: auto;
    min-height: 287px;
    padding: 3rem 0;
  }

  .page-hero img {
    height: 220px;
  }

  .about-hero h1,
  .fade-hero h1 {
    white-space: normal;
  }

  .about-hero img,
  .fade-hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-position: center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 28%, #000 72%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 28%, #000 72%);
  }

  .about-hero::after,
  .fade-hero::after {
    background: linear-gradient(90deg, #263949 0%, rgba(38, 57, 73, 0.98) 42%, rgba(38, 57, 73, 0.82) 72%, rgba(38, 57, 73, 0.48) 100%);
  }

  .fade-hero::after {
    background: linear-gradient(90deg, #263949 0%, rgba(38, 57, 73, 0.99) 42%, rgba(38, 57, 73, 0.94) 72%, rgba(38, 57, 73, 0.76) 100%);
  }

  .mission-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-actions,
  .page-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
