/* ============================================================
   HYDRA — Global Design System
   ============================================================ */

:root {
  --bg: #ffffff;
  --surface: #1d3a8f;
  --surface-2: #0486c8;
  --text: #0b100e;
  --muted: #3b7066;
  --accent: #3b7066;
  /* brand teal CTA */
  --accent-dark: #1a3832;
  /* dark teal */
  --accent-light: #77bad0;
  /* light blue */
  --accent-warm: #754a1e;
  /* brand brown */
  --teal: #3b7066;
  /* brand teal */
  --line: #c8dce5;
  --radius-md: 16px;
  --radius-lg: 20px;
  --container: 1430px;
  --container-padding: 45px;
  --font-body: "Quicksand", sans-serif;
  --font-display: "Quicksand", sans-serif;
  --font-ui: "Quicksand", sans-serif;
}

@media (max-width: 991px) {
  :root {
    --container-padding: 20px;
  }
}

/* Custom Cursor Styles (Dual Layer) */
.cursor-inner,
.cursor-outer {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border: 1px solid #000;
  margin-left: -3px;
  margin-top: -3px;
  z-index: 10000;
  transition: transform 0.1s ease-out;
  /* Slight smoothness but fast */
}

.cursor-outer {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent-light);
  margin-left: -18px;
  margin-top: -18px;
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}

/* Hover States */
.cursor-inner.cursor-hover {
  transform: scale(0);
  /* Hide dot on hover for focus on outer */
  opacity: 0;
}

.cursor-outer.cursor-hover {
  width: 64px;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  background-color: var(--accent);
  opacity: 0.15;
  border-color: transparent;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

/* ---- Layout ---- */
.container {
  width: min(var(--container), calc(100% - (var(--container-padding) * 2)));
  margin: 0 auto;
}

.container-fluid {
  width: 100%;
  padding: 0 var(--container-padding);
  margin: 0 auto;
}

.section {
  padding: 78px 0;
}

/* ============================================================
   HEADER / NAVIGATION  (shared across pages)
   ============================================================ */
/* ============================================================
   HEADER / NAVIGATION (Premium Nature Capsule)
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  border-bottom: none;
  padding: 14px var(--container-padding);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

/* Base container for Earth Horizon effect */
.nav-container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

/* Scrolled state — keep header transparent; pill carries its own blur */
.site-header.scrolled {
  background: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 10px var(--container-padding);
  border-bottom: none;
  box-shadow: none;
}

/* Logo — drop-shadow keeps it readable on any background when scrolled */
.site-header.scrolled .logo img {
  filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 12px rgba(0, 0, 0, 0.35));
  transition: filter 0.4s ease;
}

/* Light-bg pages: header sits over a white hero, so apply the dark-pill
   treatment immediately (otherwise white nav text vanishes on white bg). */
