/* =================================================================
   TOMPSEBET NIGERIA LIMITED: Main Stylesheet
   B.L.A.S.T. Protocol | Phase 4: Stylize
   Source of Truth: Figma file 2RC4FCPHPCbZXpdYrWelL0
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Roboto:wght@400;800&family=Poppins:wght@400&display=swap');

/* ----------------------------------------------------------------
   1. DESIGN TOKENS (Figma → CSS Custom Properties)
   ---------------------------------------------------------------- */
:root {
  --primary-base:   #00999e;
  --primary-200:    #00c3c9;
  --secondary-200:  #00ccd3;
  --secondary-500:  #005457;
  --tertiary-base:  #00b8be;

  --grey-700: #1f1e1d;
  --grey-600: #242525;
  --grey-500: #605e5c;
  --grey-400: #646667;
  --grey-300: #878a8b;
  --grey-200: #acb0b1;
  --grey-100: #d4d7d8;
  --grey-50:  #f1f1ef;
  --grey-bg:  rgba(237,235,233,0.5);
  --white:    #ffffff;

  --font-inter:   'Inter', sans-serif;
  --font-roboto:  'Roboto', sans-serif;
  --font-poppins: 'Poppins', sans-serif;

  --container-max: 1240px;
  --container-px:  100px;
  --section-pad:   80px;

  --radius-cta:  2px;
  --radius-card: 10px;
  --radius-sm:   4px;
  --radius-md:   5px;
  --radius-pill: 50px;

  --shadow-nav:     0 3px 12px rgba(0,0,0,0.4);
  --shadow-card:    0 0 1.2px rgba(172,176,177,0.36);
  --shadow-section: 0 0 1.8px rgba(172,176,177,0.7);

  --transition:      0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ----------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }

body {
  font-family: var(--font-inter);
  color: var(--grey-600);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }

