﻿:root {
  --ink: #0c1719;
  --ink-2: #132427;
  --muted: #667276;
  --line: #dbe2e4;
  --paper: #ffffff;
  --soft: #f3f6f4;
  --soft-2: #e7f0eb;
  --teal: #073237;
  --teal-2: #0c454b;
  --blue: #1e96c8;
  --red: #f05a42;
  --steel: #cad7dc;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: var(--teal);
  box-shadow: 0 18px 55px rgba(7, 50, 55, 0.16);
}

.contact-strip {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding: 9px 40px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.main-nav {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 78px;
  padding: 0 40px;
}

.brand img,
.site-footer img {
  width: 144px;
  filter: brightness(0) invert(1);
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(6px, 0.85vw, 16px);
  font-size: 13px;
  font-weight: 800;
}

.menu-group {
  position: relative;
}

.menu-link,
.submenu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.78);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.submenu-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.menu-link:hover,
.menu-link.active,
.menu-group.is-active > .menu-link,
.menu-group:hover > .menu-link,
.menu-group:focus-within > .menu-link {
  color: #fff;
}

.menu-group:hover .submenu-toggle::after,
.menu-group:focus-within .submenu-toggle::after,
.menu-group.is-open .submenu-toggle::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 60;
  display: grid;
  gap: 6px;
  width: 320px;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(219, 226, 228, 0.95);
  box-shadow: 0 26px 70px rgba(7, 31, 34, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 170ms ease, transform 170ms ease;
}

.submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.submenu a {
  display: grid;
  gap: 3px;
  padding: 14px;
  color: var(--ink);
  border-left: 3px solid transparent;
  background: #fff;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.submenu a strong {
  font-size: 14px;
  line-height: 1.2;
}

.submenu a span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.submenu a:hover,
.submenu a.active {
  border-color: var(--red);
  background: var(--soft);
  transform: translateX(2px);
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: var(--red);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #fff;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 118px);
  overflow: hidden;
  color: #fff;
  background: var(--teal);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 4000ms ease;
}

.hero-bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 20, 22, 0.9) 0%, rgba(4, 20, 22, 0.68) 42%, rgba(4, 20, 22, 0.2) 100%),
    linear-gradient(180deg, rgba(4, 20, 22, 0.18), rgba(4, 20, 22, 0.75));
}

.cloud-network {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.82;
}

.network-line,
.network-node {
  position: absolute;
  display: block;
}

.network-line {
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(127, 210, 238, 0.78), rgba(240, 90, 66, 0.44), transparent);
  box-shadow: 0 0 18px rgba(127, 210, 238, 0.18);
  animation: networkGlow 4.6s ease-in-out infinite;
}

.network-line::after {
  content: "";
  position: absolute;
  inset: -1px 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.94) 48%, transparent 66%);
  transform: translateX(-100%);
  animation: networkSignal 5.8s linear infinite;
}

.network-node {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(189, 236, 249, 0.9);
  border-radius: 50%;
  background: rgba(127, 210, 238, 0.22);
  box-shadow: 0 0 0 6px rgba(127, 210, 238, 0.08), 0 0 26px rgba(127, 210, 238, 0.55);
  animation: nodePulse 3.2s ease-in-out infinite;
}

.network-line-a { left: 66%; top: 23%; width: 23%; transform: rotate(12deg); }
.network-line-b { left: 73%; top: 35%; width: 20%; transform: rotate(-18deg); animation-delay: 0.7s; }
.network-line-c { left: 67%; top: 52%; width: 25%; transform: rotate(18deg); animation-delay: 1.4s; }
.network-line-d { left: 76%; top: 66%; width: 16%; transform: rotate(-24deg); animation-delay: 2.1s; }
.network-line-e { left: 82%; top: 18%; width: 14%; transform: rotate(58deg); animation-delay: 2.8s; }

.network-node-a { left: 66%; top: 22.5%; }
.network-node-b { left: 80%; top: 27%; animation-delay: 0.35s; }
.network-node-c { left: 73%; top: 34.5%; animation-delay: 0.7s; }
.network-node-d { left: 86%; top: 44.5%; animation-delay: 1.05s; }
.network-node-e { left: 76%; top: 51%; animation-delay: 1.4s; }
.network-node-f { left: 90%; top: 63%; animation-delay: 1.75s; }

@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.35); opacity: 1; }
}

@keyframes networkGlow {
  0%, 100% { opacity: 0.25; filter: brightness(0.88); }
  48% { opacity: 0.82; filter: brightness(1.38); }
}

@keyframes networkSignal {
  0% { transform: translateX(-100%); opacity: 0; }
  12% { opacity: 0.8; }
  60% { opacity: 0.85; }
  100% { transform: translateX(100%); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 80px));
  padding: clamp(78px, 12vh, 150px) 0 210px 40px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero .kicker,