body.light-bg .desktop-nav {
  background: rgba(8, 16, 13, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-color: rgba(59, 112, 102, 0.30);
  box-shadow:
    0 8px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(59, 112, 102, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.light-bg .site-header .logo img {
  filter: none;
}

/* Home hero: cinematic dark scrim over the banner video so the copy
   stays legible while the video remains visible (no white wash). */
body.light-bg .hero-bg { background: #04100b; }
body.light-bg .hero-lines { display: none; }
body.light-bg .hero-overlay {
  background:
    linear-gradient(to bottom, rgba(4, 16, 11, .55) 0%, rgba(4, 16, 11, .22) 45%, rgba(4, 16, 11, .72) 100%),
    radial-gradient(ellipse at 50% 48%, transparent 32%, rgba(4, 16, 11, .42) 100%);
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(.22, .61, .36, 1);
}
body.light-bg .hero:has(.hero-copy--reveal) .hero-overlay {
  opacity: 1;
}
body.light-bg .hero-copy h1 {
  color: #ffffff;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, .55),
    0 0 36px rgba(0, 0, 0, .35);
}
body.light-bg .hero-copy p {
  color: rgba(244, 250, 247, .92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}
body.light-bg .scroll-down { color: #f7faf8; }

/* Logo Container */
.logo {
  display: flex;
  align-items: center;
  flex: 1;
}

/* Navigation visibility on scroll direction */
.site-header.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

/* Minimal scroll-up state — pill only */
.site-header.nav-minimal .logo,
.site-header.nav-minimal .header-actions {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.site-header.nav-minimal .desktop-nav {
  padding-left: 56px;
  padding-right: 56px;
  transition: padding 0.35s ease;
}

/* Restore transitions on exit */
.logo,
.header-actions {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex: 1;
}

.logo img {
  height: 68px;
  width: auto;
  filter: brightness(1.8) contrast(1.1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 24px rgba(255, 255, 255, 0.25)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
  transition: height 0.3s ease, filter 0.3s ease;
}

.logo:hover img {
  filter: brightness(2) contrast(1.15) drop-shadow(0 0 16px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 32px rgba(255, 255, 255, 0.35)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.7));
}

.site-header.scrolled .logo img {
  height: 68px;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition: background 0.45s ease, border-color 0.45s ease,
    box-shadow 0.45s ease, padding 0.35s ease;
}

/* Scrolled — pill becomes a dark frosted capsule, always legible on any bg */
.site-header.scrolled .desktop-nav {
  background: rgba(8, 16, 13, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-color: rgba(59, 112, 102, 0.30);
  box-shadow:
    0 8px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(59, 112, 102, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-link,
.dropdown-toggle {
  position: relative;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  padding: 8px 0;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.nav-link:hover,
.dropdown-toggle:hover {
  color: #fff;
  text-shadow: 0 0 15px rgba(59, 112, 102, 0.4);
  /* soft green glow */
}

/* Smooth organic underline animation (flowing leaf) */
.nav-link::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 10px;
}

.nav-link:hover::after,
.nav-link.active::after,
.dropdown-toggle:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dropdown / Mega Menu Container */
.dropdown-container {
  position: relative;
}

.dropdown-toggle .caret {
  font-size: 10px;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.dropdown-container:hover .dropdown-toggle .caret {
  transform: rotate(180deg);
}

.company-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(15, 30, 26, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(59, 112, 102, 0.3);
  border-radius: 18px;
  padding: 12px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown-container:hover .company-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
}

.company-mega-menu-inner a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.company-mega-menu-inner a:hover {
  background: rgba(59, 112, 102, 0.2);
  color: var(--accent);
  padding-left: 24px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 1;
}

/* CTA Button Overrides (Sleek Joined Pill) */
.site-header .nav-cta {
  gap: 1;
  padding: 0;
}

.site-header .hero-btn {
  background: #3b7066;
  border: none;
  height: 40px;
  padding: 0 20px 0 24px;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.4s ease;
}

.site-header .hero-btn-arrow {
  background: #3b7066;
  border: none;
  width: 44px;
  height: 40px;
  border-radius: 100px;
  position: relative;
  /* subtle vertical line separator */
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header .nav-cta:hover .hero-btn,
.site-header .nav-cta:hover .hero-btn-arrow {
  background: #4a8c80;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Mobile Toggle */


@media (max-width: 991px) {
  .site-header {
    padding: 12px var(--container-padding);
  }

  /* Keep the hamburger + logo always visible on tablet/mobile —
     scroll-direction hide/minimize states are desktop-only. */
  .site-header.nav-hidden {
    transform: none;
    opacity: 1;
  }

  .site-header.nav-minimal .logo,
  .site-header.nav-minimal .header-actions {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header .nav-cta {
    display: none;
  }
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  transition: transform .3s ease, opacity .3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 25;
  background: rgba(11, 16, 14, .97);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .3s ease, transform .3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-inner {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.mobile-menu-inner a {
  font-size: 1.5rem;
  color: #fff;
}

/* ============================================================
   SHARED TYPOGRAPHIC TOKENS
   ============================================================ */
.label {
  margin: 0;
  padding-bottom: 10px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--muted);
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 6.2vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  padding-bottom: 14px;
  max-width: 15ch;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.55rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  padding-bottom: 12px;
}

/* ============================================================
   SHARED BUTTONS  (hero-btn pattern reused everywhere)
   ============================================================ */
.hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 5px;
}

.hero-btn,
.hero-btn-arrow {
  border-radius: 999px;
  background: #3b7066;
  color: #fff;
  /* border: 1px solid var(--accent); */
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  /* transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease,
    border-color .3s ease, color .3s ease; */
}

.hero-btn {
  padding: 0 18px;
}

.hero-btn-arrow {
  width: 40px;
  font-size: 18px;
  overflow: hidden;
  position: relative;
  padding: 0;
}

/* Arrow animation layers */
.arrow-layer {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: transform, opacity;
  width: 22px;
  height: 22px;
  z-index: 2;
  pointer-events: none;
}

.arrow-a {
  opacity: 1;
  transform: translate(-50%, -50%) translateX(0);
}

.arrow-b {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(-12px);
}

.arrow-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent url("./assets/hero-arrow.png") no-repeat center / contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter .35s cubic-bezier(.4, 0, .2, 1);
}

.arrow-a,
.arrow-b {
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .35s cubic-bezier(.4, 0, .2, 1);
}

/* hover states — trigger on either child OR the wrapper, so hovering
   the arrow on the right side works as reliably as hovering the pill */
.hero-actions:hover .hero-btn,
.hero-actions:hover .hero-btn-arrow,
.hero-actions:has(.hero-btn:hover) .hero-btn,
.hero-actions:has(.hero-btn:hover) .hero-btn-arrow,
.hero-actions:has(.hero-btn-arrow:hover) .hero-btn,
.hero-actions:has(.hero-btn-arrow:hover) .hero-btn-arrow,
.hero-btn:hover,
.hero-btn-arrow:hover {
  background: var(--accent-dark);
  color: #fff;
  border-color: var(--accent-dark);
  box-shadow: none;
  transform: none;
}

.hero-actions:hover .arrow-layer::before,
.hero-actions:has(.hero-btn:hover) .arrow-layer::before,
.hero-actions:has(.hero-btn-arrow:hover) .arrow-layer::before {
  filter: brightness(0) invert(1);
}

.hero-actions:hover .arrow-a,
.hero-actions:has(.hero-btn:hover) .arrow-a,
.hero-actions:has(.hero-btn-arrow:hover) .arrow-a {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(12px);
}

.hero-actions:hover .arrow-b,
.hero-actions:has(.hero-btn:hover) .arrow-b,
.hero-actions:has(.hero-btn-arrow:hover) .arrow-b {
  opacity: 1;
  transform: translate(-50%, -50%) translateX(0);
}

.cta-btn:hover .arrow-layer::before {
  filter: brightness(0) invert(1);
}

.cta-btn:hover .arrow-a {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(12px);
}

.cta-btn:hover .arrow-b {
  opacity: 1;
  transform: translate(-50%, -50%) translateX(0);
}

/* Intro dark buttons (inverted) */
.hero-actions.intro-learn-actions .hero-btn,
.hero-actions.intro-learn-actions .hero-btn-arrow {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.hero-actions.intro-learn-actions .arrow-layer::before {
  filter: brightness(0) invert(1);
}

.hero-actions.intro-learn-actions:hover .hero-btn,
.hero-actions.intro-learn-actions:hover .hero-btn-arrow {
  background: var(--accent-dark);
  color: #fff;
  border-color: var(--accent-dark);
}

.hero-actions.intro-learn-actions:hover .arrow-layer::before {
  filter: brightness(0) invert(1);
}

/* Generic primary button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: .94rem;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.btn-primary {
  background: linear-gradient(145deg, #4e9089, #3b7066);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .34);
}

.text-link {
  color: #3b7066;
  font-size: .92rem;
  font-weight: 500;
}

/* ============================================================
   HOME PAGE — HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 26px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 156px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-copy {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Hide hero copy until the intro video finishes playing */
.hero-copy.hero-copy--wait {
  opacity: 0 !important;
  visibility: hidden;
  transform: translateY(18px);
  pointer-events: none;
}

.hero-copy.hero-copy--reveal {
  opacity: 1 !important;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 1.6s cubic-bezier(.22, .61, .36, 1), transform 1.6s cubic-bezier(.22, .61, .36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy.hero-copy--reveal {
    transition: none;
  }
}

.hero-copy p {
  margin: 0 auto;
  max-width: 48ch;
  color: rgb(240, 240, 240);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  padding: 6px 0 12px;
}

.hero-copy h1 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-ui);
  font-size: clamp(48px, 7.6vw, 84px);
  line-height: clamp(58px, 8.4vw, 96px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.95),
    0 0 6px rgba(255, 255, 255, 0.9);
}

.hero-copy h1 .h1-line {
  display: block;
  white-space: nowrap;
}

/* Letter-by-letter reveal */
.hero-copy .word {
  display: inline-block;
  white-space: nowrap;
}

.hero-copy .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  filter: blur(4px);
  will-change: opacity, transform, filter;
}

.hero-copy.hero-copy--reveal .letter {
  animation: heroLetterIn 0.55s cubic-bezier(.22, .61, .36, 1) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes heroLetterIn {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy .letter {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #000;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8, 12, 10, .78) 0%, rgba(8, 12, 10, .55) 55%, rgba(8, 12, 10, .82) 100%),
    radial-gradient(ellipse at 30% 55%, rgba(0, 0, 0, .55) 0%, transparent 65%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: 25% 100%;
  opacity: .38;
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  color: #f7faf8;
  font-family: "PT Mono", monospace;
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  letter-spacing: .18em;
}

/* ============================================================
   HOME PAGE — INTRO (below hero)
   ============================================================ */
.intro.section {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
}

.intro.section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}


.intro .label {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 5px;
  background: var(--teal);
  color: #fff;
  letter-spacing: .02em;
  margin: 0;
}

.intro h2,
.impact h2,
.cta-card h2,
.overlay h4,
.hero-copy h1 {
  font-weight: 400;
  font-family: var(--font-display);
}

.intro h2 {
  color: #0b100e;
  font-size: 1.35rem;
  line-height: 1.35;
  padding-bottom: 14px;
}

.intro-body {
  color: #000;
  max-width: 62ch;
  font-weight: 500;
  font-size: 35px;
  font-family: var(--font-ui);
  padding: 15px 0 1px;
}

.intro .intro-grid {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.intro .reveal {
  text-align: left;
}

.intro-learn-actions {
  margin-top: 12px;
}

/* Vision & Mission Cards */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  width: 100%;
}

.vm-card {
  position: relative;
  padding: 40px 36px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f0f5f3;
  border: 1.5px solid #d0e4dc;
  color: #0b100e;
  transition: transform 0.35s ease, box-shadow 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  cursor: default;
}

/* soft water ripple — subtly expands from center on hover */
.vm-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(59, 112, 102, 0.12) 0%,
      rgba(59, 112, 102, 0.05) 50%,
      transparent 80%);
  transform: scale(0.2);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.vm-card:hover::after {
  transform: scale(2.2);
  opacity: 1;
}

/* no strong drop-fill, just the subtle ripple and card lift */
.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(52, 107, 85, 0.18);
  border-color: rgba(59, 112, 102, 0.4);
}

.vm-card:hover .vm-icon {
  background: rgba(59, 112, 102, 0.1);
  color: var(--teal);
}

/* card content layering */
.vm-card>* {
  position: relative;
  z-index: 2;
}

.vm-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 107, 85, 0.12);
  color: var(--teal);
  transition: background 0.35s ease, color 0.35s ease;
}

.vm-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  color: var(--teal);
  transition: color 0.35s ease;
}

/* Removed text-color shift to maintain visibility on light ripple */

.vm-text {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-family: var(--font-ui);
  font-weight: 500;
  line-height: 1.45;
  margin: 0;
  color: #0b100e;
  transition: color 0.35s ease;
}

/* Removed text-color shift to maintain visibility on light ripple */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: start;
}

/* ============================================================
   HOME PAGE — INDUSTRIES / SERVICES GRID
   ============================================================ */
.section-heading {
  margin: 0;
  padding-bottom: 20px;
}

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

.service-card {
  background: #ffffff;
  border: 1px solid #e0eae7;
  border-radius: var(--radius-md);
  padding: 22px 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card h3 {
  font-size: 1.02rem;
  padding-bottom: 8px;
  color: #0b100e;
}

.service-card .card-copy {
  color: #4a5a54;
  padding-bottom: 10px;
  font-size: .92rem;
  font-family: var(--font-ui);
  font-weight: 400;
}

.service-card .text-link {
  color: #3b7066;
}

.card-label {
  padding-bottom: 8px;
  color: var(--muted);
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.service-card:hover {
  transform: scale(1.05);
  border-color: rgba(59, 112, 102, .3);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .1);
}

/* ============================================================
   HOME PAGE — OUR NUMBERS (Redesigned)
   ============================================================ */
.numbers-section {
  display: flex;
  min-height: 600px;
  width: 100%;
}

.numbers-left {
  flex: 1;
  position: relative;
  background: #f0f4f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 0;
  padding: 60px var(--container-padding);
}

.numbers-left-content {
  position: relative;
  z-index: 2;
  text-align: left;
  width: 100%;
  max-width: 480px;
}

.numbers-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #1a7a5e;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.numbers-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 400;
  color: #0d1f1a;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.nt-line {
  display: block;
  overflow: hidden;
}

/* "Our" — light weight, slightly smaller */
.nt-line--1 {
  font-weight: 300;
  font-size: 0.72em;
  color: #2a4a40;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

/* "Numbers" — bold, large, dark */
.nt-line--2 {
  font-weight: 700;
  color: #0d1f1a;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease 0.25s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

/* Green accent bar under heading */
.numbers-title-bar {
  width: 0;
  height: 3px;
  background: #1a7a5e;
  margin: 20px 0 24px;
  border-radius: 2px;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.45s;
}

.numbers-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #4a5a54;
  line-height: 1.6;
  max-width: 400px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.55s, transform 0.6s ease 0.55s;
}

/* Triggered state — when section is visible */
.numbers-section.visible .numbers-eyebrow,
.numbers-section.visible .nt-line--1,
.numbers-section.visible .nt-line--2,
.numbers-section.visible .numbers-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.numbers-section.visible .numbers-title-bar {
  width: 56px;
}

/* Globe */
.globe-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  margin-top: 32px;
  flex-shrink: 0;
  z-index: 2;
}

.globe-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Orbit ring */
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 290px;
  height: 290px;
  margin: -145px 0 0 -145px;
  border-radius: 50%;
  border: 1px dashed rgba(26, 122, 94, 0.3);
  animation: orbitSpin 8s linear infinite;
  transform-origin: center;
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg) rotateX(70deg);
  }

  to {
    transform: rotate(360deg) rotateX(70deg);
  }
}

.orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #1a7a5e;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(26, 122, 94, 0.6);
  animation: dotOrbit 8s linear infinite;
  transform-origin: 0 0;
}

@keyframes dotOrbit {
  from {
    transform: rotate(0deg) translateX(145px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(145px) rotate(-360deg);
  }
}

/* Orbit ring 2 */
.orbit-ring--2 {
  width: 340px;
  height: 340px;
  margin: -170px 0 0 -170px;
  border-color: rgba(26, 122, 94, 0.18);
  animation: orbitSpin2 13s linear infinite;
}

@keyframes orbitSpin2 {
  from {
    transform: rotate(0deg) rotateX(55deg);
  }

  to {
    transform: rotate(-360deg) rotateX(55deg);
  }
}

.orbit-dot--2 {
  width: 6px;
  height: 6px;
  background: #2aad82;
  box-shadow: 0 0 8px rgba(26, 122, 94, 0.5);
  animation: dotOrbit2 13s linear infinite;
}

@keyframes dotOrbit2 {
  from {
    transform: rotate(0deg) translateX(170px) rotate(0deg);
  }

  to {
    transform: rotate(-360deg) translateX(170px) rotate(360deg);
  }
}

.numbers-right {
  flex: 1;
  background: linear-gradient(135deg, rgba(4, 140, 198, 0.05), rgba(30, 155, 205, 0.10));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px var(--container-padding);
  border-left: 1px solid rgba(4, 140, 198, 0.12);
}

.stats-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 80px 60px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 500;
  color: #0b100e;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: #4a5a54;
  text-transform: capitalize;
}

/* Responsive adjustment */
@media (max-width: 991px) {
  .numbers-section {
    flex-direction: column;
  }

  .numbers-left {
    min-height: auto;
    padding: 60px 24px;
  }

  .numbers-left-content {
    text-align: center;
    max-width: 100%;
  }

  .numbers-subtitle {
    max-width: 100%;
    margin: 0 auto;
  }

  .globe-wrap {
    width: 200px;
    height: 200px;
  }

  .orbit-ring {
    width: 228px;
    height: 228px;
    margin: -114px 0 0 -114px;
  }

  @keyframes dotOrbit {
    from {
      transform: rotate(0deg) translateX(114px) rotate(0deg);
    }

    to {
      transform: rotate(360deg) translateX(114px) rotate(-360deg);
    }
  }

  .numbers-right {
    padding: 80px 24px;
  }

  .stats-grid-new {
    gap: 60px 40px;
  }
}

/* ============================================================
   HOME PAGE — RECENT PROJECTS SLIDER
   ============================================================ */

/* Header row with title + arrows */
.projects-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.projects-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 52px;
  line-height: 58px;
  letter-spacing: -0.04em;
  color: #0b100e;
  padding-bottom: 0;
}

.projects-arrows {
  display: flex;
  gap: 8px;
}

.proj-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #c8dce5;
  background: transparent;
  color: #0b100e;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.proj-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Slider wrapper — clips overflow */
.projects-slider-wrap {
  position: relative;
  width: 100vw;
  max-width: 1920px;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: visible;
  border-radius: 0;
  z-index: 2;
}

/* Specific reveal behavior for the slider to maintain centering */
.projects-slider-wrap.reveal {
  opacity: 0;
  transform: translateX(-50%) translateY(26px);
}

.projects-slider-wrap.reveal.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Track — 3 cards visible at a time with one edge-peeking */
.projects-track {
  display: flex;
  gap: 12px;
  transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Individual slide cards */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid var(--line);
  height: 400px;
  flex: 0 0 calc((100% - 12px) / 1.5);
  cursor: pointer;
}

.slider-card {
  height: 400px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* New Project Overlay */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.1));
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.45s ease;
  z-index: 5;
}

.overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
}