ul, ol { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

input, textarea, select {
  font-family: var(--font-inter);
  font-size: 16px;
  border: none;
  outline: none;
}

/* ----------------------------------------------------------------
   3. LAYOUT
   ---------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  width: 100%;
  box-sizing: border-box;
}

.section        { padding: var(--section-pad) 0; }
.section--grey  { background: var(--grey-bg); }
.section--dark  { background: var(--grey-700); color: var(--white); }
.section--white { background: var(--white); }

/* ----------------------------------------------------------------
   4. TYPOGRAPHY UTILITIES
   ---------------------------------------------------------------- */
.display-lg {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 600;
  line-height: 1.3;
}
.heading-lg {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.25;
}
.heading-md {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.33;
}
.title-lg {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.27;
}
.title-md {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33;
}
.body-lg {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.015em;
}
.body-md {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: 0.025em;
}

/* Section badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--grey-500);
  letter-spacing: 0.027em;
  margin-bottom: 12px;
}
.badge__icon {
  width: 40px;
  height: 40px;
  background: var(--primary-base);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.badge__icon svg { width: 22px; height: 22px; }
a.badge,
.badge--link {
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
}
a.badge:hover,
.badge--link:hover {
  color: var(--primary-base);
}
a.badge:hover .badge__icon,
.badge--link:hover .badge__icon {
  background: var(--secondary-500);
}

.section-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--grey-600);
  line-height: 1.33;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 18px;
  color: var(--grey-400);
  line-height: 1.8;
  letter-spacing: 0.015em;
  max-width: 640px;
}

/* ----------------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  border-radius: var(--radius-cta);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn--primary {
  background: var(--primary-base);
  color: var(--white);
  border-color: var(--primary-base);
}
.btn--primary:hover {
  background: var(--secondary-500);
  border-color: var(--secondary-500);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,153,158,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--primary-base);
  border-color: var(--primary-base);
}
.btn--outline:hover {
  background: var(--primary-base);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--sm { height: 40px; font-size: 16px; padding: 0 20px; }

/* ----------------------------------------------------------------
   6. NAVIGATION
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 48px));
  height: 100px;
  z-index: 1000;
  transition: top var(--transition), width var(--transition);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  background: rgba(28,28,28,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-nav);
  transition: background var(--transition), border-radius var(--transition);
}
.nav.scrolled { top: 12px; }
.nav.scrolled .nav__inner {
  background: var(--grey-700);
  border-radius: 36px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-mark { width: 32px; height: 46px; object-fit: contain; }
.nav__logo-full { height: 53px; width: auto; max-width: 220px; object-fit: contain; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-name {
  font-family: var(--font-roboto);
  font-weight: 800;
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.nav__logo-sub {
  font-family: var(--font-roboto);
  font-weight: 400;
  font-size: 8px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__item { position: relative; }
.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 18px;
  font-weight: 500;
  color: var(--grey-100);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__link:hover,
.nav__link.active { color: var(--primary-base); }
.nav__link svg { transition: transform var(--transition); flex-shrink: 0; }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border: 0.5px solid var(--grey-100);
  border-radius: var(--radius-md);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 200;
  list-style: none;
  padding: 4px 0;
  max-height: 80vh;
  overflow-y: auto;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--grey-400);
  transition: all var(--transition);
  white-space: nowrap;
  border-bottom: 0.5px solid var(--grey-50);
}
.nav__dropdown-item:last-child { border-bottom: none; }
.nav__dropdown-item:hover { color: var(--primary-base); background: rgba(0,153,158,0.05); }

/* CTA in nav */
.nav__cta { flex-shrink: 0; height: 44px; font-size: 16px; padding: 0 20px; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1100;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.nav__mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grey-700);
  z-index: 999;
  padding: 110px 32px 48px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  pointer-events: none;
}
.nav__mobile.open {
  transform: translateX(0);
  pointer-events: all;
}
.nav__mobile-link {
  display: block;
  padding: 16px 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.nav__mobile-link:hover { color: var(--primary-base); }
.nav__mobile-sub .nav__mobile-link {
  font-size: 16px;
  color: var(--grey-300);
  padding: 12px 16px;
  border-bottom-color: rgba(255,255,255,0.04);
}
.nav__mobile-cta { margin-top: 32px; }
.nav__mobile-cta .btn { width: 100%; justify-content: center; }

/* ----------------------------------------------------------------
   7. HERO
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Background slide system */
.hero__bg-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease-in-out, transform 9s ease-out;
}
.hero__bg-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(166.69deg, rgba(17,17,17,0.62) 60%, rgba(0,0,0,0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 160px 24px 80px;
  max-width: 920px;
  margin: auto auto 0;
  width: 100%;
}
.hero__headline {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 600;
  color: var(--primary-base);
  line-height: 1.3;
  margin-bottom: 24px;
}
.hero__headline-static {
  color: #FFF;
}
.hero__headline-dynamic {
  color: var(--primary-base);
  display: inline;
}
.hero__cursor {
  display: inline-block;
  color: var(--primary-base);
  font-weight: 300;
  margin-left: 2px;
  animation: cursorBlink 0.75s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.hero__headline .accent { color: var(--primary-200); }
.hero__headline .accent-period { color: var(--white); }
.hero__tagline {
  font-size: clamp(15px, 1.5vw, 18px);
  color: #d7d7d7;
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto 40px;
  letter-spacing: 0.015em;
}
.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Ticker */
.hero__trusted {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 24px 48px;
  margin-top: auto;
}
.hero__trusted-label {
  font-size: 14px;
  color: #d7d7d7;
  margin-bottom: 14px;
  letter-spacing: 0.025em;
}
.hero__ticker-wrap {
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.hero__ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: ticker 18s linear infinite;
}
.hero__ticker-track img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.9;
  background: rgba(255,255,255,0.92);
  border-radius: 6px;
  padding: 6px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------
   8. PAGE HERO (inner pages)
   ---------------------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: clamp(320px, 40vh, 480px);
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(166.69deg, rgba(10,20,20,0.82) 55%, rgba(0,84,87,0.7) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 160px;
  width: 100%;
}
.page-hero__breadcrumb {
  font-size: 14px;
  color: var(--grey-200);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero__breadcrumb a { color: var(--primary-200); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__breadcrumb .sep { color: var(--grey-300); }
.page-hero__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-hero__sub {
  font-size: 18px;
  color: #d7d7d7;
  max-width: 600px;
  line-height: 1.8;
}

/* Service page gradient heroes */
.page-hero--pipeline  { --hero-grad: linear-gradient(135deg,#0a1520 0%,#003d40 100%); }
.page-hero--civil     { --hero-grad: linear-gradient(135deg,#14100a 0%,#3d2000 100%); }
.page-hero--electrical{ --hero-grad: linear-gradient(135deg,#0a0a20 0%,#1a1a60 100%); }
.page-hero--scaffolding{ --hero-grad: linear-gradient(135deg,#101810 0%,#1a3a1a 100%); }
.page-hero--upgrade   { --hero-grad: linear-gradient(135deg,#0f0f14 0%,#2d2060 100%); }
.page-hero--insulation{ --hero-grad: linear-gradient(135deg,#1a0810 0%,#5a1a2a 100%); }
.page-hero--asset     { --hero-grad: linear-gradient(135deg,#081214 0%,#005457 100%); }
.page-hero--welding   { --hero-grad: linear-gradient(135deg,#140c00 0%,#604000 100%); }
.page-hero--tank      { --hero-grad: linear-gradient(135deg,#0a1414 0%,#004040 100%); }
.page-hero--procurement{ --hero-grad: linear-gradient(135deg,#0c0c1a 0%,#2a0060 100%); }
.page-hero--waste     { --hero-grad: linear-gradient(135deg,#101808 0%,#204010 100%); }

.page-hero--gradient .page-hero__bg { background: var(--hero-grad); }
.page-hero--gradient .page-hero__overlay { background: rgba(0,0,0,0.25); }

/* ----------------------------------------------------------------
   9. ABOUT / OVERVIEW SECTION
   ---------------------------------------------------------------- */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
.overview-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.overview-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 18px;
  color: var(--grey-400);
  line-height: 1.8;
  letter-spacing: 0.015em;
}
.stats-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-card {
  border: 1.2px solid var(--tertiary-base);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  min-width: 135px;
  text-align: center;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card__num { overflow-wrap: break-word; word-break: break-word; }
.stat-card__label { overflow-wrap: break-word; }
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,184,190,0.2);
}
.stat-card__num {
  font-size: 32px;
  font-weight: 600;
  color: var(--secondary-500);
  line-height: 1.25;
}
.stat-card__label {
  font-size: 18px;
  color: var(--grey-500);
  line-height: 1.8;
}

/* Image mosaic */
.image-mosaic {
  display: flex;
  gap: 10px;
  align-items: stretch;
  height: 540px;
  overflow: hidden;
  border-radius: 12px;
}
.image-mosaic__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.image-mosaic__col--down { margin-top: 48px; }
.image-mosaic__img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  flex: 1;
  height: 0; /* makes flex: 1 work correctly for img elements */
  display: block;
}

/* ----------------------------------------------------------------
   10. INDUSTRY CARDS
   ---------------------------------------------------------------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 0.7px solid var(--grey-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.industry-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: background var(--transition);
}
.industry-card:hover { background: rgba(0,153,158,0.04); }
.industry-card + .industry-card {
  border-left: 0.7px solid var(--grey-100);
}
.industry-card__icon {
  width: 40px;
  height: 40px;
  color: var(--primary-base);
  margin-bottom: 4px;
}
.industry-card__icon svg { width: 40px; height: 40px; }
.industry-card__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--grey-600);
}
.industry-card__body {
  font-size: 18px;
  color: var(--grey-400);
  line-height: 1.8;
}

/* ----------------------------------------------------------------
   11. SERVICE CARDS (Home featured)
   ---------------------------------------------------------------- */
/* Carousel wrapper replaces old grid */
.services-carousel {
  position: relative;
  margin-top: 40px;
}
.services-carousel__viewport {
  overflow: hidden;
}
.services-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.services-carousel__track .service-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
}
.services-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.services-carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--grey-100);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--grey-600);
}
.services-carousel__btn:hover {
  background: var(--primary-base);
  border-color: var(--primary-base);
  color: var(--white);
}
.services-carousel__btn svg { width: 20px; height: 20px; pointer-events: none; }
.services-carousel__dots {
  display: flex;
  gap: 8px;
}
.services-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-100);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
  padding: 0;
}
.services-carousel__dot.active {
  background: var(--primary-base);
  transform: scale(1.2);
}
/* Legacy grid: keep for backwards compat */
.services-home-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--transition);
  cursor: pointer;
}
.service-card:hover { transform: translateY(-4px); }
.service-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}
.service-card:hover .service-card__bg { transform: scale(1.05); }
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.service-card__body {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 16px;
  margin: 16px;
}
.service-card__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 6px;
  line-height: 1.27;
}
.service-card__desc {
  font-size: 18px;
  color: var(--grey-400);
  line-height: 1.8;
  margin-bottom: 10px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--grey-300);
  opacity: 0.8;
  transition: color var(--transition), opacity var(--transition);
}
.service-card__link:hover { color: var(--primary-base); opacity: 1; }
.service-card__link svg { width: 20px; height: 20px; }

/* ----------------------------------------------------------------
   12. ALL SERVICES GRID (services.html)
   ---------------------------------------------------------------- */
.all-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.svc-card:hover {
  border-color: var(--primary-base);
  box-shadow: 0 8px 32px rgba(0,153,158,0.12);
  transform: translateY(-4px);
}
.svc-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-card:hover .svc-card__img { transform: scale(1.04); }
.svc-card__img--grad {
  height: 240px;
  background: var(--hero-grad, linear-gradient(135deg,#0a1520 0%,#005457 100%));
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-card__img--grad svg { width: 64px; height: 64px; color: rgba(255,255,255,0.3); }
.svc-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.svc-card__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 10px;
}
.svc-card__desc {
  font-size: 16px;
  color: var(--grey-400);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-base);
  transition: gap var(--transition);
}
.svc-card__link:hover { gap: 10px; }
.svc-card__link svg { width: 18px; height: 18px; }

/* ----------------------------------------------------------------
   13. SERVICE DETAIL PAGE
   ---------------------------------------------------------------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.service-detail__main { display: flex; flex-direction: column; gap: 32px; }
.service-detail__body {
  font-size: 18px;
  color: var(--grey-400);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-scope {
  background: var(--grey-bg);
  border-radius: var(--radius-card);
  padding: 32px;
}
.service-scope__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 20px;
}
.service-scope__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.service-scope__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  color: var(--grey-400);
  line-height: 1.7;
}
.service-scope__list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-base);
  flex-shrink: 0;
  margin-top: 8px;
}
.service-sidebar {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-card {
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-card);
  padding: 24px;
}
.sidebar-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-100);
}
.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-size: 16px;
  color: var(--grey-400);
  border-bottom: 1px solid var(--grey-50);
  transition: color var(--transition);
}
.sidebar-nav-link:last-child { border-bottom: none; }
.sidebar-nav-link:hover { color: var(--primary-base); }
.sidebar-nav-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.sidebar-cta {
  background: var(--primary-base);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  text-align: center;
}
.sidebar-cta__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}
.sidebar-cta__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  line-height: 1.6;
}
.sidebar-cta .btn {
  background: var(--white);
  color: var(--primary-base);
  width: 100%;
  justify-content: center;
}
.sidebar-cta .btn:hover {
  background: var(--grey-50);
}

/* Service detail page: content/sidebar column aliases */
.service-detail__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-detail__content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--grey-700);
  margin-top: 8px;
  margin-bottom: 4px;
}
.service-detail__content p {
  font-size: 17px;
  color: var(--grey-400);
  line-height: 1.8;
}
.service-detail__content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}
.service-detail__content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 17px;
  color: var(--grey-400);
  line-height: 1.7;
}
.service-detail__content ul li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-base);
  flex-shrink: 0;
  margin-top: 9px;
}
.service-detail__sidebar {
  position: sticky;
  top: 130px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-sidebar-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service-sidebar-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--grey-600);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-100);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-sidebar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 0;
  font-size: 15px;
  color: var(--grey-400);
  border-bottom: 1px solid var(--grey-50);
  transition: color var(--transition);
  text-decoration: none;
}
.service-sidebar-link:last-child { border-bottom: none; }
.service-sidebar-link:hover,
.service-sidebar-link.active { color: var(--primary-base); }
.service-sidebar-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ----------------------------------------------------------------
   MARINE GALLERY
   ---------------------------------------------------------------- */
.marine-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.marine-gallery__item {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.marine-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.marine-gallery__item:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
  .marine-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .marine-gallery { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   14. PROJECTS
   ---------------------------------------------------------------- */
/* ----------------------------------------------------------------
   PROJECT PHOTO GALLERY (Winners Avenue & featured projects)
   ---------------------------------------------------------------- */
.project-featured {
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-100);
  margin-bottom: 48px;
}
.project-featured__hero {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.project-featured__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-featured__hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.project-featured__body {
  padding: 32px;
}
.project-featured__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 10px;
}
.project-featured__desc {
  font-size: 16px;
  color: var(--grey-400);
  line-height: 1.75;
  margin-bottom: 24px;
}
.project-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.project-photo-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}
.project-photo-grid img:hover { opacity: 0.88; transform: scale(1.02); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.project-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-100);
  transition: all var(--transition);
  display: block;
  text-decoration: none;
  color: inherit;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border-color: var(--primary-base);
}
.project-card__img { width: 100%; height: 220px; object-fit: cover; }
.project-card__body { padding: 24px; }
.project-card__tag {
  display: inline-block;
  background: rgba(0,153,158,0.1);
  color: var(--primary-base);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.project-card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 10px;
  line-height: 1.3;
}
.project-card__desc {
  font-size: 16px;
  color: var(--grey-400);
  line-height: 1.7;
}
.project-card__meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-50);
  font-size: 13px;
  color: var(--grey-300);
}

/* ----------------------------------------------------------------
   15. CONTACT SECTION
   ---------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 454px;
  gap: 32px;
  align-items: start;
}
.contact-form-box {
  background: rgba(212,215,216,0.35);
  padding: 32px;
  box-shadow: var(--shadow-section);
}
.contact-form-box__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-size: 16px;
  color: var(--grey-600);
  display: flex;
  gap: 3px;
}
.form-label .req { color: var(--primary-base); font-family: var(--font-poppins); }
.form-input,
.form-textarea {
  background: rgba(255,255,255,0.93);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 18px;
  color: var(--grey-600);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--grey-200); }
.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-base);
  box-shadow: 0 0 0 3px rgba(0,153,158,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 16px;
}
.form-message--success {
  background: rgba(0,153,158,0.1);
  color: var(--secondary-500);
  border: 1px solid var(--primary-base);
}
.form-message--error {
  background: rgba(220,38,38,0.08);
  color: #dc2626;
  border: 1px solid #dc2626;
}

/* Quick contact card */
.quick-contact-card {
  background: var(--white);
  border: 1.2px solid var(--grey-50);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.quick-contact-card__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 24px;
}
.qc-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-50);
}
.qc-item:last-child { border-bottom: none; }
.qc-item__icon {
  width: 40px;
  height: 40px;
  border: 0.5px solid var(--primary-base);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-base);
}
.qc-item__icon svg { width: 20px; height: 20px; }
.qc-item__label {
  font-size: 18px;
  font-weight: 500;
  color: var(--grey-700);
  margin-bottom: 4px;
}
.qc-item__value {
  font-size: 18px;
  color: var(--grey-400);
  line-height: 1.7;
}
.qc-item__value a { color: var(--grey-400); }
.qc-item__value a:hover { color: var(--primary-base); }

