/* ==========================================================================
   MOKALENG SMP — Engineering. Solutions. Growth.
   Design: teal-dominant, modern industrial, clean hierarchy
   Font: Outfit (single family, all weights)
   ========================================================================== */

/* ── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  /* Brand teal — sourced from company profile */
  --teal:        #009EA5;   /* primary teal */
  --teal-dark:   #066B70;   /* logo left / dark elements */
  --teal-deep:   #054E52;   /* deepest teal */
  --teal-mid:    #1DBDB8;   /* lighter accent */
  --teal-light:  #3DD4CE;   /* on dark backgrounds */
  --teal-pale:   #E4F7F7;   /* teal tint on light bg */

  /* Darks */
  --navy:        #0B1A1F;   /* primary dark bg */
  --navy-mid:    #10252C;   /* cards on dark */
  --navy-soft:   #1A3540;   /* lighter dark */

  /* Accent */
  --copper:      #C2703B;   /* warm accent, use sparingly */
  --copper-light:#F0BE96;   /* copper on dark */

  /* Neutrals */
  --ink:         #131F26;   /* body text */
  --ink-soft:    #485E6A;   /* secondary text */
  --steel:       #7A9099;   /* muted text */
  --steel-light: #B0C4CB;   /* very muted */
  --bone:        #F6F2EB;   /* light page bg — warm */
  --bone-dark:   #EDE8DD;   /* slightly darker bone */
  --white:       #FFFFFF;

  /* Semantic */
  --surface:     var(--white);
  --bg:          var(--bone);
  --line:        rgba(10, 26, 31, 0.11);
  --line-soft:   rgba(10, 26, 31, 0.06);
  --line-teal:   rgba(0, 158, 165, 0.25);

  /* Shadows */
  --shadow-sm:   0 8px 24px -16px rgba(0,0,0,0.22);
  --shadow-md:   0 20px 52px -28px rgba(0,0,0,0.28);
  --shadow-lg:   0 36px 80px -40px rgba(0,0,0,0.35);

  /* Type */
  --display: "Outfit", system-ui, sans-serif;
  --body:    "Outfit", system-ui, sans-serif;

  /* Scale */
  --step--1: clamp(0.78rem, 0.74rem + 0.18vw, 0.88rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --step-1:  clamp(1.15rem, 1.05rem + 0.45vw, 1.38rem);
  --step-2:  clamp(1.45rem, 1.24rem + 0.9vw, 2rem);
  --step-3:  clamp(1.9rem, 1.5rem + 1.85vw, 3rem);
  --step-4:  clamp(2.4rem, 1.75rem + 3vw, 4.2rem);
  --step-5:  clamp(3rem, 2rem + 4.5vw, 5.6rem);

  /* Space */
  --pad-x:    clamp(1.15rem, 0.6rem + 2.6vw, 3.5rem);
  --sec-y:    clamp(4rem, 2.5rem + 5vw, 7.5rem);
  --sec-y-sm: clamp(2.5rem, 1.5rem + 3.5vw, 5rem);
  --maxw:     1240px;
  --radius:   8px;
  --radius-sm: 5px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --speed: 0.46s;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4, p, li, a, span { overflow-wrap: break-word; }
:focus-visible {
  outline: 2.5px solid var(--teal);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--copper);
  flex: none;
}
.eyebrow.on-dark { color: var(--teal-light); }
.eyebrow.on-dark::before { background: var(--teal-light); }