.view-project-btn {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.88rem;
  font-family: 'PT Mono', monospace;
  letter-spacing: 0.02em;
  transition: all 0.35s ease;
}

.btn-arrow {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -12px rgba(10, 24, 20, 0.15);
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-card:hover .project-overlay {
  opacity: 1;
  backdrop-filter: blur(5px);
}

.project-card:hover .overlay-bottom {
  transform: translateY(0);
}

.view-project-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Bottom footer: dots + view all */
.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
}

/* Dot indicators */
.proj-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proj-dot {
  width: 10px;
  height: 4px;
  border-radius: 2px;
  background: #77bad0;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.proj-dot.active {
  background: var(--text);
  width: 34px;
  transform: none;
}

/* View All button alignment */
.proj-view-all {
  padding-top: 0;
}

/* Legacy ghost-btn (kept for other pages) */
.ghost-btn {
  background: transparent;
  border: 1px solid #77bad0;
  color: #3b7066;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .82rem;
  cursor: pointer;
}

/* ============================================================
   HOME PAGE — IMPACT
   ============================================================ */
.impact {
  padding: 80px 0;
  background: #fff;
}

.impact .label {
  display: inline-block;
  padding: 6px 10px;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-family: 'PT Mono', monospace;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  margin-bottom: 24px;
  line-height: 1;
}