/* ----------------------------------------------------------------
   16. POLICY PAGES
   ---------------------------------------------------------------- */
.policy-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.policy-content { display: flex; flex-direction: column; gap: 0; }
.policy-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 16px;
  margin-top: 40px;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p {
  font-size: 18px;
  color: var(--grey-400);
  line-height: 1.8;
  margin-bottom: 16px;
}
.policy-content ul {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.policy-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  color: var(--grey-400);
  line-height: 1.7;
}
.policy-content ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-base);
  flex-shrink: 0;
  margin-top: 8px;
}
.policy-box {
  background: rgba(0,153,158,0.06);
  border-left: 4px solid var(--primary-base);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 32px 0;
}
.policy-box p { color: var(--grey-600); font-weight: 500; margin: 0; }
.policy-sidebar {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.policy-sidebar-card {
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-card);
  padding: 20px;
}
.policy-sidebar-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 12px;
}
.policy-sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--grey-400);
  border-bottom: 1px solid var(--grey-50);
  transition: color var(--transition);
}
.policy-sidebar-link:last-child { border-bottom: none; }
.policy-sidebar-link:hover { color: var(--primary-base); }
.policy-sidebar-link svg { width: 16px; height: 16px; }

/* ----------------------------------------------------------------
   17. FOOTER
   ---------------------------------------------------------------- */
.footer { background: var(--grey-700); }
.footer__top { padding: 64px 0 48px; }
.footer__grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 260px;
  gap: 40px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer__logo-mark { width: 32px; height: 46px; object-fit: contain; }
.footer__logo-full { height: 53px; width: auto; max-width: 220px; object-fit: contain; }
.footer__address {
  font-size: 14px;
  color: var(--grey-200);
  line-height: 1.8;
  letter-spacing: 0.025em;
}
.footer__col-title {
  font-size: 14px;
  color: var(--primary-base);
  margin-bottom: 16px;
  letter-spacing: 0.025em;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 14px;
  color: var(--grey-200);
  line-height: 1.43;
  letter-spacing: 0.025em;
  transition: color var(--transition);
}
.footer__link:hover { color: var(--primary-base); }
.footer__contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer__contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact-icon {
  width: 30px;
  height: 30px;
  border: 0.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--grey-200);
}
.footer__contact-icon svg { width: 14px; height: 14px; }
.footer__contact-label { font-size: 14px; font-weight: 500; color: var(--grey-200); }
.footer__contact-value { font-size: 14px; color: var(--secondary-200); }
.footer__contact-value a { color: var(--secondary-200); }
.footer__contact-value a:hover { color: var(--primary-200); }

.footer__bottom {
  border-top: 0.5px solid rgba(172,176,177,0.25);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--grey-200);
}
.footer__bottom-email svg { width: 22px; height: 22px; color: var(--grey-200); }
.footer__bottom-email a { color: var(--grey-200); }
.footer__bottom-email a:hover { color: var(--primary-base); }
.footer__copyright { font-size: 14px; color: var(--grey-200); letter-spacing: 0.025em; }

/* ----------------------------------------------------------------
   18. SCROLL TO TOP
   ---------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--primary-base);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 900;
  box-shadow: 0 4px 16px rgba(0,153,158,0.4);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--secondary-500); transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; }

/* ----------------------------------------------------------------
   19. MISC
   ---------------------------------------------------------------- */
.cta-row { display: flex; justify-content: center; margin-top: 40px; }
.divider { height: 1px; background: var(--grey-100); margin: 40px 0; }

/* Highlight box (used in about page) */
.highlight-box {
  background: rgba(0,153,158,0.06);
  border-radius: var(--radius-card);
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  text-align: center;
}
.highlight-box__item {}
.highlight-box__num {
  font-size: 40px;
  font-weight: 600;
  color: var(--primary-base);
  line-height: 1.2;
}
.highlight-box__label {
  font-size: 16px;
  color: var(--grey-500);
  margin-top: 4px;
}

/* Values cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  transition: all var(--transition);
}
.value-card:hover {
  border-color: var(--primary-base);
  box-shadow: 0 6px 24px rgba(0,153,158,0.1);
  transform: translateY(-3px);
}
.value-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(0,153,158,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary-base);
}
.value-card__icon svg { width: 26px; height: 26px; }
.value-card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 10px;
}
.value-card__body { font-size: 16px; color: var(--grey-400); line-height: 1.7; }

/* Certifications strip */
.cert-strip {
  background: var(--grey-700);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.cert-strip__item {
  text-align: center;
  color: var(--white);
}
.cert-strip__code {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-200);
}
.cert-strip__label { font-size: 13px; color: var(--grey-200); margin-top: 4px; }