.lead {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--ink-soft);
}
.muted { color: var(--ink-soft); }

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  min-width: 0;
}
.section {
  padding-block: var(--sec-y);
  position: relative;
}
.section--tight { padding-block: var(--sec-y-sm); }
.section--dark {
  background: var(--navy);
  color: var(--bone);
}
.section--dark h1, .section--dark h2,
.section--dark h3, .section--dark h4 { color: var(--white); }
.section--teal {
  background: var(--teal);
  color: var(--white);
}
.section--teal-deep {
  background: var(--teal-deep);
  color: var(--bone);
}
.section--bone { background: var(--bone-dark); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
}
.split > *,
.grid > *,
.contact-grid > *,
.about-feature > *,
.landing-about > *,
.why-grid > *,
.industry-band > * {
  min-width: 0;
}
.split--reverse { grid-template-columns: 1fr 1fr; }
.split--reverse .split__media { order: -1; }
@media (max-width: 860px) {
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}
.split__media img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.grid { display: grid; gap: clamp(1rem, 0.6rem + 1.5vw, 1.75rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
}

/* ── Heading block ───────────────────────────────────────────────────────── */
.heading { max-width: 62ch; }
.heading__title {
  font-size: var(--step-3);
  margin-top: 0.6rem;
}
.heading__text {
  margin-top: 0.9rem;
  max-width: 52ch;
  color: var(--ink-soft);
}
.heading--center { margin-inline: auto; text-align: center; }
.heading--center .eyebrow { justify-content: center; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 720px) {
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.72rem 1.25rem;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition:
    background var(--speed) var(--ease),
    border-color var(--speed) var(--ease),
    color var(--speed) var(--ease),
    transform var(--speed) var(--ease),
    box-shadow var(--speed) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: none;
  transition: transform var(--speed) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(3px); }

/* Primary — teal */
.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 28px -16px rgba(0,158,165,0.55);
}
.btn--primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 14px 34px -16px rgba(0,158,165,0.65);
}

/* Solid dark */
.btn--solid {
  background: var(--navy);
  color: var(--white);
}
.btn--solid:hover { background: var(--navy-soft); }

/* Ghost — outlined */
.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255,255,255,0.55);
}
.btn--ghost:hover {
  border-color: var(--teal);
  background: var(--teal-pale);
  color: var(--teal-dark);
}

/* On dark bg */
.btn--on-dark {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.btn--on-dark:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.4);
}

/* Copper CTA */
.btn--copper {
  background: var(--copper);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 10px 28px -14px rgba(194,112,59,0.6);
}
.btn--copper:hover {
  background: #a85e30;
  box-shadow: 0 14px 34px -14px rgba(194,112,59,0.7);
}

/* Teal outline (light bg) */
.btn--teal-outline {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: transparent;
}
.btn--teal-outline:hover {
  background: var(--teal);
  color: var(--white);
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: background 0.45s ease, box-shadow 0.45s ease, backdrop-filter 0.45s ease;
}
/* Soft top scrim so the floating controls stay readable over image heroes. */
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,21,25,0.2), rgba(8,21,25,0));
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.45s ease;
}
.header.is-solid {
  background: transparent;
  box-shadow: none;
}
.header.is-solid::before { opacity: 0.35; }
.header__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - clamp(1rem, 6vw, 5rem)), calc(var(--maxw) - 2rem));
  max-width: calc(var(--maxw) - 2rem);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  height: 70px;
  margin: 12px auto 0;
  padding: 0.5rem clamp(0.55rem, 1vw, 0.9rem);
  border: 1px solid rgba(255,255,255,0.46);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(255,255,255,0.34)),
    rgba(255,255,255,0.28);
  backdrop-filter: blur(24px) saturate(1.55);
  -webkit-backdrop-filter: blur(24px) saturate(1.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.78),
    inset 0 -1px 0 rgba(8,21,25,0.08),
    0 22px 54px -36px rgba(0,0,0,0.78);
  transition: height 0.4s cubic-bezier(0.4,0,0.2,1), background 0.4s ease, box-shadow 0.4s ease;
}
.header.is-solid .header__inner {
  height: 64px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.88), rgba(255,255,255,0.54)),
    rgba(255,255,255,0.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.86),
    0 20px 46px -34px rgba(0,0,0,0.68);
}

/* Brand / Logo */
.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  min-width: 218px;
  padding-inline: 0.25rem 0.7rem;
  border-radius: 999px;
}
.brand__logo {
  height: 32px;
  width: auto;
  display: block;
  filter: none;
  transition: height 0.4s cubic-bezier(0.4,0,0.2,1), transform var(--speed) var(--ease);
}
.header .brand__logo {
  height: 42px;
  max-width: 210px;
  object-fit: contain;
}
.header.is-solid .brand__logo {
  height: 36px;
}
.brand:hover .brand__logo { transform: translateY(-1px); }
/* Nav */
.nav {
  display: flex;
  align-items: center;
  margin-inline: auto;
  gap: 0.12rem;
  padding: 0.28rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}