.impact-headline {
  max-width: 54ch;
  padding-bottom: 32px;
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.25;
  font-family: var(--font-display);
  font-weight: 400;
  color: #0b100e;
  letter-spacing: -0.035em;
}

/* ============================================================
   HOME PAGE — LEADERSHIP HERO
   ============================================================ */
.leadership-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1573497620053-ea5300f94f21?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.leadership-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
}

.leadership-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
  max-width: 725px;
}

.leadership-headline {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.leadership-actions {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #3b7066;
  border-radius: 999px;
  overflow: hidden;
}

.leadership-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-family: 'PT Mono', monospace;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease;
}

.leadership-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #048cc6;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  margin: 3px;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.leadership-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.leadership-btn-arrow:hover {
  background: #3b7066;
}

/* ============================================================
   HOME PAGE — VALUES GRID (Industries We Serve section on home)
   ============================================================ */
.industry-section-heading {
  text-align: left;
  margin-bottom: 24px;
}

.industry-section-heading h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.8rem;
  color: #111;
  letter-spacing: -0.02em;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0 0 12px;
}

.industry-card {
  position: relative;
  overflow: hidden;
  background: #162220;
  border: none;
  border-radius: 4px;
  height: 500px;
  padding: 28px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.4s ease, transform 0.3s ease;
  cursor: pointer;
}