/* ----------------------------------------------------------------
   20. RESPONSIVE BREAKPOINTS
   ---------------------------------------------------------------- */

/* Large Desktop 1441px+ */
@media (min-width: 1441px) {
  :root {
    --container-max: 1400px;
    --container-px: 80px;
    --section-pad: 100px;
  }
  .nav { width: min(1400px, calc(100% - 48px)); }
}

/* Laptop / smaller desktop 1024–1280 */
@media (max-width: 1280px) {
  :root { --container-px: 48px; --section-pad: 64px; }
  .nav { width: calc(100% - 48px); }
  .nav__inner { padding: 0 28px; }
  .nav__link { font-size: 16px; padding: 8px 10px; }
  .overview-grid { grid-template-columns: 1fr 320px; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr 380px; }
  .policy-layout { grid-template-columns: 1fr 260px; }
}

/* Tablet 768–1024 */
@media (max-width: 1024px) {
  :root { --container-px: 32px; --section-pad: 56px; }
  .nav { top: 16px; height: 76px; width: calc(100% - 32px); }
  .nav__inner { padding: 0 24px; border-radius: 38px; }
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.scrolled { top: 12px; }
  .nav.scrolled .nav__inner { border-radius: 38px; }

  .hero__content { padding: 140px 24px 140px; }

  .overview-grid { grid-template-columns: 1fr; }
  .image-mosaic {
    height: auto;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    border-radius: 12px;
  }
  .image-mosaic::-webkit-scrollbar { display: none; }
  .image-mosaic__col {
    display: contents;
  }
  .image-mosaic__col--down { margin-top: 0; }
  .image-mosaic__img {
    flex: 0 0 78vw;
    height: 280px;
    scroll-snap-align: start;
    border-radius: 10px;
  }

  .industry-grid { grid-template-columns: repeat(2,1fr); }
  .industry-card + .industry-card { border-left: none; border-top: 0.7px solid var(--grey-100); }
  .industry-card:nth-child(2) { border-left: 0.7px solid var(--grey-100); border-top: none; }
  .industry-card:nth-child(4) { border-left: 0.7px solid var(--grey-100); }

  .services-home-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .services-carousel__track .service-card { flex: 0 0 calc(50% - 12px); min-width: calc(50% - 12px); }

  .contact-layout { grid-template-columns: 1fr; }

  .projects-grid { grid-template-columns: 1fr 1fr; }

  .service-detail { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }

  .policy-layout { grid-template-columns: 1fr; }
  .policy-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; }

  .highlight-box { grid-template-columns: repeat(3,1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* Mobile 480–768 */
@media (max-width: 768px) {
  :root { --container-px: 20px; --section-pad: 48px; }
  .nav { height: 68px; top: 12px; width: calc(100% - 24px); }
  .nav__inner { border-radius: 34px; padding: 0 20px; }
  .nav.scrolled { top: 8px; }
  .stat-card { flex-shrink: 1; min-width: 0; flex: 1 1 140px; }
  .stat-card__num { font-size: clamp(20px, 6vw, 32px); }

  .hero__headline { font-size: clamp(26px, 8vw, 38px); }
  .hero__tagline { font-size: 15px; }
  .hero__trusted { display: none; }

  .services-home-grid { grid-template-columns: 1fr; }
  .service-card:last-child { max-width: 100%; }
  .services-carousel__track .service-card { flex: 0 0 100%; min-width: 100%; }
  .all-services-grid { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }

  .projects-grid { grid-template-columns: 1fr; }

  .highlight-box { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__link { text-align: left; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .policy-sidebar { grid-template-columns: 1fr; }
}

/* Footer Social */
.footer__social { display: flex; align-items: center; }
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--grey-200);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__social-link:hover { color: var(--primary-base); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* Marine Gallery */
.marine-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.marine-gallery__item {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.marine-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.marine-gallery__item:hover img { transform: scale(1.04); }

/* Small mobile max-480 */
@media (max-width: 480px) {
  :root { --container-px: 16px; --section-pad: 40px; }
  .nav { width: calc(100% - 16px); }
  .nav__inner { padding: 0 16px; border-radius: 28px; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-card + .industry-card { border-left: none; border-top: 0.7px solid var(--grey-100); }
  .highlight-box { grid-template-columns: 1fr; }
  .cert-strip { flex-direction: column; }
  .btn { font-size: 16px; height: 44px; }
  .stats-row { flex-direction: column; gap: 12px; }
  .stat-card { width: 100%; min-width: 0; flex-shrink: 1; }
  .stat-card__num { font-size: clamp(22px, 7vw, 28px); }
  .hero__cta { flex-direction: column; align-items: center; }
  .hero__cta .btn { width: 100%; max-width: 320px; justify-content: center; }
  .overview-body { font-size: 16px; }
}

/* Ultra-wide 1920px+ */
@media (min-width: 1920px) {
  :root { --container-max: 1600px; --container-px: 120px; }
  .nav { width: min(1600px, calc(100% - 48px)); }
}

/* ----------------------------------------------------------------
   PROJECT DETAIL CARDS: Figma redesign style
   ---------------------------------------------------------------- */
.project-card--detail {
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 0.3px 1.75px rgba(0,0,0,0.25);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.project-card--detail:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.13);
}
.pcd__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.pcd__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.pcd__title {
  font-size: 20px;
  font-weight: 600;
  color: #007175;
  line-height: 1.3;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-100);
  margin: 0;
}
.pcd__meta { display: flex; flex-direction: column; gap: 6px; }
.pcd__row {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-size: 15px;
  line-height: 1.6;
}
.pcd__key { font-weight: 500; color: var(--grey-700); white-space: nowrap; }
.pcd__val { color: var(--grey-500); }
.pcd__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #007a7e;
}
.pcd__status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #57AA39;
  flex-shrink: 0;
}
.pcd__status--completed { color: var(--primary-base); }
.pcd__status--completed .pcd__status-dot { background: var(--primary-base); }

/* Partners grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.partner-card {
  background: var(--white);
  box-shadow: 0 0 1.25px rgba(0,0,0,0.1);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.partner-card img {
  max-width: 80px;
  max-height: 70px;
  object-fit: contain;
}

/* Equipment capabilities cards */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.equipment-card {
  background: var(--white);
  box-shadow: 0 0.3px 1.75px rgba(0,0,0,0.25);
  overflow: hidden;
}
.equipment-card__img { width: 100%; height: 180px; object-fit: cover; display: block; }
.equipment-card__body { padding: 20px; }
.equipment-card__title {
  font-size: 20px;
  font-weight: 600;
  color: #007175;
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--grey-100);
}
.equipment-card__desc { font-size: 16px; color: var(--grey-600); line-height: 1.75; margin: 0; }

/* Dossier note */
.project-dossier { font-size: 16px; color: var(--grey-400); margin-bottom: 8px; }

/* Individual project page detail block */
.project-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.project-detail-meta {
  background: rgba(212,215,216,0.25);
  border: 1px solid var(--grey-100);
  padding: 28px;
  border-radius: var(--radius-card);
}
.project-detail-meta__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-100);
}
.project-detail-meta__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}
.project-detail-meta__row:last-child { margin-bottom: 0; }
.project-detail-meta__label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey-300); font-weight: 500; }
.project-detail-meta__value { font-size: 16px; color: var(--grey-600); font-weight: 500; }

/* Responsive: project detail cards */
@media (max-width: 1024px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-grid { grid-template-columns: 1fr 1fr; }
  .project-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .equipment-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pcd__img { height: 180px; }
}

/* ----------------------------------------------------------------
   HOME: Who We Are full-width variant (image mosaic removed)
   ---------------------------------------------------------------- */
.overview-grid:has(> .overview-text--full) {
  grid-template-columns: 1fr;
  max-width: 880px;
  margin: 0 auto;
}
.overview-text--full .overview-body { max-width: 820px; }