.nav__link {
  position: relative;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(19,31,38,0.72);
  text-shadow: none;
  transition: color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.nav__link:hover {
  color: var(--teal-dark);
  background: rgba(0,158,165,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}
.nav__link[aria-current="page"] {
  color: var(--white);
  background: linear-gradient(180deg, var(--teal-mid) 0%, var(--teal-dark) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -1px 2px rgba(0,0,0,0.15),
    0 10px 20px -14px rgba(0,158,165,0.85);
}
.header__cta { display: flex; align-items: center; gap: 0.6rem; flex: none; }
.header__cta .btn {
  min-height: 42px;
  padding: 0.58rem 1.1rem;
  font-size: 0.88rem;
  border-color: rgba(255,255,255,0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 18px 40px -24px rgba(0,158,165,0.95);
}

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid rgba(10,26,31,0.12) !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.72) !important;
  position: relative;
  flex: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.burger span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: var(--teal-deep);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav { display: none; }
  .burger { display: flex; align-items: center; justify-content: center; margin-left: auto; }
  .header__cta { margin-left: 0; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy);
  padding: var(--pad-x);
  padding-top: 96px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__close {
  position: absolute;
  top: 20px; right: var(--pad-x);
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: var(--radius-sm) !important;
  background: transparent !important;
  color: var(--white);
  font-size: 1.4rem;
  display: grid;
  place-items: center;
}
.mobile-menu__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--display);
  font-size: clamp(1.8rem, 1.3rem + 3vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu__link .spec {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--teal-light);
  letter-spacing: 0.08em;
}
.mobile-menu__cta {
  margin-top: auto;
  padding-top: 2rem;
  display: grid;
  gap: 0.7rem;
}
.mobile-menu__cta .btn { justify-content: center; }
body.menu-open { overflow: hidden; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: -82px;
  padding-top: 82px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 88% 88%, rgba(194,112,59,0.16) 0%, transparent 40%),
    radial-gradient(ellipse at 65% 15%, rgba(0,158,165,0.12) 0%, transparent 48%),
    #0F1A1A;
}

/* Hero background image layer */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(1.05) contrast(1.05);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11,26,31,1.0) 0%,
    rgba(11,26,31,0.95) 25%,
    rgba(11,26,31,0.5) 55%,
    rgba(11,26,31,0.0) 100%
  );
}

/* Grid overlay — off */
.hero__grid-overlay { display: none; }

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
  padding-top: clamp(3rem, 5vw, 6rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.hero__eyebrow { color: var(--teal-light); margin-bottom: 1.2rem; }
.hero__eyebrow::before { background: var(--teal-light); }

.hero__title {
  font-size: clamp(2.6rem, 1.8rem + 3.5vw, 5.2rem);
  line-height: 1;
  color: var(--white);
  max-width: 14ch;
  letter-spacing: -0.02em;
}
.hero__title .accent { color: var(--teal-light); }

.hero__sub {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.2rem);
  line-height: 1.6;
  color: rgba(245,242,236,0.82);
  max-width: 44ch;
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 500;
}
.hero__meta-item svg {
  width: 16px;
  height: 16px;
  flex: none;
  stroke: var(--teal-light);
}
.hero__meta-dot {
  color: rgba(255,255,255,0.25);
  font-size: 1rem;
}

/* Hero stats panel (right side) */
.hero__panel {
  display: grid;
  gap: 1px;
  padding: 5px;
  border: 1px solid rgba(0,158,165,0.22);
  border-radius: var(--radius-xl);
  background: rgba(0,158,165,0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 64px -40px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.06);
}
.hero__panel > div {
  padding: 1.1rem 1.2rem;
  border-radius: calc(var(--radius-xl) - 6px);
  background: rgba(11,26,31,0.65);
}
.hero__panel-kicker {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.2rem;
}
.hero__panel strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.3rem, 1rem + 1.1vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
}

/* ── Trust strip ─────────────────────────────────────────────────────────── */
.trust-strip {
  background: #0E1814;
  border-block: 1px solid rgba(0,0,0,0.18);
}
.trust-strip__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-block: 1.1rem;
}
.trust-strip__row span {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0,158,165,0.22);
  background: rgba(0,158,165,0.07);
  color: rgba(255,255,255,0.72);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ── About feature (immersive split) ────────────────────────────────────── */