.industry-card:hover {
  background-color: #1e2f2b;
}

.industry-card:hover .industry-icon,
.industry-card.touch-expanded .industry-icon {
  transform: translateY(-30px);
  opacity: 0;
}

.industry-card:hover h4,
.industry-card.touch-expanded h4 {
  opacity: 0;
  transform: translateY(-30px);
}

/* Icon and Title */
.industry-icon {
  margin-bottom: 24px;
  color: #ffffff;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 2;
}

.industry-icon--img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.industry-icon--img img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.industry-card h4 {
  font-size: 1.15rem;
  padding-bottom: 0;
  font-weight: 500;
  color: #ffffff;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 2;
}

/* Plus Button Animation */
.plus-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  /* 0.5s ease in-out ensures symmetric timing on hover and release */
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}

.industry-card:hover .plus-btn {
  transform: rotate(360deg);
  background: rgba(255, 255, 255, 0.25);
}

/* Overview Sliding Pane */
.industry-overview {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px 32px 32px 32px;
  text-align: left;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.industry-card:hover .industry-overview,
.industry-card.touch-expanded .industry-overview {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}


.overview-label {
  display: inline-block;
  background: #ffffff;
  color: #111;
  font-size: 0.65rem;
  font-family: 'PT Mono', monospace;
  font-weight: 500;
  padding: 5px 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.industry-overview p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
  font-family: var(--font-ui);
  margin: 0;
}

/* Service Card Background Images */
.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.industry-card:hover::before {
  opacity: 0.6;
}

.card-carbon::before {
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=800&q=80');
}

.card-eco::before {
  background-image: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?auto=format&fit=crop&w=800&q=80');
}

.card-esg::before {
  background-image: url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?auto=format&fit=crop&w=800&q=80');
}

.card-finance::before {
  background-image: url('https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?auto=format&fit=crop&w=800&q=80');
}

/* ============================================================
   SHARED PRE-FOOTER CTA  (light green patterned section)
   ============================================================ */
.cta-section {
  background-color: #ffffff;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 18px 18px;
  padding: 100px 0;
}

.cta-section-inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.cta-section-eyebrow {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: #0b100e;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.cta-section-inner .label {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.2);
  color: #000000;
  margin-bottom: 14px;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cta-section-inner h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.18;
  color: #000000;
  padding-bottom: 18px;
}

.cta-section .hero-actions {
  justify-content: center;
}

/* Inline CTA card (light, used inside pages) */
.cta-card {
  border-radius: var(--radius-lg);
  border: 1px solid #e0eae7;
  background: #ffffff;
  text-align: center;
  padding: clamp(34px, 6vw, 64px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.cta-card>p {
  color: #4a5a54;
  margin: 0 auto;
  padding-bottom: 14px;
  max-width: 58ch;
  font-family: var(--font-ui);
  font-weight: 400;
}

.cta-card h2 {
  color: #0b100e;
}

.cta-card .label {
  color: var(--muted);
}

/* ============================================================
   SHARED FOOTER  (Dark Premium Redesign)
   ============================================================ */
footer {
  background: #152820;
  color: #77bad0;
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 80px;
}

.footer-cta-text {
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  line-height: 1.2;
  font-family: var(--font-display);
  font-weight: 500;
  max-width: 25ch;
  margin-bottom: 40px;
  color: #ffffff;
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-btn-pill {
  background: #3b7066;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-btn-circle {
  width: 48px;
  height: 48px;
  background: #3b7066;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-btn-circle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.footer-btn-pill:hover,
.footer-btn-circle:hover {
  opacity: 0.85;
}

.footer-links-col h5 {
  font-family: 'PT Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  margin-right: 10px;
  vertical-align: -3px;
  transition: opacity 0.3s ease;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-col ul li {
  margin-bottom: 12px;
}

.footer-links-col ul li a {
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-links-col ul li a:hover {
  opacity: 0.7;
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 40px;
  position: relative;
}

.footer-logo-massive {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.8;
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #77bad0;
  margin-left: -5px;
  /* Visual alignment */
}

.footer-logo-massive-img {
  height: clamp(3rem, 6vw, 5rem);
  width: auto;
  object-fit: contain;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.footer-info-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}

.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-premium {
  background: #fff;
  color: #000;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.btn-premium:hover {
  transform: translateY(-2px);
}

.btn-premium img {
  width: 20px;
  height: 20px;
}

.footer-meta {
  text-align: right;
  font-family: 'PT Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
  display: flex;
  gap: 24px;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-cta-text {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 60px 0 30px;
  }

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

  .footer-cta-text {
    grid-column: span 1;
  }

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

  .footer-info-wrap {
    align-items: flex-start;
  }

  .footer-meta {
    text-align: left;
    flex-direction: column;
    gap: 8px;
  }

  .footer-logo-massive {
    font-size: 5rem;
  }
}

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.page-hero-light {
  padding: 120px 0 48px;
  background: var(--bg);
}

.page-hero-light h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 16ch;
}

.projects-page-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 36px;
}

.projects-page-intro .intro-text {
  max-width: 480px;
}

.projects-page-intro .intro-text .label {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 5px;
  background: var(--teal);
  color: #fff;
  margin-bottom: 10px;
}

.projects-page-intro .intro-text p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.6;
}

.projects-page-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-bottom: 48px;
}

.project-card-full {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  min-height: 320px;
  cursor: pointer;
}

.project-card-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.project-card-full:hover img {
  transform: scale(1.06);
}

.project-card-full .project-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
}

/* ============================================================
   SOLUTIONS PAGE
   ============================================================ */
.solutions-hero {
  min-height: 52vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 0 54px;
}

.solutions-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1501854140801-50d01698950b?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.solutions-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 13, 12, .75), rgba(10, 13, 12, .3));
}