.dark-band .kicker,
.cta-panel .kicker {
  color: #7fd2ee;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 82px);
  max-width: 860px;
}

.home-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.4vw, 82px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 3.8vw, 56px);
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
}

.hero-content p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-facts {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 32px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 50, 55, 0.8);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.hero-facts div {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts strong {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.band {
  padding: clamp(72px, 9vw, 132px) 40px;
}

.wide-grid {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(40px, 7vw, 110px);
}

.lead-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.intro-band {
  background: var(--paper);
}

.service-band,
.product-preview,
.page-section.soft,
.band.soft {
  background: var(--soft);
}

.approval-band {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 50, 55, 0.97), rgba(7, 50, 55, 0.86)),
    url("assets/hero-warehouse.png") center / cover;
}

.approval-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1.3fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.approval-layout h2,
.approval-layout p {
  color: #fff;
}

.approval-mark,
.approval-card {
  display: grid;
  align-content: center;
  min-height: 300px;
  padding: 34px;
  color: #fff;
  background: rgba(240, 90, 66, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.approval-mark span,
.approval-card span {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.approval-mark strong,
.approval-card strong {
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.95;
}

.approval-mark small,
.approval-card small {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.section-title {
  max-width: 940px;
  margin-bottom: 44px;
}

.split-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  max-width: none;
}

.text-link {
  color: var(--teal);
  font-weight: 900;
  border-bottom: 2px solid var(--red);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.service-grid article {
  min-height: 310px;
  padding: 32px;
  background: #fff;
}

.service-grid span {
  display: inline-block;
  margin-bottom: 64px;
  color: var(--blue);
  font-weight: 900;
}

.service-grid p,
.product-tile p,
.range-card p,
.quality-step p,
.sector-card p {
  color: var(--muted);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  grid-template-rows: repeat(2, 280px);
  gap: 18px;
}

.preview-card {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--teal);
}

.preview-card.text-preview {
  background:
    linear-gradient(135deg, rgba(7, 50, 55, 0.98), rgba(12, 69, 75, 0.84)),
    radial-gradient(circle at 82% 20%, rgba(127, 210, 238, 0.18), transparent 30%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-card.text-preview::before {
  content: "";
  position: absolute;
  right: 26px;
  top: 26px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(127, 210, 238, 0.34);
  transform: rotate(45deg);
}

.preview-card.text-preview::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 28px;
  width: 72px;
  height: 3px;
  background: var(--red);
}

.preview-card.large {
  grid-row: 1 / span 2;
}

.preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 280ms ease, opacity 280ms ease;
}

.preview-card:hover img {
  transform: scale(1.04);
  opacity: 0.68;
}

.preview-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 8px;
}

.preview-card span {
  color: #9ce2f7;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-card strong {
  max-width: 520px;
  font-size: clamp(22px, 2.8vw, 42px);
  line-height: 1.05;
}

.dark-band {
  color: #fff;
  background: var(--teal);
}

.dark-band h2,
.dark-band p {
  color: #fff;
}

.industries-strip {
  padding-block: 62px;
  background: var(--paper);
}

.ticker-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ticker-list span {
  padding: 14px 20px;
  color: var(--teal);
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 900;
}

.cta-panel {
  padding: clamp(80px, 10vw, 150px) 40px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 50, 55, 0.98), rgba(12, 69, 75, 0.92)),
    radial-gradient(circle at 80% 20%, rgba(127, 210, 238, 0.18), transparent 32%);
}

.cta-content {
  width: min(940px, 100%);
}

.site-footer {
  color: #d9e4e7;
  background: #071f22;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 0.82fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: end;
  padding: 70px 40px 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 640px;
}

.footer-top > *,
.footer-grid > *,
.footer-bottom > * {
  min-width: 0;
}

.footer-brand p {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: 17px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer-badges span {
  margin: 0;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer .footer-approval-icon {
  display: block;
  width: min(210px, 100%);
  margin-top: 18px;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  filter: none;
}

.footer-enquiry {
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  border-left: 5px solid var(--red);
}

.footer-enquiry .button {
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.footer-enquiry h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
}

.footer-enquiry p {
  margin-bottom: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  padding: 44px 40px 54px;
}

.footer-column {
  max-width: 520px;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 18px;
}

.footer-column h2 {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer p,
.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 9px 0;
}

.footer-column a {
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(3px);
}

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

.footer-contact-list span,
.footer-contact-list a {
  margin: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 18px 40px;
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 430px;
  padding: 110px 40px 70px;
  color: #fff;
  background: var(--teal);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 25, 28, 0.9), rgba(5, 25, 28, 0.55)),
    var(--page-image, url("assets/hero-warehouse.png")) center / cover;
  transform: scale(1.03);
  animation: heroImageDrift 12s ease-in-out infinite alternate;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  width: min(980px, 100%);
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(40px, 5.2vw, 72px);
}