/* Clickable stat card (for "Industry Experience" → Projects) */
a.stat-card,
.stat-card--link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
a.stat-card:hover,
.stat-card--link:hover {
  border-color: var(--primary-base);
  box-shadow: 0 6px 18px rgba(0,153,158,0.18);
}
a.stat-card:hover .stat-card__num,
.stat-card--link:hover .stat-card__num {
  color: var(--primary-base);
}

/* Stats row centered under the Services carousel */
.stats-row--services {
  justify-content: center;
}

/* ----------------------------------------------------------------
   HOME: Why Choose Us
   ---------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-card);
  padding: 28px 22px;
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--primary-base);
  box-shadow: 0 6px 24px rgba(0,153,158,0.1);
  transform: translateY(-3px);
}
.why-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(0,153,158,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary-base);
}
.why-card__icon svg { width: 26px; height: 26px; }
.why-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-card__body { font-size: 15px; color: var(--grey-400); line-height: 1.65; }

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   ABOUT: Mission & Vision cards
   ---------------------------------------------------------------- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.mv-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  transition: all var(--transition);
  text-align: left;
}
.mv-card:hover {
  border-color: var(--primary-base);
  box-shadow: 0 8px 28px rgba(0,153,158,0.12);
  transform: translateY(-3px);
}
.mv-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(0,153,158,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-base);
}
.mv-card__icon svg { width: 30px; height: 30px; }
.mv-card__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 12px;
}
.mv-card__body { font-size: 17px; color: var(--grey-400); line-height: 1.75; }

@media (max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ----------------------------------------------------------------
   FOOTER: secondary (UK) address spacing
   ---------------------------------------------------------------- */
.footer__address--secondary {
  margin-top: 12px;
}
.footer__address-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-300);
  margin-bottom: 4px;
}

/* =================================================================
   V2 REDESIGN: Tompsebet 2026 (page-scoped under body.v2-theme)
   Activated by adding class="v2-theme" to <body>.
   Green palette + neutrals only. Premium industrial aesthetic.
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

body.v2-theme {
  /* Teal/cyan system: Tompsebet style guide v2.1 */
  --v2-deep:    #0B1F22;   /* deepest near-black teal */
  --v2-hunter:  #102C30;   /* dark teal-grey */
  --v2-primary: #1ED5DC;   /* bright primary teal: CTA, accents */
  --v2-ever:    #14B7BD;   /* slightly darker primary for hover */
  --v2-moss:    #4FE5EB;   /* light accent teal */
  --v2-pale:    #D6F8FA;   /* very pale teal */
  --v2-soft:    #ECFCFD;   /* near-white teal tint */
  --v2-light:   #F4FDFE;   /* lightest tint */

  /* Neutrals */
  --v2-white:     #FFFFFF;
  --v2-offwhite:  #F7F7F5;
  --v2-charcoal:  #1A1A1A;
  --v2-slate:     #3A3F44;
  --v2-ink:       #0B1518;
  --v2-line:      #E2E6E7;
  --v2-mute:      #6B7174;

  /* Retheme global tokens: turns nav, footer, buttons teal automatically */
  --primary-base:  #1ED5DC;
  --primary-200:   #4FE5EB;
  --secondary-500: #0B1F22;
  --secondary-200: #14B7BD;
  --tertiary-base: #14B7BD;
  --grey-700:      #0B1518;
  --grey-600:      #1A1A1A;

  /* Typography */
  --font-display: 'Poppins', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Radii */
  --v2-r-sm:  8px;
  --v2-r-md:  16px;
  --v2-r-lg:  24px;
  --v2-r-xl:  32px;

  /* Gradients */
  --v2-grad-dark:    linear-gradient(135deg, #0B1F22 0%, #102C30 55%, #14B7BD 100%);
  --v2-grad-deep:    linear-gradient(180deg, rgba(11,31,34,0.92) 0%, rgba(11,31,34,0.70) 100%);
  --v2-grad-overlay: linear-gradient(180deg, rgba(11,31,34,0.10) 0%, rgba(11,31,34,0.85) 100%);
  --v2-grad-soft:    linear-gradient(180deg, #F4FDFE 0%, #FFFFFF 100%);

  /* Shadows */
  --v2-shadow-sm: 0 2px 10px rgba(11,31,34,0.06);
  --v2-shadow-md: 0 12px 32px rgba(11,31,34,0.10);
  --v2-shadow-lg: 0 24px 56px rgba(11,31,34,0.16);
  --v2-shadow-glow: 0 16px 40px rgba(30,213,220,0.30);

  background: var(--v2-white);
  color: var(--v2-charcoal);
}

body.v2-theme h1,
body.v2-theme h2,
body.v2-theme h3,
body.v2-theme h4,
body.v2-theme .v2-display,
body.v2-theme .v2-heading {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  /* color intentionally not set here: let component classes control color
     so light-on-dark cards (.v2-svc-card__title, .v2-cta__title, etc.)
     aren't overridden by this higher-specificity selector */
}

/* Override page-hero so existing markup picks up new green styling */
body.v2-theme .page-hero {
  min-height: 78vh;
  padding-top: 160px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}
body.v2-theme .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--v2-grad-overlay);
  z-index: 1;
  pointer-events: none;
}
body.v2-theme .page-hero__overlay {
  background: linear-gradient(120deg, rgba(11,31,34,0.85) 0%, rgba(16,44,48,0.55) 60%, rgba(30,213,220,0.32) 100%) !important;
}
/* Hero content keeps the standard .container alignment (max-width 1240px, margin auto)
   so the hero anchors to the same horizontal bounds as the nav and the section content
   below. Inner children (title, sub) keep their own max-widths for readability. */
body.v2-theme .page-hero__content { position: relative; z-index: 2; text-align: left; }
body.v2-theme .page-hero__content > * { text-align: left; }
body.v2-theme .page-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
body.v2-theme .page-hero__breadcrumb a { color: rgba(255,255,255,0.7); }
body.v2-theme .page-hero__breadcrumb a:hover { color: var(--v2-moss); }
body.v2-theme .page-hero__breadcrumb .sep { color: rgba(255,255,255,0.35); }
body.v2-theme .page-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 22px;
  max-width: 800px;
}
body.v2-theme .page-hero__title .accent {
  background: linear-gradient(120deg, #4FE5EB 0%, #1ED5DC 50%, #ECFCFD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
body.v2-theme .page-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
}

/* Hero meta: small chips beneath sub */
.v2-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.v2-hero-meta__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.v2-hero-meta__chip svg { width: 16px; height: 16px; }

/* Buttons in v2 */
body.v2-theme .btn--primary {
  background: var(--v2-primary);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0;
  height: 52px;
  padding: 0 26px;
}
body.v2-theme .btn--primary:hover {
  background: var(--v2-ever);
  box-shadow: var(--v2-shadow-glow);
  transform: translateY(-1px);
}
body.v2-theme .btn--ghost {
  background: transparent;
  color: var(--v2-charcoal);
  border: 1.5px solid var(--v2-line);
  border-radius: 8px;
  font-weight: 600;
  height: 52px;
}
body.v2-theme .btn--ghost:hover {
  border-color: var(--v2-primary);
  color: var(--v2-primary);
  background: var(--v2-light);
}

/* V2 section primitives */
.v2-section { padding: 110px 0; position: relative; }
.v2-section--tight { padding: 80px 0; }
.v2-section--soft { background: var(--v2-soft); }
.v2-section--light { background: var(--v2-light); }
.v2-section--offwhite { background: var(--v2-offwhite); }
.v2-section--dark {
  background: var(--v2-grad-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.v2-section--dark::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79,229,235,0.20) 0%, transparent 65%);
  top: -250px;
  right: -200px;
  pointer-events: none;
}
.v2-section--dark::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(20,183,189,0.22) 0%, transparent 70%);
  bottom: -200px;
  left: -180px;
  pointer-events: none;
}
.v2-section--dark .v2-eyebrow { color: var(--v2-moss); }
.v2-section--dark .v2-section-title,
.v2-section--dark .v2-section-head h1,
.v2-section--dark .v2-section-head h2,
.v2-section--dark .v2-section-head h3,
.v2-section--dark .v2-detail__lede,
.v2-section--dark .v2-highlight__title,
.v2-section--dark .v2-process__title,
.v2-section--dark .v2-scope-item__title,
.v2-section--dark .v2-related__title { color: #fff; }
.v2-section--dark .v2-section-sub,
.v2-section--dark .v2-detail__content p,
.v2-section--dark .v2-split__content p,
.v2-section--dark .v2-highlight__desc,
.v2-section--dark .v2-process__desc,
.v2-section--dark .v2-scope-item__desc { color: rgba(255,255,255,0.75); }

/* Auto-darken highlight cards inside dark sections so they don't need inline overrides */
.v2-section--dark .v2-highlight {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.14);
}
.v2-section--dark .v2-highlight:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(79,229,235,0.48);
}
.v2-section--dark .v2-highlight__icon {
  background: rgba(255,255,255,0.10);
  color: #fff;
}