.solutions-hero .container {
  position: relative;
  z-index: 1;
}

.solutions-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 14ch;
}

.solutions-intro {
  padding: 64px 0 24px;
}

.solutions-intro .label {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 5px;
  background: var(--teal);
  color: #fff;
  margin-bottom: 14px;
}

.solutions-intro p {
  max-width: 64ch;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.6;
}

/* service rows */
.service-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.service-row h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.service-row p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 54ch;
}

/* dual images */
.dual-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 48px 0;
}

.dual-images img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* process section */
.process-section {
  padding: 64px 0;
}

.process-section .label {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 5px;
  background: var(--teal);
  color: #fff;
  margin-bottom: 10px;
}

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

.process-step {
  position: relative;
  padding-top: 28px;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
}

.process-step h4 {
  font-size: .95rem;
  padding-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.process-step p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.5;
}

/* value-add cards */
.value-add-section {
  background: #f7f9f8;
  padding: 72px 0;
}

.value-add-section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  color: #0b100e;
  padding-bottom: 28px;
}

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

.value-add-card {
  background: #ffffff;
  border: 1px solid #e0eae7;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.value-add-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 112, 102, .25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

.value-add-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(59, 112, 102, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent);
}

.value-add-card h4 {
  font-size: .95rem;
  padding-bottom: 6px;
  color: #0b100e;
}

.value-add-card p {
  font-size: .85rem;
  color: #4a5a54;
  line-height: 1.45;
}

/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-hero {
  min-height: 44vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 0 48px;
}

.news-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.news-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 13, 12, .8), rgba(10, 13, 12, .35));
}

.news-hero .container {
  position: relative;
  z-index: 1;
}

.news-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 14ch;
}

.news-hero .scroll-indicator {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  padding-top: 8px;
}

.news-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 28px;
}

.news-controls h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text);
}

.news-filter-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.news-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 300px;
  cursor: pointer;
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.news-card:hover img {
  transform: scale(1.05);
}

.news-card-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(4, 7, 6, .88), transparent);
}

.news-card-overlay h4 {
  color: #fff;
  font-size: .95rem;
  font-weight: 500;
  padding-bottom: 4px;
  line-height: 1.35;
}

.news-card-overlay .news-date {
  color: rgba(255, 255, 255, .55);
  font-size: .78rem;
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */

/* ---- About Hero ---- */
.about-hero {
  width: 100%;
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.about-hero-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  padding: 120px 48px 40px;
  align-items: start;
}

.about-hero-left-text {
  padding: 0;
}

.about-hero-label {
  display: inline-block;
  padding: 6px 10px;
  background: var(--teal);
  color: #fff;
  font-family: 'PT Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  margin-bottom: 16px;
  line-height: 1;
}

.about-hero-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  max-width: 46ch;
  font-family: var(--font-ui);
  font-weight: 400;
}

.about-hero-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.about-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.2vw, 5.1rem);
  font-weight: 400;
  color: #0b100e;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-align: right;
  padding-bottom: 14px;
  max-width: 20ch;
}

.about-hero-img-wrap {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

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

/* ---- Our Story ---- */
.about-story {
  padding: 80px 0;
  background: #fff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.about-story-label {
  display: inline-block;
  padding: 6px 10px;
  background: var(--teal);
  color: #fff;
  font-family: 'PT Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  margin-bottom: 16px;
  line-height: 1;
}

.about-story-body {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  max-width: 48ch;
  font-family: var(--font-ui);
  font-weight: 400;
}

.about-story-img {
  overflow: hidden;
  border-radius: 0;
}

.about-story-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ---- About Stats ---- */
.about-stats {
  padding: 64px 0;
  background: #fff;
}

.about-stats-header {
  text-align: center;
  margin-bottom: 48px;
}

.about-stats-labels {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.about-stats-pill {
  display: inline-block;
  padding: 6px 10px;
  background: var(--teal);
  color: #fff;
  font-family: 'PT Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  line-height: 1;
}

.about-stats-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: #0b100e;
  letter-spacing: -0.03em;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-stat-card {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}

.about-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: #0b100e;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.about-stat-desc {
  display: block;
  font-family: 'PT Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #888;
  text-transform: uppercase;
}

/* ---- Team Hero Image ---- */
.about-team-hero {
  width: 100%;
  overflow: hidden;
  background: #0a0d0c;
}

.about-team-hero img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* ---- Leadership ---- */
.about-leadership {
  padding: 80px 0;
  background: #fff;
}

.about-leadership-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: #0b100e;
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 54ch;
  margin-bottom: 48px;
}

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

.about-leader-card {
  text-align: left;
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.about-leader-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 14px;
  background: #f0f0f0;
}

.about-leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: filter 0.4s ease, transform 0.6s ease;
}

.about-leader-card:hover .about-leader-img img {
  filter: blur(14px) brightness(0.45);
  transform: scale(1.08);
}

.about-leader-bio {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(11, 16, 14, 0.55) 0%, rgba(11, 16, 14, 0.85) 100%);
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  overflow-y: auto;
}

.about-leader-card:hover .about-leader-bio,
.about-leader-card:focus-visible .about-leader-bio {
  pointer-events: auto;
}

.about-leader-bio::-webkit-scrollbar {
  width: 4px;
}

.about-leader-bio::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
}

.about-leader-bio p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  text-align: left;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.005em;
}

.about-leader-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-leader-bullets li {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.4;
  color: #fff;
  padding-left: 12px;
  position: relative;
}

.about-leader-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-light, #77bad0);
}

.about-leader-card:hover .about-leader-bio,
.about-leader-card:focus-visible .about-leader-bio {
  opacity: 1;
  transform: translateY(0);
}