.about-feature-wrap { background: var(--bone); }
.about-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.1);
}
.about-feature__media {
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.about-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-feature__media-bar {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--teal);
}
.about-feature__body {
  background: var(--white);
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.about-feature__eyebrow { color: var(--copper) !important; }
.about-feature__eyebrow::before { background: var(--copper) !important; }
.about-feature__title {
  color: var(--navy);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0.6rem 0 1.4rem;
}
.about-feature__lead {
  color: var(--ink);
  font-size: var(--step-0);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-feature__text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}
.about-feature__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.about-feature__stats div {
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}
.about-feature__stats div:last-child { border-right: none; padding-right: 0; }
.about-feature__stats div:not(:first-child) { padding-left: 1rem; }
.about-feature__stats strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.about-feature__stats strong em {
  font-style: normal;
  font-size: 1.1rem;
  color: var(--copper);
}
.about-feature__stats span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-top: 0.4rem;
  line-height: 1.4;
}
.about-feature__actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

@media (max-width: 900px) {
  .about-feature { grid-template-columns: 1fr; }
  .about-feature__media { min-height: 300px; }
  .about-feature__body { padding: 2.5rem 2rem; }
  .about-feature__stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0; }
  .about-feature__stats div { border-right: none; padding: 0; }
  .about-feature__stats div:not(:first-child) { padding-left: 0; }
}