/* Auto-darken scope cards inside dark sections */
.v2-section--dark .v2-scope-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.14);
}
.v2-section--dark .v2-scope-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(79,229,235,0.48);
}
.v2-section--dark .v2-scope-item__num {
  background: rgba(255,255,255,0.10);
  color: var(--v2-moss);
}

/* Auto-darken v2-list bullets inside dark sections */
.v2-section--dark .v2-list li { color: rgba(255,255,255,0.85); }
.v2-section--dark .v2-list li::before {
  background-color: rgba(255,255,255,0.10);
}

/* Auto-darken chips inside dark sections (when not explicitly chip--dark) */
.v2-section--dark .v2-chip:not(.v2-chip--dark) {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.v2-section--dark .v2-chip:not(.v2-chip--dark):hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
}
.v2-section--dark .v2-chip:not(.v2-chip--dark) svg { color: var(--v2-moss); }

/* Stat blocks inside dark sections */
.v2-section--dark .v2-stats {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.14);
}
.v2-section--dark .v2-stat { border-right-color: rgba(255,255,255,0.14); }
.v2-section--dark .v2-stat__num { color: var(--v2-moss); }
.v2-section--dark .v2-stat__label { color: rgba(255,255,255,0.75); }

/* Featured banner: primary button needs to be white-on-green so it's readable */
.v2-featured .btn--primary,
body.v2-theme .v2-featured .btn--primary {
  background: #fff !important;
  color: var(--v2-primary) !important;
  border-radius: 8px;
}
.v2-featured .btn--primary:hover,
body.v2-theme .v2-featured .btn--primary:hover {
  background: var(--v2-light) !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2) !important;
  transform: translateY(-1px);
}

/* Featured tag inside CTA should contrast: translucent on green */
body.v2-theme .v2-cta .v2-featured__tag {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.92);
}

/* V2 eyebrow / section heading */
.v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-primary);
  margin-bottom: 18px;
  text-align: left;
}
.v2-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--v2-charcoal);
  margin: 0 0 20px 0;
  max-width: 760px;
  text-align: left;
}
.v2-section-title .accent {
  background: linear-gradient(120deg, var(--v2-primary), var(--v2-ever));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.v2-section-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--v2-mute);
  max-width: 680px;
  margin: 0;
  text-align: left;
}
/* Block-flow section head: matches the existing about.html "Company Overview"
   pattern (badge → h2 → optional sub, each as a block at the left of the container).
   No flexbox or grid wrapper, so titles read the same way as the unredesigned pages. */
.v2-section-head {
  margin-bottom: 56px;
  width: 100%;
  text-align: left;
}
.v2-section-head--center { text-align: center; }
.v2-section-head--center .v2-section-title,
.v2-section-head--center .v2-section-sub { margin-left: auto; margin-right: auto; }
.v2-section-head--center .v2-section-title,
.v2-section-head--center .v2-section-sub { margin-left: auto; margin-right: auto; }
.v2-section-head--row {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.v2-section-head--row .v2-section-sub { max-width: 440px; margin-top: auto; }

/* ─────────── SERVICES: large modular cards ─────────── */
.v2-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.v2-svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--v2-r-lg);
  overflow: hidden;
  background: var(--v2-white);
  border: 1px solid var(--v2-line);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
  min-height: 480px;
}
.v2-svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,31,34,0.96) 100%);
  z-index: 2;
  pointer-events: none;
}
.v2-svc-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.8s ease;
}
.v2-svc-card:hover { transform: translateY(-6px); box-shadow: var(--v2-shadow-lg); border-color: var(--v2-moss); }
.v2-svc-card:hover .v2-svc-card__img { transform: scale(1.06); }

.v2-svc-card__body {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding: 40px 36px 36px;
  color: #fff;
}
.v2-svc-card__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--v2-moss);
  margin-bottom: 14px;
  display: block;
}
.v2-svc-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #fff;
}
.v2-svc-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin-bottom: 22px;
  max-width: 460px;
}
.v2-svc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  transition: all 0.3s ease;
}
.v2-svc-card__cta svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.v2-svc-card:hover .v2-svc-card__cta { background: var(--v2-primary); border-color: var(--v2-primary); }
.v2-svc-card:hover .v2-svc-card__cta svg { transform: translateX(4px); }

.v2-svc-card__tag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

/* Wide service-list grid for full services pages */
.v2-svc-grid--four {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1100px) {
  .v2-svc-grid--four { grid-template-columns: repeat(2, 1fr); }
}

/* Compact service cards (for sub-service links) */
.v2-svc-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.v2-svc-list__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--v2-r-md);
  background: var(--v2-white);
  border: 1px solid var(--v2-line);
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.v2-svc-list__item:hover {
  border-color: var(--v2-primary);
  background: var(--v2-light);
  transform: translateY(-2px);
}
.v2-svc-list__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--v2-soft);
  color: var(--v2-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.v2-svc-list__icon svg { width: 22px; height: 22px; }
.v2-svc-list__item:hover .v2-svc-list__icon { background: var(--v2-primary); color: #fff; }
.v2-svc-list__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--v2-charcoal);
}

/* ─────────── CAPABILITY STRIP: split image + content ─────────── */
.v2-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.v2-split--reverse { grid-template-columns: 1fr 1.05fr; }
.v2-split--reverse .v2-split__media { order: 2; }
.v2-split__media {
  position: relative;
  border-radius: var(--v2-r-xl);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--v2-soft);
}
.v2-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v2-split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,34,0.0) 50%, rgba(11,31,34,0.4) 100%);
}
.v2-split__floating {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  padding: 22px 26px;
  border-radius: var(--v2-r-md);
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
}
.v2-split__floating-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.v2-split__floating-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.v2-split__content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--v2-mute);
  margin-bottom: 16px;
}
.v2-split__content p:last-of-type { margin-bottom: 28px; }

.v2-split__list { display: grid; gap: 14px; margin-bottom: 32px; }
.v2-split__list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--v2-charcoal);
  line-height: 1.55;
}
.v2-split__list-item::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 6px;
  background: var(--v2-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231ED5DC' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center center;
}