.about-leader-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: #0b100e;
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-leader-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #0a66c2;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.about-leader-linkedin:hover {
  background: #084d92;
  transform: translateY(-1px);
}

.about-leader-linkedin svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.about-leader-role {
  font-family: 'PT Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #888;
  text-transform: uppercase;
}

/* ---- Join Team CTA ---- */
.about-join-cta {
  background-color: #3b7066;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 18px 18px;
  padding: 80px 0;
}

.about-join-inner {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.about-join-labels {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.about-join-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.25;
  color: #0b100e;
  padding-bottom: 18px;
  letter-spacing: -0.02em;
}

/* ---- Testimonials ---- */
.about-testimonials {
  background: #f7f9f8;
  padding: 80px 0;
}

.about-testimonials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.about-testimonials-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: #0b100e;
  letter-spacing: -0.02em;
}

.about-testimonials-arrows {
  display: flex;
  gap: 8px;
}

.about-testimonials .proj-arrow {
  border-color: #c8dce5;
  color: #0b100e;
}

.about-testimonials .proj-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

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

.about-testimonial-card {
  background: #ffffff;
  border: 1px solid #e0eae7;
  border-radius: 4px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.about-testimonial-quote {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #4a5a54;
  font-family: var(--font-ui);
  font-weight: 400;
  margin-bottom: 24px;
}

.about-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-testimonial-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
}

.about-testimonial-company {
  font-family: 'PT Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #aab5b0;
  text-transform: uppercase;
}