.page-hero p:not(.kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.page-hero .cloud-network {
  opacity: 0.42;
}

.page-hero .network-line-a { left: 54%; top: 22%; width: 28%; }
.page-hero .network-line-b { left: 63%; top: 34%; width: 26%; }
.page-hero .network-line-c { left: 58%; top: 53%; width: 30%; }
.page-hero .network-line-d { left: 69%; top: 68%; width: 22%; }
.page-hero .network-line-e { left: 77%; top: 16%; width: 16%; }

.page-hero .network-node-a { left: 54%; top: 21.5%; }
.page-hero .network-node-b { left: 72%; top: 26.5%; }
.page-hero .network-node-c { left: 64%; top: 33.5%; }
.page-hero .network-node-d { left: 82%; top: 45%; }
.page-hero .network-node-e { left: 69%; top: 52%; }
.page-hero .network-node-f { left: 88%; top: 64%; }

@keyframes heroImageDrift {
  0% { transform: scale(1.03) translate3d(0, 0, 0); }
  100% { transform: scale(1.08) translate3d(-1.2%, -0.8%, 0); }
}

.page-section {
  padding: clamp(70px, 8vw, 120px) 40px;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}

.content-panel {
  padding: 36px;
  background: var(--soft);
  border-left: 6px solid var(--red);
}

.content-panel p {
  color: var(--muted);
}

.image-panel {
  min-height: 420px;
  overflow: hidden;
}

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

.values-grid,
.product-grid,
.range-grid,
.quality-grid,
.sector-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.value-card,
.product-tile,
.range-card,
.quality-step,
.sector-card,
.contact-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
}

.value-card span,
.quality-step span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 900;
}

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

.product-tile {
  display: grid;
  grid-template-rows: 250px auto;
  padding: 0;
  overflow: hidden;
}

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

.product-tile div {
  padding: 28px;
}

.spec-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.spec-list li {
  padding-left: 18px;
  position: relative;
}

.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: var(--red);
}

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

.range-card h3 {
  color: var(--teal);
}

.range-card strong {
  display: block;
  margin-top: 18px;
}

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

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

.sector-card {
  min-height: 220px;
}

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

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

.career-card,
.download-card {
  min-height: 270px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
}