/* ─────────── V2-LIST: iconographic card grid ─────────── */
.v2-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.v2-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: var(--v2-white);
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-r-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--v2-charcoal);
  letter-spacing: -0.005em;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.v2-list li:hover {
  border-color: var(--v2-primary);
  background: var(--v2-light);
  transform: translateY(-3px);
  box-shadow: var(--v2-shadow-sm);
}
.v2-list li::before {
  content: "";
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-top: -2px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--v2-soft) 0%, var(--v2-pale) 100%);
  background-image:
    linear-gradient(135deg, rgba(30,213,220,0.08) 0%, rgba(30,213,220,0.18) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%231ED5DC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 11l3 3L22 4'/><path d='M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover, 22px 22px;
  border: 1px solid rgba(30,213,220,0.18);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.v2-list li:hover::before {
  border-color: rgba(30,213,220,0.45);
  box-shadow: 0 6px 16px rgba(30,213,220,0.28);
  transform: scale(1.04);
}

/* Icon variations: cycle through engineering glyphs for visual rhythm */
.v2-list li:nth-child(4n+1)::before {
  /* clipboard tick: capability/spec */
  background-image:
    linear-gradient(135deg, rgba(30,213,220,0.08) 0%, rgba(30,213,220,0.18) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%231ED5DC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 11l3 3L22 4'/><path d='M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11'/></svg>");
}
.v2-list li:nth-child(4n+2)::before {
  /* shield: HSE / integrity */
  background-image:
    linear-gradient(135deg, rgba(30,213,220,0.08) 0%, rgba(30,213,220,0.18) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%231ED5DC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2l9 4v6c0 5-4 9-9 10-5-1-9-5-9-10V6l9-4z'/><path d='M9 12l2 2 4-4'/></svg>");
}
.v2-list li:nth-child(4n+3)::before {
  /* gear: engineering */
  background-image:
    linear-gradient(135deg, rgba(30,213,220,0.08) 0%, rgba(30,213,220,0.18) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%231ED5DC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='3'/><path d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 2.83-2.83l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z'/></svg>");
}
.v2-list li:nth-child(4n+4)::before {
  /* pipeline / flow */
  background-image:
    linear-gradient(135deg, rgba(30,213,220,0.08) 0%, rgba(30,213,220,0.18) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%231ED5DC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M2 12h6'/><path d='M16 12h6'/><circle cx='12' cy='12' r='4'/></svg>");
}

/* Inside dark sections */
.v2-section--dark .v2-list li {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
}
.v2-section--dark .v2-list li:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(79,229,235,0.48);
}
.v2-section--dark .v2-list li::before {
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%234FE5EB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 11l3 3L22 4'/><path d='M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11'/></svg>");
  background-size: cover, 22px 22px;
  border-color: rgba(79,229,235,0.32);
}

/* ─────────── PROCESS / TIMELINE: numbered cards ─────────── */
.v2-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.v2-process::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--v2-moss) 0, var(--v2-moss) 6px, transparent 6px, transparent 14px);
  z-index: 0;
}
.v2-process__step {
  position: relative;
  z-index: 1;
  background: var(--v2-white);
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-r-md);
  padding: 28px 24px;
  transition: all 0.3s ease;
}
.v2-process__step:hover { border-color: var(--v2-primary); transform: translateY(-4px); box-shadow: var(--v2-shadow-md); }
.v2-process__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--v2-grad-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 22px;
  border: 4px solid #fff;
  outline: 1px solid var(--v2-line);
}
.v2-process__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--v2-charcoal);
}
.v2-process__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--v2-mute);
}

/* ─────────── INDUSTRY SECTORS ─────────── */
.v2-sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.v2-sector {
  position: relative;
  border-radius: var(--v2-r-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--v2-soft);
  cursor: pointer;
  transition: transform 0.4s ease;
}
.v2-sector:hover { transform: translateY(-4px); }
.v2-sector img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.v2-sector:hover img { transform: scale(1.08); }
.v2-sector::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,31,34,0.92) 100%);
}
.v2-sector__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.01em;
}
.v2-sector__label span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-moss);
  margin-bottom: 6px;
}

/* ─────────── STATS BAR (floating) ─────────── */
.v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: var(--v2-r-lg);
  overflow: hidden;
  background: var(--v2-white);
  border: 1px solid var(--v2-line);
  box-shadow: var(--v2-shadow-md);
}
.v2-stat {
  padding: 32px 28px;
  border-right: 1px solid var(--v2-line);
  position: relative;
}
.v2-stat:last-child { border-right: none; }
.v2-stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  color: var(--v2-primary);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.v2-stat__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--v2-mute);
  line-height: 1.4;
}

/* Floating stats variant: overlap into hero on detail pages */
.v2-stats--float {
  margin-top: -84px;
  position: relative;
  z-index: 4;
}

/* ─────────── PROJECT CARDS ─────────── */
.v2-proj-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.v2-proj-filter button {
  font-family: var(--font-display);
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--v2-white);
  border: 1px solid var(--v2-line);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--v2-mute);
  cursor: pointer;
  transition: all 0.3s ease;
}
.v2-proj-filter button:hover { color: var(--v2-primary); border-color: var(--v2-primary); }
.v2-proj-filter button.active {
  background: var(--v2-primary);
  color: #fff;
  border-color: var(--v2-primary);
}

.v2-proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v2-proj-grid--featured {
  grid-template-columns: 2fr 1fr 1fr;
}
.v2-proj-grid--featured .v2-proj-card:first-child {
  grid-row: span 2;
}

.v2-proj-card {
  position: relative;
  display: block;
  border-radius: var(--v2-r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  aspect-ratio: 4/5;
  background: var(--v2-charcoal);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.v2-proj-card--wide { aspect-ratio: 16/10; }
.v2-proj-card--featured { aspect-ratio: auto; min-height: 100%; }
.v2-proj-card:hover { transform: translateY(-6px); box-shadow: var(--v2-shadow-lg); }

.v2-proj-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.4s ease;
}
.v2-proj-card:hover .v2-proj-card__img { transform: scale(1.06); }
.v2-proj-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,31,34,0.94) 100%);
  pointer-events: none;
}

.v2-proj-card__top {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.v2-proj-card__category {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.20);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.v2-proj-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(20,183,189,0.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.v2-proj-card__status--ongoing { background: rgba(79,229,235,0.85); }
.v2-proj-card__status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
}

.v2-proj-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 28px 26px 26px;
  color: #fff;
}
.v2-proj-card--featured .v2-proj-card__body { padding: 40px 36px 36px; }

.v2-proj-card__client {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-moss);
  margin-bottom: 10px;
}
.v2-proj-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: #fff;
}
.v2-proj-card--featured .v2-proj-card__title {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 14px;
}
.v2-proj-card__loc {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.v2-proj-card__loc svg { width: 14px; height: 14px; }
.v2-proj-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  transition: all 0.3s ease;
  color: #fff;
}
.v2-proj-card__arrow svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.v2-proj-card:hover .v2-proj-card__arrow { background: var(--v2-primary); border-color: var(--v2-primary); }
.v2-proj-card:hover .v2-proj-card__arrow svg { transform: translate(2px, -2px) rotate(0deg); }

/* ─────────── FEATURED PROJECT BANNER ─────────── */
.v2-featured {
  position: relative;
  border-radius: var(--v2-r-xl);
  overflow: hidden;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--v2-grad-dark);
  color: #fff;
}
.v2-featured__media { position: relative; overflow: hidden; }
.v2-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v2-featured__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(11,31,34,0.85) 100%);
}
.v2-featured__content { padding: 56px 52px; display: flex; flex-direction: column; justify-content: center; }
.v2-featured__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(79,229,235,0.22);
  border: 1px solid rgba(79,229,235,0.42);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-moss);
  width: fit-content;
  margin-bottom: 20px;
}
.v2-featured__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: #fff;
  max-width: 480px;
}
.v2-featured__desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.80);
  margin-bottom: 28px;
  max-width: 480px;
}
.v2-featured__meta {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.v2-featured__meta-item {
  display: flex;
  flex-direction: column;
}
.v2-featured__meta-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.v2-featured__meta-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}

/* ─────────── PROJECT DETAIL: overview + sidebar ─────────── */
.v2-detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.v2-detail__lede {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--v2-charcoal);
  padding-bottom: 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--v2-line);
}
.v2-detail__content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--v2-slate);
  margin-bottom: 18px;
}
.v2-detail__sidebar {
  position: sticky;
  top: 100px;
  border-radius: var(--v2-r-lg);
  overflow: hidden;
  border: 1px solid var(--v2-line);
  background: var(--v2-white);
  box-shadow: var(--v2-shadow-sm);
}
.v2-detail__sidebar-head {
  padding: 24px 28px;
  background: var(--v2-grad-dark);
  color: #fff;
}
.v2-detail__sidebar-head-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-moss);
  margin-bottom: 6px;
}
.v2-detail__sidebar-head-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
}
.v2-detail__sidebar-list { padding: 8px 28px 24px; }
.v2-detail__sidebar-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--v2-line);
}
.v2-detail__sidebar-row:last-child { border-bottom: none; }
.v2-detail__sidebar-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-mute);
  margin-bottom: 6px;
  display: block;
}
.v2-detail__sidebar-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--v2-charcoal);
  line-height: 1.4;
}
.v2-detail__sidebar-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--v2-soft);
  font-size: 12px;
  font-weight: 600;
  color: var(--v2-primary);
  letter-spacing: 0.04em;
}
.v2-detail__sidebar-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v2-primary);
  box-shadow: 0 0 0 3px rgba(30,213,220,0.22);
}
.v2-detail__sidebar-cta { padding: 0 28px 28px; }
.v2-detail__sidebar-cta .btn { width: 100%; }