/* ── Landing page sections ───────────────────────────────────────────────── */
.landing-intro {
  background: #FFFEF8;
}
.landing-about {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.landing-about__copy {
  max-width: 62ch;
}
.landing-about__text {
  margin-top: 1rem;
  color: var(--ink-soft);
  max-width: 56ch;
}
.landing-about__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}
.landing-about__proof span {
  padding: 0.44rem 0.78rem;
  border-radius: 999px;
  border: 1px solid var(--line-teal);
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 600;
}
.landing-about__panel {
  display: grid;
  gap: 0.9rem;
}
.landing-about__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  aspect-ratio: 5/3;
  background: var(--teal-pale);
  box-shadow: var(--shadow-md);
}
.landing-about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,26,31,0.22));
  pointer-events: none;
}
.landing-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.landing-metrics div {
  padding: 1.15rem 1rem;
  background: var(--white);
  min-height: 7.5rem;
}
.landing-metrics strong {
  display: block;
  font-size: clamp(1.5rem, 1.1rem + 1vw, 2rem);
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1;
}
.landing-metrics span {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

/* Service cards — landing */
.landing-services {
  background: var(--bone-dark);
  border-block: 1px solid var(--line);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--speed) var(--ease),
    box-shadow var(--speed) var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.service-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--teal-pale);
  position: relative;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  background: rgba(11,26,31,0.85);
  color: var(--teal-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service-card__body {
  padding: clamp(1.2rem, 1rem + 1vw, 1.7rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__title {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  color: var(--ink);
}
.service-card__desc {
  margin-top: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}
.caps {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
}
.caps li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.caps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.service-card__link {
  margin-top: auto;
  padding-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-dark);
}
.service-card__link svg { width: 0.95rem; height: 0.95rem; transition: transform var(--speed) var(--ease); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ── Delivery/how we work section ────────────────────────────────────────── */
.delivery-system {
  background:
    radial-gradient(ellipse at 90% 20%, rgba(194,112,59,0.1), transparent 38%),
    radial-gradient(ellipse at 10% 70%, rgba(0,158,165,0.12), transparent 40%),
    #0F1A1A;
}

/* ── Why Mokaleng ────────────────────────────────────────────────────────── */
.why-choose {
  background:
    radial-gradient(ellipse at 88% 12%, rgba(194,112,59,0.1), transparent 40%),
    radial-gradient(ellipse at 8% 85%, rgba(0,158,165,0.13), transparent 42%),
    #0F1A1A;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.why-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 1rem 0.5rem 0;
}
.why-intro__title {
  color: var(--white);
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0.7rem 0 1rem;
}
.why-intro__text {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 36ch;
}
.why-card {
  position: relative;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
  transition: border-color var(--speed) var(--ease), background var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0,158,165,0.45);
  transform: translateY(-4px);
}
.why-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: linear-gradient(180deg, rgba(0,158,165,0.28), rgba(0,158,165,0.12));
  border: 1px solid rgba(0,158,165,0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
.why-card__icon svg { width: 24px; height: 24px; stroke: var(--teal-light); }
.why-card__title {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}
.why-card__text {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-intro { padding-bottom: 0.5rem; }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

.feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 1rem + 1vw, 1.8rem);
  transition: border-color var(--speed) var(--ease), background var(--speed) var(--ease);
}
.feature:hover {
  border-color: rgba(0,158,165,0.55);
  background: rgba(0,158,165,0.06);
}
.feature__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(0,158,165,0.15);
  color: var(--teal-light);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.feature__title {
  color: var(--white);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.22rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature__text { color: rgba(245,242,236,0.65); font-size: 0.95rem; line-height: 1.55; }

/* ── Industry band ───────────────────────────────────────────────────────── */
.industry-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 860px) {
  .industry-band { grid-template-columns: 1fr; }
}
.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.industry-pills span {
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--teal-pale);
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ── Trusted-by marquee ──────────────────────────────────────────────────── */
.trusted {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.trusted__label {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.8rem;
}
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  animation: marquee-scroll 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__chip {
  flex: none;
  height: 82px;
  min-width: 188px;
  padding: 0 2.25rem;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.marquee__chip:hover {
  box-shadow: 0 12px 30px -16px rgba(0,0,0,0.25);
  transform: translateY(-3px);
}
.marquee__chip img {
  height: 42px;
  max-width: 138px;
  width: auto;
  object-fit: contain;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 0.625rem)); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ── CTA section ─────────────────────────────────────────────────────────── */
.cta {
  position: relative;
  background: var(--teal-deep);
  overflow: hidden;
}
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
/* Left-weighted scrim keeps text crisp; plant shows through on the right */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4,46,49,0.97) 0%, rgba(4,46,49,0.85) 42%, rgba(4,46,49,0.55) 75%, rgba(4,46,49,0.4) 100%),
    linear-gradient(0deg, rgba(4,46,49,0.6) 0%, transparent 45%),
    rgba(4,46,49,0.35);
}
/* Thin teal accent bar along the top edge */
.cta::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 2;
  background: linear-gradient(90deg, var(--teal-light), var(--teal) 40%, transparent 90%);
}
.cta__inner {
  position: relative;
  z-index: 3;
  max-width: 60ch;
  color: var(--white);
}
.cta__inner .eyebrow { margin-bottom: 1rem; }
.cta__title {
  font-size: var(--step-3);
  color: var(--white);
  max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.cta__text {
  margin-top: 1rem;
  font-size: var(--step-1);
  color: rgba(255,255,255,0.88);
  max-width: 46ch;
}
.cta__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cta .btn--primary {
  background: var(--white);
  color: var(--teal-deep);
  box-shadow: 0 10px 30px -12px rgba(0,0,0,0.4);
}
.cta .btn--primary:hover { background: var(--teal-pale); color: var(--teal-dark); }

/* ── Page hero (inner pages) ─────────────────────────────────────────────── */
.page-hero {
  position: relative;
  background: var(--navy);
  color: var(--bone);
  margin-top: -82px;
  padding-top: clamp(8rem, 6rem + 5vw, 10.5rem);
  padding-bottom: clamp(3.5rem, 2.5rem + 3vw, 5.5rem);
  overflow: hidden;
  isolation: isolate;
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(0.9);
}
.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,26,31,0.85) 0%, rgba(11,26,31,0.5) 50%, rgba(11,26,31,0.15) 100%),
    linear-gradient(180deg, rgba(11,26,31,0.3) 0%, rgba(11,26,31,0.6) 100%);
}
/* Page hero grid — off */
.page-hero__grid { display: none; }
.page-hero__inner { position: relative; }
.page-hero__title {
  font-size: clamp(2.4rem, 1.8rem + 2.5vw, 4.2rem);
  color: var(--white);
  max-width: min(18ch, 100%);
  margin-top: 0.7rem;
}
.page-hero__text {
  margin-top: 1rem;
  max-width: 50ch;
  font-size: var(--step-1);
  color: rgba(245,242,236,0.82);
  line-height: 1.58;
}