.career-card span {
  display: inline-block;
  margin-bottom: 34px;
  padding: 8px 12px;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.career-card a,
.download-card a,
.content-panel a {
  color: var(--teal);
  font-weight: 900;
}

.contact-grid {
  grid-template-columns: 0.75fr 1.25fr;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-card a {
  display: block;
  color: var(--teal);
  font-weight: 900;
}

.page-summary {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

.page-summary .lead-copy {
  display: grid;
  gap: 18px;
}

.content-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.evidence-grid,
.process-flow,
.capability-grid,
.document-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.evidence-card,
.capability-card,
.process-step,
.document-card,
.market-card {
  min-height: 230px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
}

.evidence-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.evidence-card span,
.process-step span,
.capability-card span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-card p,
.process-step p,
.document-card p,
.market-card p {
  color: var(--muted);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.split-panel.reverse {
  grid-template-columns: minmax(320px, 1.08fr) minmax(280px, 0.92fr);
}

.statement-panel {
  padding: clamp(34px, 5vw, 58px);
  color: #fff;
  background: var(--teal);
}

.statement-panel p,
.statement-panel h2 {
  color: #fff;
}

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

.corporate-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.corporate-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--red);
}

.material-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
}

.material-table th,
.material-table td {
  padding: 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.material-table th {
  color: var(--teal);
  background: var(--soft);
}

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

.section-note {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.enquiry-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  background: var(--soft);
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.enquiry-form label span {
  color: var(--red);
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--line);
  background: #fff;
  outline: 0;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--blue);
}

.captcha-field {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.captcha-field input {
  max-width: 180px;
}

.form-alert {
  padding: 16px 18px;
  border-left: 5px solid var(--blue);
  background: #fff;
  font-weight: 750;
}

.form-alert ul {
  margin: 10px 0 0;
  padding-left: 20px;
  font-weight: 650;
}

.form-alert.success {
  border-color: #1fa855;
}

.form-alert.error {
  border-color: var(--red);
}

.form-website {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.map-full img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.whatsapp-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  color: #fff;
  background: #1fa855;
  box-shadow: 0 18px 45px rgba(12, 23, 25, 0.22);
  font-weight: 900;
}

.whatsapp-chat::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
}

.home-page .whatsapp-chat {
  bottom: 180px;
}

@media (max-width: 1180px) {
  .main-nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 72px;
  }

  .menu-toggle {
    display: block !important;
    justify-self: end;
    z-index: 70;
  }

  .nav-cta {
    display: none;
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    justify-content: stretch;
    align-items: stretch;
    gap: 8px;
    max-height: calc(100vh - 72px);
    padding: 18px 40px 26px;
    overflow-y: auto;
    background: rgba(7, 50, 55, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 55px rgba(7, 31, 34, 0.28);
  }

  .menu.is-open {
    display: grid;
  }

  .menu-group {
    display: grid;
    gap: 8px;
  }

  .menu-link,
  .submenu-toggle {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    padding: 0 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
  }

  .submenu {
    position: static;
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease;
  }

  .submenu::before {
    display: none;
  }

  .menu-group.is-open > .submenu {
    max-height: 360px;
  }

  .submenu a {
    margin-left: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .submenu a span {
    color: rgba(255, 255, 255, 0.64);
  }

  .submenu a:hover,
  .submenu a.active {
    background: rgba(255, 255, 255, 0.11);
    border-color: var(--red);
    transform: none;
  }

  .contact-strip {
    display: none;
  }

  .home-hero {
    min-height: 760px;
  }

  .hero-content {
    width: calc(100% - 60px);
    padding-left: 30px;
  }

  .cloud-network {
    inset: 0;
    width: auto;
    opacity: 0.34;
  }

  .hero-facts,
  .service-grid,
  .values-grid,
  .quality-grid,
  .sector-grid,
  .career-grid,
  .download-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-facts {
    left: 30px;
    right: 30px;
  }

  .two-col,
  .content-grid,
  .contact-grid,
  .page-summary,
  .split-panel,
  .split-panel.reverse,
  .approval-layout {
    grid-template-columns: 1fr;
  }

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

  .evidence-grid,
  .capability-grid,
  .process-flow,
  .market-grid,
  .document-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .main-nav,
  .band,
  .page-section,
  .page-hero,
  .cta-panel,
  .footer-top,
  .footer-grid,
  .footer-bottom {
    padding-left: 22px;
    padding-right: 22px;
  }

  .home-hero {
    min-height: auto;
    padding-bottom: 24px;
  }

  .hero-content {
    width: auto;
    max-width: 340px;
    margin-right: 28px;
    padding: 58px 0 32px 22px;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.08;
  }

  .home-hero .kicker {
    max-width: 300px;
  }

  .hero-content p {
    max-width: 100%;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .hero-actions .button {
    min-width: 0;
    padding: 0 14px;
  }

  .cloud-network {
    display: none;
  }

  .hero-facts,
  .preview-grid,
  .range-grid,
  .values-grid,
  .quality-grid,
  .sector-grid,
  .career-grid,
  .download-grid,
  .evidence-grid,
  .capability-grid,
  .process-flow,
  .market-grid,
  .document-grid,
  .footer-top,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .page-hero-content {
    width: auto;
    max-width: 330px;
  }

  .page-hero p:not(.kicker),
  .section-note,
  .lead-copy {
    font-size: 17px;
  }

  .page-section h2,
  .band h2,
  .lead-copy,
  .section-note,
  .page-summary > * {
    max-width: 330px;
    overflow-wrap: anywhere;
  }

  .page-section h2,
  .band h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.12;
  }

  .material-table,
  .material-table tbody,
  .material-table tr,
  .material-table th,
  .material-table td {
    display: block;
  }

  .material-table tr {
    border-bottom: 1px solid var(--line);
  }

  .material-table th,
  .material-table td {
    border-bottom: 0;
  }

  .footer-top {
    padding-top: 52px;
    padding-bottom: 30px;
  }

  .footer-grid {
    gap: 24px;
    padding-top: 32px;
    padding-bottom: 38px;
  }

  .footer-enquiry {
    padding: 24px;
  }

  .footer-brand p,
  .footer-enquiry p,
  .footer-contact-list,
  .footer-column a,
  .footer-column span {
    max-width: calc(100vw - 44px);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .footer-brand,
  .footer-enquiry,
  .footer-column {
    width: calc(100vw - 88px);
    max-width: 320px;
  }

  .footer-enquiry .button {
    width: 100%;
    max-width: 270px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer-bottom {
    display: grid;
  }

  .hero-facts {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0 22px;
  }

  .hero-facts div {
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .preview-grid {
    grid-template-rows: none;
  }

  .preview-card,
  .preview-card.large {
    grid-row: auto;
    min-height: 300px;
  }

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

  .split-title {
    display: block;
  }

  .whatsapp-chat {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 14px;
    font-size: 13px;
  }

  .home-page .whatsapp-chat {
    bottom: 14px;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    position: absolute;
    right: clamp(22px, calc(100vw - 368px), 132px);
    top: 13px;
    display: block !important;
    background: rgba(255, 255, 255, 0.06);
  }

  .whatsapp-chat {
    width: 54px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .whatsapp-chat::before {
    width: 16px;
    height: 16px;
  }
}