/* ─────────── SCOPE OF WORK: numbered timeline ─────────── */
.v2-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.v2-scope-item {
  display: flex;
  gap: 20px;
  padding: 24px 26px;
  border-radius: var(--v2-r-md);
  background: var(--v2-white);
  border: 1px solid var(--v2-line);
  transition: all 0.3s ease;
}
.v2-scope-item:hover { border-color: var(--v2-primary); background: var(--v2-light); }
.v2-scope-item__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--v2-soft);
  color: var(--v2-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.v2-scope-item__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--v2-charcoal);
  margin-bottom: 6px;
}
.v2-scope-item__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--v2-mute);
}

/* ─────────── HIGHLIGHT CARDS: icon cards ─────────── */
.v2-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.v2-highlight {
  padding: 32px 30px;
  border-radius: var(--v2-r-md);
  background: var(--v2-white);
  border: 1px solid var(--v2-line);
  transition: all 0.3s ease;
}
.v2-highlight:hover {
  border-color: var(--v2-primary);
  transform: translateY(-4px);
  box-shadow: var(--v2-shadow-md);
}
.v2-highlight__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--v2-grad-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.v2-highlight__icon svg { width: 26px; height: 26px; }
.v2-highlight__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--v2-charcoal);
}
.v2-highlight__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--v2-mute);
}

/* ─────────── TECHNICAL CAPABILITIES: chips ─────────── */
.v2-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.v2-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--v2-white);
  border: 1px solid var(--v2-line);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--v2-charcoal);
  transition: all 0.3s ease;
}
.v2-chip:hover { border-color: var(--v2-primary); color: var(--v2-primary); background: var(--v2-light); }
.v2-chip svg { width: 14px; height: 14px; color: var(--v2-primary); }
.v2-chip--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.v2-chip--dark svg { color: var(--v2-moss); }

/* ─────────── PROJECT GALLERY ─────────── */
.v2-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.v2-gallery__item {
  position: relative;
  border-radius: var(--v2-r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: zoom-in;
}
.v2-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.v2-gallery__item:hover img { transform: scale(1.05); }
.v2-gallery__item--tall { aspect-ratio: 4/5; grid-row: span 2; }
.v2-gallery__item--wide { aspect-ratio: 16/9; grid-column: span 2; }

/* ─────────── PARTNERS BAR ─────────── */
.v2-partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  border-radius: var(--v2-r-lg);
  overflow: hidden;
  background: var(--v2-white);
  border: 1px solid var(--v2-line);
}
.v2-partner {
  padding: 36px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--v2-line);
  transition: background 0.3s ease;
}
.v2-partner:last-child { border-right: none; }
.v2-partner:hover { background: var(--v2-light); }
.v2-partner img {
  max-height: 48px;
  max-width: 140px;
  filter: grayscale(100%) brightness(0.6);
  opacity: 0.85;
  transition: all 0.3s ease;
}
.v2-partner:hover img { filter: grayscale(0%) brightness(1); opacity: 1; }

/* ─────────── RELATED PROJECTS strip ─────────── */
.v2-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.v2-related__card {
  position: relative;
  display: block;
  border-radius: var(--v2-r-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  aspect-ratio: 4/3;
  background: var(--v2-charcoal);
  transition: transform 0.3s ease;
}
.v2-related__card:hover { transform: translateY(-4px); }
.v2-related__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.v2-related__card:hover img { transform: scale(1.05); }
.v2-related__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,31,34,0.92) 100%);
}
.v2-related__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 22px 20px;
  z-index: 2;
  color: #fff;
}
.v2-related__cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-moss);
  margin-bottom: 6px;
}
.v2-related__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
}

/* ─────────── CTA BANNER ─────────── */
.v2-cta {
  position: relative;
  border-radius: var(--v2-r-xl);
  overflow: hidden;
  background: var(--v2-grad-dark);
  padding: 72px 64px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.v2-cta::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,229,235,0.32) 0%, transparent 60%);
  pointer-events: none;
}
.v2-cta::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20,183,189,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.v2-cta > * { position: relative; z-index: 2; }
.v2-cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 16px 0;
  text-align: left;
}
.v2-cta__sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.80);
  max-width: 540px;
  margin: 0;
  text-align: left;
}
.v2-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}
.v2-cta__actions .btn--primary {
  background: #fff !important;
  color: var(--v2-primary) !important;
  border-radius: 8px;
}
.v2-cta__actions .btn--primary:hover {
  background: var(--v2-light) !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}
.v2-cta__actions .btn--ghost {
  background: transparent !important;
  border-color: rgba(255,255,255,0.30) !important;
  color: #fff !important;
}
.v2-cta__actions .btn--ghost:hover {
  background: rgba(255,255,255,0.10) !important;
  border-color: rgba(255,255,255,0.6) !important;
}

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 1100px) {
  .v2-section { padding: 90px 0; }
  .v2-svc-grid { grid-template-columns: 1fr; }
  .v2-svc-list { grid-template-columns: repeat(2, 1fr); }
  .v2-split { grid-template-columns: 1fr; gap: 48px; }
  .v2-split--reverse .v2-split__media { order: 0; }
  .v2-process { grid-template-columns: repeat(2, 1fr); }
  .v2-process::before { display: none; }
  .v2-sector-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-proj-grid,
  .v2-proj-grid--featured { grid-template-columns: repeat(2, 1fr); }
  .v2-proj-grid--featured .v2-proj-card:first-child { grid-row: auto; }
  .v2-featured { grid-template-columns: 1fr; }
  .v2-featured__media { min-height: 280px; }
  .v2-detail-layout { grid-template-columns: 1fr; gap: 40px; }
  .v2-detail__sidebar { position: relative; top: 0; }
  .v2-highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-scope-grid { grid-template-columns: 1fr; }
  .v2-gallery { grid-template-columns: repeat(2, 1fr); }
  .v2-cta { grid-template-columns: 1fr; padding: 56px 40px; }
  .v2-cta__actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .v2-stats { grid-template-columns: repeat(2, 1fr); }
  .v2-stat { border-right: none; border-bottom: 1px solid var(--v2-line); }
  .v2-partners { grid-template-columns: repeat(2, 1fr); }
  .v2-partner { border-right: none; border-bottom: 1px solid var(--v2-line); }
}
@media (max-width: 680px) {
  .v2-section { padding: 70px 0; }
  body.v2-theme .page-hero { padding-top: 140px; padding-bottom: 80px; min-height: 60vh; }
  .v2-section-head--row { flex-direction: column; align-items: flex-start; }
  .v2-svc-card { min-height: 380px; }
  .v2-svc-list { grid-template-columns: 1fr; }
  .v2-process { grid-template-columns: 1fr; }
  .v2-sector-grid { grid-template-columns: 1fr 1fr; }
  .v2-proj-grid,
  .v2-proj-grid--featured { grid-template-columns: 1fr; }
  .v2-featured__content { padding: 40px 28px; }
  .v2-highlight-grid { grid-template-columns: 1fr; }
  .v2-gallery { grid-template-columns: 1fr; }
  .v2-gallery__item--wide { grid-column: auto; }
  .v2-gallery__item--tall { grid-row: auto; aspect-ratio: 4/3; }
  .v2-related { grid-template-columns: 1fr; }
  .v2-stats { grid-template-columns: 1fr; }
  .v2-partners { grid-template-columns: 1fr; }
  .v2-cta { padding: 44px 26px; }
}