/* Breadcrumbs */
.crumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(245,242,236,0.55);
  margin-bottom: 1.1rem;
}
.crumbs a { color: var(--teal-light); }
.crumbs a:hover { color: var(--white); }
.crumbs .sep { opacity: 0.45; }

/* ── Service detail blocks (services page) ───────────────────────────────── */
.service-block { scroll-margin-top: 90px; }
.service-block--lined { border-block: 1px solid var(--line); }
.service-block__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.service-block__no {
  font-size: var(--step-3);
  font-weight: 800;
  color: var(--bone-dark);
  line-height: 0.9;
  flex: none;
}
.service-block__title {
  font-size: var(--step-2);
  color: var(--ink);
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
  margin-top: 1.2rem;
}
@media (max-width: 580px) { .cap-grid { grid-template-columns: 1fr; } }
.cap-grid li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.93rem;
  color: var(--ink-soft);
}
.cap-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* Service nav cards (services page top) */
.svc-nav { background: var(--navy); }
.svc-nav a.feature { text-decoration: none; }
.svc-nav .feature__check {
  width: 36px; height: 36px;
  border: 1.5px solid var(--teal-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--teal-light);
  margin-bottom: 0.8rem;
}
.svc-nav .feature__check svg { width: 1rem; }

/* ── Value cards ─────────────────────────────────────────────────────────── */
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--speed) var(--ease), border-top-color var(--speed) var(--ease);
}
.value-card:hover { transform: translateY(-4px); border-top-color: var(--teal-dark); }
.value-card__title { font-size: 1.1rem; color: var(--ink); margin-bottom: 0.5rem; }
.value-card__text { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.55; }

/* ── Vision / mission ───────────────────────────────────────────────────── */
.vision-media { aspect-ratio: 3/4; }
.vision-block {
  border-left: 3px solid var(--teal);
  padding-left: 1.3rem;
}
.vision-block--mission { border-left-color: var(--teal-mid); }
.vision-block__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.vision-block__text { font-size: var(--step-1); }

/* ── Principles strip ────────────────────────────────────────────────────── */
.principles-strip {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(61,212,206,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(6,107,112,0.6) 0%, transparent 50%),
    var(--teal-dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.principles-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}
.principles-strip__head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.principles-strip__title {
  color: var(--white);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin-top: 0.6rem;
}
.principles-strip__row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.principle {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}
.principle__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  flex: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.principle__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
}
.principle__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.principle__text {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.principle__divider {
  width: 1px;
  height: 120px;
  background: rgba(255,255,255,0.15);
  flex: none;
  margin-top: 14px;
}

@media (max-width: 900px) {
  .principles-strip__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
  }
  .principle__divider { display: none; }
}
@media (max-width: 480px) {
  .principles-strip__row { grid-template-columns: 1fr; }
}

/* ── Stats strip ─────────────────────────────────────────────────────────── */
/* ── About stats strip ───────────────────────────────────────────────────── */
.about-stats-strip {
  background: var(--teal-deep);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.about-stats-strip__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.about-stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.about-stats-strip__num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.about-stats-strip__num em {
  font-style: normal;
  font-size: 1.3rem;
  color: var(--teal-light);
  font-weight: 700;
}
.about-stats-strip__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
  line-height: 1.4;
}
.about-stats-strip__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex: none;
}

@media (max-width: 640px) {
  .about-stats-strip__row { flex-wrap: wrap; gap: 2rem; }
  .about-stats-strip__item { flex: 0 0 calc(50% - 0.5rem); }
  .about-stats-strip__divider { display: none; }
}