/* ---- About Responsive ---- */
@media (max-width: 991px) {
  .about-hero-top {
    grid-template-columns: 1fr;
    padding: 100px 32px 40px;
  }

  .about-hero-right {
    justify-content: flex-start;
    margin-top: 32px;
  }

  .about-hero-heading {
    text-align: left;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

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

@media (max-width: 768px) {
  .about-hero-top {
    padding: 90px 20px 32px;
  }

  .about-hero-img-wrap {
    height: 40vh;
  }

  .about-team-hero img {
    height: 300px;
  }

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

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

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

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal-stagger.visible>*:nth-child(1) {
  transition-delay: 0s;
}

.reveal-stagger.visible>*:nth-child(2) {
  transition-delay: .1s;
}

.reveal-stagger.visible>*:nth-child(3) {
  transition-delay: .2s;
}

.reveal-stagger.visible>*:nth-child(4) {
  transition-delay: .3s;
}

.reveal-stagger.visible>*:nth-child(5) {
  transition-delay: .4s;
}

.reveal-stagger.visible>*:nth-child(6) {
  transition-delay: .5s;
}

.reveal-stagger.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .container {
    width: min(var(--container), calc(100% - 44px));
  }

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

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

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

@media (max-width: 768px) {
  .section {
    padding: 58px 0;
  }

  .intro.section {
    min-height: 0;
    padding: 64px 0;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .desktop-nav,
  .nav-actions .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .logo {
    font-size: 1.2rem;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 9vw, 58px);
    line-height: clamp(46px, 9.8vw, 66px);
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 23px;
  }

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

  .services-grid,
  .projects-row {
    grid-template-columns: 1fr;
  }

  .project-controls {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .projects-full-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .dual-images {
    grid-template-columns: 1fr;
  }

  .dual-images img {
    height: 260px;
  }

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

  .values-grid,
  .process-grid,
  .value-add-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .container {
    width: calc(100% - 28px);
  }

  .section {
    padding: 46px 0;
  }

  .mobile-menu-inner a {
    font-size: 1.35rem;
  }

  .hero {
    min-height: 86vh;
    padding-top: 128px;
  }

  .intro.section {
    min-height: 0;
    padding: 56px 0;
  }

  .hero-lines {
    background-size: 33.333% 100%;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: clamp(40px, 11vw, 50px);
  }

  .hero-copy p {
    font-size: 15px;
    line-height: 22px;
  }

  .hero-copy .hero-actions {
    gap: 5px;
  }

  .hero-copy .hero-btn,
  .hero-copy .hero-btn-arrow {
    height: 36px;
    font-size: 14px;
    line-height: 18px;
  }

  .hero-copy .hero-btn {
    padding: 0 16px;
  }

  .hero-copy .hero-btn-arrow {
    width: 36px;
  }

  .hero-copy .arrow-layer {
    width: 18px;
    height: 18px;
  }

  .mobile-menu .hero-btn,
  .mobile-menu .hero-btn-arrow {
    height: 36px;
    font-size: 14px;
    line-height: 18px;
  }

  .mobile-menu .hero-btn {
    padding: 0 16px;
  }

  .mobile-menu .hero-btn-arrow {
    width: 36px;
  }

  .mobile-menu .arrow-layer {
    width: 18px;
    height: 18px;
  }
}

/* ============================================================
   CUSTOM CURSOR — hide on touch / coarse-pointer devices
   ============================================================ */
@media (pointer: coarse) {

  .cursor-inner,
  .cursor-outer {
    display: none !important;
  }

  body {
    cursor: auto;
  }
}

/* ============================================================
   PREFERS-REDUCED-MOTION — disable transitions & animations
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

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

  .reveal,
  .reveal-stagger>* {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .cursor-inner,
  .cursor-outer {
    display: none !important;
  }

  body {
    cursor: auto !important;
  }
}

/* ============================================================
   NOSCRIPT FALLBACK — ensure content is visible without JS
   ============================================================ */
.noscript-reveal .reveal,
.noscript-reveal .reveal-stagger>* {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: #f7f9f8;
  border-top: 1px solid #e0eae7;
}

.contact-inner {
  max-width: 720px;
  margin: 0 auto;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  color: #0b100e;
  padding-bottom: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #3b7066;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #0b100e;
  background: #ffffff;
  border: 1.5px solid #d0e4dc;
  border-radius: 8px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #3b7066;
  box-shadow: 0 0 0 3px rgba(59, 112, 102, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aab5b0;
}

.contact-form .hero-actions {
  padding-top: 4px;
}

.contact-form-submit {
  background: #3b7066;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  transition: background 0.3s ease;
}

.contact-form-submit:hover {
  background: #1a3832;
}

.contact-form-notice {
  font-size: 0.88rem;
  min-height: 1.4em;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 600px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CONTACT PAGE — TWO-COLUMN LAYOUT
   ============================================================ */
.contact-page-section {
  border-top: 1px solid #e0eae7;
}

.contact-page-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-col {
  padding-top: 8px;
}

.contact-info-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: #0b100e;
  margin-bottom: 16px;
  padding-bottom: 0;
}

.contact-info-body {
  font-size: 1rem;
  color: #4a5c57;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3b7066;
}

.contact-detail-value {
  font-size: 1rem;
  color: #0b100e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-detail-value:hover {
  color: #3b7066;
}

.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #0b100e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-social-link:hover {
  color: #3b7066;
}

.contact-form-col {
  background: #ffffff;
  border: 1.5px solid #e0eae7;
  border-radius: 16px;
  padding: 40px;
}

@media (max-width: 900px) {
  .contact-page-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-col {
    padding: 28px 20px;
  }
}

/* ============================================================
   TESTIMONIALS SLIDER
   ============================================================ */
.testimonials-slider-wrap {
  overflow: hidden;
}

.about-testimonials-grid {
  display: flex !important;
  flex-wrap: nowrap;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.about-testimonial-card {
  flex-shrink: 0;
  width: calc(50% - 8px);
}

@media (max-width: 768px) {
  .about-testimonial-card {
    width: 100%;
  }
}

/* ============================================================
   BACK-TO-TOP BUTTON — teardrop silhouette (matches NG logo)
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border: none;
  cursor: pointer;
  background: linear-gradient(150deg, #2f8a85 0%, #1f6f6a 60%, #16504c 100%);
  color: #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(135deg) translateY(20px);
  box-shadow: 0 10px 26px rgba(22, 80, 76, .35), inset 0 1px 0 rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease, background .3s ease;
  z-index: 9000;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: rotate(135deg) translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(150deg, #36a39d 0%, #258580 60%, #1c615c 100%);
  box-shadow: 0 14px 32px rgba(22, 80, 76, .45), 0 0 0 4px rgba(47, 138, 133, .15), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.back-to-top:active {
  transform: rotate(135deg) translateY(2px);
}

/* Counter-rotate the icon so the arrow stays upright */
.back-to-top svg {
  transform: rotate(-135deg);
  transition: transform .25s ease;
}

.back-to-top:hover svg {
  transform: rotate(-135deg) translateY(-2px);
}

@media (max-width: 768px) {
  .back-to-top {
    width: 46px;
    height: 46px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 991px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (max-width: 768px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 991px) {

  .logo img,
  .site-header.scrolled .logo img {
    height: 48px;
  }
}

@media (max-width: 480px) {

  .logo img,
  .site-header.scrolled .logo img {
    height: 32px;
  }
}

/* Hide logo when mobile menu is open so it doesn't bleed past the menu overlay */
@media (max-width: 991px) {
  body:has(.mobile-menu.open) .site-header .logo {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
}

/* ============================================================
   SHARED COMPACT VIDEO STRIP (Gaia ESG / Earth / Climate Game)
   ============================================================ */
.video-strip {
  padding: 80px 0 40px;
}

.video-strip-inner {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.video-strip-copy {
  max-width: 420px;
}

.video-strip-eyebrow {
  display: inline-block;
  font-family: 'PT Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3b7066;
  padding: 6px 14px;
  border: 1px solid rgba(59, 112, 102, 0.3);
  border-radius: 100px;
  margin-bottom: 18px;
}

.video-strip-title {
  font-family: var(--font-display, 'Quicksand', sans-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0b100e;
  margin: 0 0 14px;
}

.video-strip-text {
  font-family: var(--font-body, 'Quicksand', sans-serif);
  font-size: 1rem;
  line-height: 1.65;
  color: #4a5c57;
  margin: 0 0 22px;
}

.video-strip-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'PT Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3b7066;
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s ease, color 0.3s ease;
}

.video-strip-link:hover {
  gap: 12px;
  color: #2e5850;
}

.video-strip-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.video-strip-card {
  position: relative;
  display: block;
  width: 560px;
  max-width: 100%;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-strip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.video-strip-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-strip-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

.video-strip-card:hover .video-strip-thumb {
  transform: scale(1.03);
  filter: brightness(0.96);
}

.video-strip-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-strip-card:hover .video-strip-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-strip-play svg {
  width: 20px;
  height: 20px;
  fill: #152820;
  margin-left: 3px;
}

@media (max-width: 960px) {
  .video-strip-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .video-strip-copy {
    max-width: 560px;
    margin: 0 auto;
  }

  .video-strip-card {
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .video-strip {
    padding: 56px 0 28px;
  }

  .video-strip-card {
    width: 100%;
    border-radius: 12px;
  }

  .video-strip-play {
    width: 48px;
    height: 48px;
  }

  .video-strip-play svg {
    width: 18px;
    height: 18px;
  }

  .video-strip-title {
    font-size: 1.5rem;
  }
}

/* ============================================================
   NAV HOME BUTTON — droplet inside the sticky nav pill
   Matches the back-to-top teardrop silhouette (NG logo shape).
   ============================================================ */
.desktop-nav .nav-home-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  padding: 0;
  text-decoration: none;
  flex-shrink: 0;
  overflow: visible;
  z-index: 2;
}

.desktop-nav .nav-home-btn::after {
  display: none !important;
}

.nav-home-btn-inner {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #2f8a85 0%, #1f6f6a 60%, #16504c 100%);
  color: #ffffff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(135deg);
  box-shadow: 0 4px 12px rgba(22, 80, 76, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: background 0.25s ease, transform 0.3s cubic-bezier(.22, 1, .36, 1), box-shadow 0.25s ease;
}

.desktop-nav .nav-home-btn:hover .nav-home-btn-inner {
  background: linear-gradient(150deg, #36a39d 0%, #258580 60%, #1c615c 100%);
  transform: rotate(135deg) translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 80, 76, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.nav-home-btn-inner svg {
  width: 14px;
  height: 14px;
  transform: rotate(-135deg);
  stroke: #ffffff;
}