.stats { background: #111F1C; }
.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(1.4rem, 1rem + 1.5vw, 2.2rem) clamp(1rem, 0.7rem + 1vw, 1.8rem);
  border-left: 1px solid rgba(255,255,255,0.07);
}
.stat:first-child { border-left: none; }
.stat__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.5rem);
  color: var(--white);
  line-height: 1;
}
.stat__num .unit { color: var(--teal-light); }
.stat__label {
  margin-top: 0.5rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
@media (max-width: 720px) {
  .stats__row { grid-template-columns: repeat(2, 1fr); }
  .stat { border-top: 1px solid rgba(255,255,255,0.07); }
  .stat:nth-child(odd) { border-left: none; }
}
@media (max-width: 400px) {
  .stats__row { grid-template-columns: 1fr; }
  .stat { border-left: none; }
}

/* ── Client logos ────────────────────────────────────────────────────────── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 720px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
.clients-grid--compact .client-cell { aspect-ratio: 3/1; }
.client-cell {
  background: #fff;
  aspect-ratio: 3/2;
  display: grid;
  place-items: center;
  padding: 1.5rem 1.75rem;
}
.client-logo-img {
  max-width: 72%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform var(--speed) var(--ease);
}
.client-cell:hover .client-logo-img {
  transform: scale(1.05);
}
.client-logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1rem, 0.85rem + 0.7vw, 1.4rem);
  color: var(--steel);
  text-align: center;
  transition: color var(--speed) var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.client-cell:hover .client-logo { color: var(--teal-dark); }
.client-logo small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  margin-top: 2px;
  font-weight: 500;
}

/* ── Contact / Form ──────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.info-card + .info-card { margin-top: 0.75rem; }
.info-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.info-card__row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.55rem;
  font-size: 0.93rem;
}
.info-card__row--top { align-items: flex-start; }
.info-card__row a { color: var(--ink); font-weight: 500; }
.info-card__row a:hover { color: var(--teal-dark); }
.info-card__row .who {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  min-width: 64px;
  flex: 0 0 64px;
}
.info-card__row a,
.info-card__row span:not(.who) {
  min-width: 0;
  overflow-wrap: anywhere;
}

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.form__title {
  font-size: var(--step-2);
  margin-bottom: 1.4rem;
}
.form__submit {
  width: 100%;
  justify-content: center;
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.38rem;
}
.field label .req { color: var(--teal); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.78rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--ink);
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,158,165,0.13);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.field--error input, .field--error select, .field--error textarea { border-color: #e05a1a; }
.field__err { display: none; font-size: 0.78rem; color: #c04f18; margin-top: 0.3rem; font-weight: 500; }
.field--error .field__err { display: block; }

.consent { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.84rem; color: var(--ink-soft); }
.consent input { width: 17px; height: 17px; margin-top: 0.2rem; flex: none; accent-color: var(--teal); }
.consent a { color: var(--teal); text-decoration: underline; }
.form__note { margin-top: 0.8rem; font-size: 0.78rem; color: var(--steel); }
.form__status { margin-top: 0.8rem; padding: 0.85rem 1rem; border-radius: var(--radius); font-size: 0.88rem; display: none; }
.form__status.is-show { display: block; }
.form__status--ok { background: rgba(0,158,165,0.1); border: 1px solid var(--teal); color: var(--teal-deep); }
.form__status--err { background: rgba(224,90,26,0.1); border: 1px solid #e05a1a; color: #aa4512; }
.map-embed { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/6; margin-top: clamp(2rem, 1.5rem + 2vw, 3rem); background: var(--white); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: #0C1715;
  color: var(--steel-light);
  padding-top: clamp(3rem, 2rem + 3vw, 5rem);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  padding-bottom: 3rem;
}
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand .brand { min-width: 0; padding: 0; }
.footer__brand .brand__logo { height: 38px; filter: brightness(0) invert(1); }
.footer__desc {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 36ch;
  color: var(--steel-light);
}
.footer__col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer__col ul { display: grid; gap: 0.55rem; }
.footer__col a {
  font-size: 0.91rem;
  color: var(--steel-light);
  transition: color var(--speed) var(--ease);
}
.footer__col a:hover { color: var(--teal-light); }
.footer__contact li { font-size: 0.91rem; line-height: 1.55; margin-bottom: 0.6rem; }
.footer__contact .who {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-light);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1.5rem;
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) auto;
  gap: 0.7rem 1.5rem;
  align-items: center;
  font-size: 0.8rem;
}
.footer__bottom .reg { color: var(--steel); }
.footer__legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem 1.15rem;
  flex-wrap: wrap;
}
.footer__legal a { color: var(--steel-light); }
.footer__legal a:hover { color: var(--teal-light); }
.footer__legal span { color: var(--steel); }
.site-signature {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--steel);
  transition: color var(--speed) var(--ease);
}
.site-signature strong {
  color: var(--steel-light);
  font-weight: 700;
}
.site-signature:hover,
.site-signature:hover strong {
  color: var(--teal-light);
}

/* ── Reveal animations ───────────────────────────────────────────────────── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
/* With JS, start hidden + slightly lowered, then reveal on scroll-in. */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
}
.js .reveal[data-delay="1"] { transition-delay: 0.09s; }
.js .reveal[data-delay="2"] { transition-delay: 0.18s; }
.js .reveal[data-delay="3"] { transition-delay: 0.27s; }
.js .reveal[data-delay="4"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Utilities ───────────────────────────────────────────────────────────── */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.flex-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── Responsive overrides ────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__panel {
    grid-template-columns: repeat(3, 1fr);
  }
  .landing-about {
    grid-template-columns: 1fr;
  }
  .landing-metrics { grid-template-columns: repeat(3, 1fr); }
  .landing-intro .split { grid-template-columns: 1fr; }
  .footer__bottom {
    grid-template-columns: 1fr;
  }
  .footer__legal {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .header {
    height: 74px;
  }
  .header__inner {
    position: fixed;
    top: 10px;
    left: 12px;
    right: 12px;
    height: 64px;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0.42rem 3.6rem 0.42rem 0.55rem;
    gap: 0.5rem;
    justify-content: space-between;
  }
  .header.is-solid .header__inner {
    height: 64px;
  }
  .brand {
    min-width: 0;
    max-width: calc(100% - 54px);
    flex: 1 1 auto;
    padding-inline: 0.05rem 0.35rem;
  }
  .header .brand__logo,
  .header.is-solid .brand__logo {
    width: min(150px, 46vw);
    height: auto;
    max-height: 32px;
    max-width: 150px;
  }
  .header__cta {
    display: none;
  }
  .burger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 0.55rem;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    margin-left: auto;
    z-index: 2;
  }
  .burger span { left: 10px; right: 10px; }
  .burger span:nth-child(1) { top: 14px; }
  .burger span:nth-child(2) { top: 20px; }
  .burger span:nth-child(3) { top: 26px; }
  .hero {
    min-height: 100svh;
    margin-top: -74px;
    padding-top: 74px;
    padding-bottom: 3rem;
  }
  .page-hero {
    margin-top: -74px;
    padding-top: clamp(7rem, 5rem + 10vw, 8.5rem);
  }
  .hero__title {
    font-size: clamp(2rem, 1.35rem + 4vw, 2.65rem);
    line-height: 1.05;
    max-width: min(10.5ch, 100%);
  }
  .hero__sub {
    max-width: 30ch;
    font-size: 1rem;
  }
  .hero__actions {
    gap: 0.6rem;
  }
  .hero__panel { grid-template-columns: 1fr; }
  .landing-metrics { grid-template-columns: 1fr; }
  .landing-metrics div { min-height: auto; }
  .landing-about__media { aspect-ratio: 4/3; border-radius: var(--radius-lg); }
  .page-hero__title {
    font-size: clamp(2rem, 1.35rem + 5vw, 2.8rem);
    max-width: 100%;
  }
  .page-hero__text {
    font-size: 1rem;
  }
  .about-feature {
    border-radius: var(--radius-lg);
  }
  .about-feature__body {
    padding: 2rem 1.25rem;
  }
  .about-feature__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .about-feature__stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 1rem;
  }
  .about-feature__stats div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .principles-strip {
    padding: 3.5rem 0;
  }
  .industry-band {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
  }
  .map-embed {
    aspect-ratio: 4/3;
  }
  .footer__top { grid-template-columns: 1fr; }
  .footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-signature {
    align-self: flex-start;
  }
  .btn {
    font-size: 0.85rem;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .hero__actions .btn,
  .cta__actions .btn,
  .flex-actions .btn {
    width: 100%;
  }
  .hero__proof span { font-size: 0.78rem; }
  .eyebrow { font-size: 0.72rem; }
}
