/* ============================================================
   U Need Solutions — Global Design System
   Premium, breathable, industrial corporate aesthetic
   ============================================================ */

:root {
  /* Brand Colors */
  --navy: #0A2742;
  --blue: #0B5F9E;
  --blue-dark: #094d80;
  --green: #79B82A;
  --white: #FFFFFF;
  --bg-soft: #F6F8FA;
  --bg-light: #EEF3F7;
  --heading: #17232E;
  --body: #4B5966;
  --muted: #72808D;
  --border: #E2E8EE;

  /* Spacing — generous for premium feel */
  --section-xl: clamp(56px, 8vw, 104px);
  --section-lg: clamp(48px, 6vw, 80px);
  --section-md: clamp(40px, 5vw, 64px);
  --section-sm: clamp(32px, 4vw, 48px);
  --gap-cards: clamp(20px, 2.5vw, 28px);
  --gap-content: clamp(24px, 3vw, 40px);

  /* Layout */
  --container: 1240px;
  --container-padding: clamp(16px, 4vw, 32px);
  --header-height: 88px;
  --header-sticky-height: 74px;
  --utility-height: 34px;
  --scroll-offset: 110px;
  --hero-home-height: min(800px, calc(100vh - var(--utility-height) - var(--header-height) - 20px));
  --hero-split-height: min(480px, 52vh);
  --hero-inner-height: min(400px, 44vh);

  /* Radius & Shadow */
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 3px 12px rgba(10, 39, 66, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 39, 66, 0.10);
  --shadow-lg: 0 16px 40px rgba(10, 39, 66, 0.12);

  /* Typography */
  --font: "Manrope", "Inter", Arial, sans-serif;
  --line-body: 1.7;
  --line-heading: 1.25;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

[id] { scroll-margin-top: var(--scroll-offset); }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: var(--line-body);
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s, opacity 0.2s; }
a:hover { color: var(--blue-dark); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  line-height: var(--line-heading);
  font-weight: 700;
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p { max-width: 65ch; }
p + p { margin-top: 1em; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-sm);
}
.skip-link:focus { top: 16px; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn svg { transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--blue);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn--secondary {
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
}
.btn--secondary:hover {
  background: var(--blue);
  color: var(--white);
}

.btn--secondary-dark {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
}
.btn--secondary-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn--green {
  background: var(--green);
  color: var(--white);
}
.btn--green:hover {
  background: #6aa324;
  color: var(--white);
}

.btn--sm {
  height: 42px;
  padding: 0 18px;
  font-size: 13px;
}

/* Section utilities */
.section { padding-block: var(--section-lg); }
.section--xl { padding-block: var(--section-xl); }
.section--md { padding-block: var(--section-md); }
.section--sm { padding-block: var(--section-sm); }
.section--soft { background: var(--bg-soft); }
.section--light { background: var(--bg-light); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255, 255, 255, 0.85); }

.section-heading {
  text-align: center;
  margin-bottom: var(--gap-content);
}
.section-heading p {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 60ch;
}

.text-green { color: var(--green); }

/* ============================================================
   UTILITY BAR
   ============================================================ */
.utility-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  height: var(--utility-height);
  display: flex;
  align-items: center;
}

.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}

.utility-bar__tagline {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.utility-bar__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.utility-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}
.utility-bar__link:hover { color: var(--white); }

.utility-bar__quote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.utility-bar__quote:hover { color: #8fd033; }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s, height 0.3s;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
  transition: height 0.3s;
}

.site-header.is-scrolled .site-header__inner {
  height: var(--header-sticky-height);
}

.site-header__logo img {
  width: clamp(160px, 18vw, 240px);
  height: auto;
  object-fit: contain;
}

/* Mobile toggle */
.site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.site-header__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(2) {
  opacity: 0;
}
.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav__item { position: relative; }

.main-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--heading);
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.main-nav__link:hover,
.main-nav__link.is-active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.main-nav__chevron { opacity: 0.6; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 100;
}

.main-nav__item:hover > .dropdown,
.main-nav__item:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown__list li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  transition: background 0.15s, color 0.15s;
}
.dropdown__list li a:hover {
  background: var(--bg-soft);
  color: var(--blue);
}

.dropdown--mega { min-width: 300px; }

/* Nested sub-menus (multilevel) */
.dropdown__item { position: relative; }

.dropdown__item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dropdown__sub-chevron {
  flex-shrink: 0;
  opacity: 0.5;
}

.dropdown__submenu {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 240px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 110;
}

.dropdown__item.has-submenu:hover > .dropdown__submenu,
.dropdown__item.has-submenu:focus-within > .dropdown__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.dropdown__submenu .dropdown__item.has-submenu > .dropdown__submenu {
  left: 100%;
  top: 0;
}

.dropdown__submenu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
}

.dropdown__submenu li a:hover {
  background: var(--bg-soft);
  color: var(--blue);
}

.site-header__cta { margin-left: 16px; flex-shrink: 0; }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding-top: var(--section-xl);
  box-shadow: 0 -12px 28px rgba(10, 39, 66, 0.08);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: var(--gap-content);
  padding-bottom: var(--section-lg);
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}

.site-footer__logo-patch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 30px;
  padding: 14px 20px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.site-footer__logo-patch img {
  width: clamp(180px, 16vw, 220px);
  height: auto;
  display: block;
  object-fit: contain;
}

.site-footer__summary {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  max-width: 32ch;
}

.site-footer__social {
  display: flex;
  gap: 12px;
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: background 0.2s;
}
.site-footer__social a:hover {
  background: var(--blue);
  color: var(--white);
}

.site-footer__heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.site-footer__links li { margin-bottom: 12px; }

.site-footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s, padding-left 0.2s;
}
.site-footer__links a::before {
  content: "›";
  color: var(--green);
  font-weight: 700;
}
.site-footer__links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.site-footer__cta-card {
  border: 1px solid var(--green);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  align-self: start;
}

.site-footer__cta-heading {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.site-footer__cta-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  line-height: 1.6;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 20px;
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
}

.site-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer__bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}
.site-footer__bottom-links a:hover { color: var(--white); }

/* ============================================================
   HERO — unified mockup style (home, split, inner)
   Left content with margin | image pushed right
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero--home {
  min-height: var(--hero-home-height);
  max-height: 800px;
}

.hero--home.hero--slider .hero-slider {
  min-height: var(--hero-home-height);
  max-height: 800px;
}

.hero--split {
  min-height: var(--hero-split-height);
  max-height: 520px;
}

.hero--inner {
  min-height: var(--hero-inner-height);
  max-height: 440px;
}

/* Container alignment — match header logo gutter */
.hero .container {
  width: min(var(--container), 100%);
  padding-inline: clamp(24px, 5vw, 56px);
}

/* --- Background & overlay --- */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  /* Keep uploaded photo sharp — no soft filters / artificial downscale blur */
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero--home .hero__bg img {
  object-position: 82% 35%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Navy left for text; lighter on the right so the photo stays clear */
  background: linear-gradient(
    90deg,
    rgba(10, 39, 66, 0.96) 0%,
    rgba(10, 39, 66, 0.9) 26%,
    rgba(10, 39, 66, 0.7) 40%,
    rgba(10, 39, 66, 0.28) 56%,
    rgba(10, 39, 66, 0.06) 72%,
    rgba(10, 39, 66, 0) 86%
  );
}

.hero--split .hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(10, 39, 66, 0.95) 0%,
    rgba(10, 39, 66, 0.82) 36%,
    rgba(10, 39, 66, 0.35) 58%,
    rgba(10, 39, 66, 0.06) 78%,
    rgba(10, 39, 66, 0) 92%
  );
}

.hero--inner .hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(10, 39, 66, 0.96) 0%,
    rgba(10, 39, 66, 0.86) 30%,
    rgba(10, 39, 66, 0.45) 50%,
    rgba(10, 39, 66, 0.1) 68%,
    rgba(10, 39, 66, 0) 85%
  );
}

/* --- Layout: 2-column grid — content left, image breathes right --- */
.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  width: 100%;
  padding-block: clamp(36px, 4.5vw, 56px);
}

.hero--home .hero__layout {
  min-height: var(--hero-home-height);
  max-height: 800px;
  align-items: center;
  padding-block: clamp(32px, 4vw, 48px);
  padding-bottom: 84px;
}

.hero--inner .hero__layout {
  min-height: var(--hero-inner-height);
  max-height: 440px;
  align-items: center;
  padding-block: clamp(28px, 3.5vw, 44px);
}

.hero--split .hero__layout {
  min-height: var(--hero-split-height);
  max-height: 520px;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  padding-block: clamp(32px, 4vw, 48px);
}

/* --- Content block — left column only --- */
.hero__content {
  grid-column: 1;
  max-width: 600px;
  color: var(--white);
  padding-right: clamp(16px, 3vw, 32px);
}

.hero--split .hero__content {
  max-width: 520px;
}

.hero__content h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.1vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

.hero--home .hero__content h1 {
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  max-width: 16ch;
}

.hero--inner .hero__content h1 {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  max-width: 16ch;
}

.hero--about .hero__content h1 {
  max-width: 24ch;
}

.hero--about .hero__lead {
  max-width: 52ch;
}

.hero--about .hero__bg img {
  object-position: 82% center;
}

.hero--with-metrics .hero__layout {
  padding-bottom: 84px;
}

.hero--projects .hero__content h1 {
  max-width: 20ch;
}

.hero--projects .hero__lead {
  max-width: 54ch;
}

.hero--projects .hero__bg img {
  object-position: 80% center;
}

.hero--contact .hero__content h1 {
  max-width: 18ch;
}

.hero--contact .hero__lead {
  max-width: 50ch;
}

.hero--contact .hero__bg img {
  object-position: 78% center;
}

.hero--legal .hero__content h1 {
  max-width: 22ch;
}

.hero--legal .hero__lead {
  max-width: 50ch;
}

.hero--legal .hero__bg img {
  object-position: 70% center;
}

.hero__content .text-green { color: var(--green); }

.hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.hero__accent-line {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--green);
  margin: 12px 0 16px;
  border-radius: 2px;
}

.hero__lead,
.hero__content p.hero__lead {
  font-size: clamp(14px, 1.35vw, 16px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 46ch;
}

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

.hero__actions .btn {
  height: 42px;
  padding: 0 20px;
  font-size: 12px;
}

/* --- Home: metrics bar inside hero --- */
.hero__metrics {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(10, 39, 66, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  padding-block: 14px;
}

.hero__metrics .container {
  padding-inline: clamp(24px, 5vw, 56px);
}

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

.hero-metric {
  text-align: center;
  color: var(--white);
  padding: 2px 6px;
}

.hero-metric__icon {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
  display: flex;
  justify-content: center;
}

.hero-metric__icon svg {
  width: 20px;
  height: 20px;
}

.hero-metric__value {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2px;
}

.hero-metric__label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

/* Home service banner slider */
.hero--slider .hero-slider {
  position: relative;
  flex: 1;
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s ease, visibility 0.85s ease;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide__bg,
.hero-slide__overlay {
  position: absolute;
  inset: 0;
}

.hero-slide__bg { z-index: 0; }

.hero-slide__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  transform: scale(1);
}

.hero--home .hero-slide__bg img {
  object-position: 82% 35%;
}

.hero-slide.is-active .hero-slide__bg img {
  animation: heroKenBurns 8s ease-out forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-slide__overlay {
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(10, 39, 66, 0.96) 0%,
    rgba(10, 39, 66, 0.9) 26%,
    rgba(10, 39, 66, 0.7) 40%,
    rgba(10, 39, 66, 0.28) 56%,
    rgba(10, 39, 66, 0.06) 72%,
    rgba(10, 39, 66, 0) 86%
  );
}

.hero-slide .hero__layout {
  position: relative;
  z-index: 2;
}

.hero-slide.is-active .hero__content {
  animation: heroContentIn 0.7s ease both;
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider__nav {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 5vw, 56px);
  bottom: 108px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-slider__btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(10, 39, 66, 0.45);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.hero-slider__btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.hero-slider__dots {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0 6px;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.25s, background 0.25s, border-radius 0.25s;
}

.hero-slider__dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--green);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-slide.is-active .hero-slide__bg img,
  .hero-slide.is-active .hero__content { animation: none; }
}
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.35;
}

/* --- About: split feature grid — right column --- */
.hero-features--split {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  max-width: 480px;
  justify-self: end;
  align-self: center;
}

.hero-features--split .hero-feature {
  background: transparent;
  border: none;
  padding: 0;
  backdrop-filter: none;
}

.hero-features--split .hero-feature__icon {
  color: var(--white);
  margin-bottom: 10px;
  opacity: 0.9;
}

.hero-features--split .hero-feature h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.hero-features--split .hero-feature p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  max-width: none;
}

/* --- Breadcrumbs (inner pages) --- */
.hero .breadcrumbs { margin-bottom: 10px; }

.breadcrumbs { margin-bottom: 14px; }

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  color: var(--green);
}

.breadcrumbs__item:not(:last-child)::after {
  content: "›";
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

.breadcrumbs__item a {
  color: var(--green);
  transition: color 0.2s;
}

.breadcrumbs__item a:hover { color: #9fd44a; }

.breadcrumbs__item span {
  color: rgba(255, 255, 255, 0.55);
}

/* Metrics strip */
.metrics-strip {
  background: rgba(10, 39, 66, 0.92);
  padding-block: 28px;
}

.metrics-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-cards);
}

.metric-card {
  text-align: center;
  color: var(--white);
  padding: 8px;
}

.metric-card__icon {
  color: var(--green);
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}

.metric-card__value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.metric-card__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Service cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-cards);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s;
}
.service-card:hover .service-card__image img {
  transform: scale(1.02);
}

.service-card__body {
  padding: 28px 24px 0;
  flex: 1;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
}

.service-card__body h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card__body p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 0;
}

.service-card__footer {
  padding: 20px 24px 24px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
}
.service-card__link svg { transition: transform 0.2s; }
.service-card__link:hover svg { transform: translateX(3px); }

/* CTA Banner — inset card so it does not merge with the navy footer */
.cta-banner {
  position: relative;
  background: var(--bg-soft);
  padding-block: var(--section-md);
}

.cta-banner__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cta-banner__frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
  z-index: 3;
}

.cta-banner__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  padding-block: clamp(48px, 6vw, 76px);
}

.cta-banner__inner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner__inner p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 28px;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: #12324f;
  z-index: 0;
}

.service-card__icon--green { color: var(--green); }
.service-card__icon--navy { color: var(--navy); }

/* Split Section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-content);
  align-items: center;
}

.split-section--reverse .split-section__content { order: -1; }

.split-section__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.split-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  max-height: 560px;
}

.split-section__content h2 {
  margin-bottom: 20px;
}

.split-section__content > p {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 17px;
}

/* Benefit Grid */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefit-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.benefit-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: none;
}

/* Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-cards);
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.industry-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.industry-card__image {
  width: 100%;
  max-width: 186px;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.industry-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
}

/* Process Timeline */
.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding-top: 16px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 110px;
  position: relative;
}

.process-step__number {
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.process-step__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 12px;
}

.process-step__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
}

.process-step__connector {
  width: 40px;
  height: 2px;
  background: var(--green);
  margin-top: 52px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* Section heading row */
.section-heading--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.section-heading--row p { margin: 12px 0 0; }

/* Project Cards */
.project-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-cards);
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.project-card__image {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s;
}

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

.project-card__body { padding: 24px; }

.project-card__body h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.project-card__location {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-card__tags span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--bg-light);
  color: var(--blue);
}

/* Home completed-projects glimpse — text directory, no images */
.project-glimpse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.project-glimpse__col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: auto;
}

.project-glimpse__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 14px;
}

.project-glimpse__table thead th {
  background: #0A3B76;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  padding: 12px 16px;
  white-space: nowrap;
}

.project-glimpse__table thead th:last-child {
  text-align: right;
}

.project-glimpse__table tbody td {
  padding: 13px 16px;
  color: var(--body);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.project-glimpse__table tbody tr:last-child td {
  border-bottom: none;
}

.project-glimpse__table tbody tr:nth-child(even) {
  background: var(--bg-soft);
}

.project-glimpse__table tbody tr:hover {
  background: var(--bg-light);
}

.project-glimpse__table tbody td:first-child {
  font-weight: 700;
  color: var(--heading);
  width: 48%;
}

.project-glimpse__table tbody td:nth-child(2) {
  color: var(--muted);
  width: 30%;
}

.project-glimpse__table tbody td:last-child {
  width: 22%;
  text-align: right;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--blue);
  white-space: nowrap;
}

.project-glimpse__note {
  font-size: 13px;
  color: var(--muted);
  margin: 18px 0 0;
}

.project-glimpse__cta {
  display: none;
  margin-top: 24px;
}

/* Integration Section */
.integration-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-content);
  align-items: center;
}

.integration-section__content h2 { margin-bottom: 20px; }

.integration-section__content > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  font-size: 17px;
}

.integration-list {
  margin-bottom: 32px;
}

.integration-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.integration-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.integration-visual {
  display: flex;
  align-items: center;
  gap: 16px;
}

.integration-visual__item {
  flex: 1;
  text-align: center;
}

.integration-visual__item img {
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 12px;
}

.integration-visual__item span {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.integration-visual__plus {
  font-size: 28px;
  font-weight: 300;
  color: var(--green);
  flex-shrink: 0;
}

/* Check List */
.check-list { margin-bottom: 32px; }

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--body);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Visibility Dashboard */
.visibility-dashboard {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.visibility-dashboard__charts {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 28px;
}

.progress-ring {
  position: relative;
  text-align: center;
}

.progress-ring__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.progress-ring__label strong {
  font-size: 22px;
  color: var(--heading);
  line-height: 1.2;
}

.progress-ring__label span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.visibility-dashboard__schedule {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border-left: 3px solid var(--blue);
}

.visibility-dashboard__schedule h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.visibility-dashboard__schedule p {
  font-size: 14px;
  color: var(--muted);
  max-width: none;
}

/* Clients Strip */
.clients-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.clients-strip__item {
  flex: 0 0 auto;
}

.clients-strip__placeholder {
  width: 140px;
  height: 60px;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.clients-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
  font-style: italic;
}

/* ============================================================
   ABOUT PAGE (non-hero sections)
   ============================================================ */
.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--green);
  flex-shrink: 0;
}

.section-heading--left {
  text-align: left;
  margin-bottom: var(--gap-content);
}

.section-heading--left p:not(.section-label) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 60ch;
}

.split-section__content .section-label { justify-content: flex-start; }

.split-section__content h2 { margin-bottom: 24px; }

.split-section__content > p {
  margin-bottom: 16px;
  color: var(--body);
  font-size: 16px;
  max-width: 52ch;
}

.split-section__content .btn { margin-top: 16px; }

.split-section__media img {
  aspect-ratio: 4 / 3;
  max-height: 480px;
}

/* Strengths Grid */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-cards);
}

.strength-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.strength-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.strength-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}

.strength-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.strength-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: none;
}

/* Stats Bar */
.stats-bar {
  background: var(--navy);
  padding-block: var(--section-md);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

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

.stats-bar__item {
  text-align: center;
  padding: 12px 8px;
}

.stats-bar__value {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: #F5C518;
  line-height: 1.2;
  margin-bottom: 6px;
}

.stats-bar__label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* Journey Timeline */
.journey-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
  padding-top: 24px;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0.3;
  z-index: 0;
}

.journey-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.journey-step__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin: 0 auto 16px;
  box-shadow: var(--shadow-sm);
}

.journey-step--active .journey-step__icon {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.journey-step h3 {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--heading);
}

.journey-step--active h3 { color: var(--blue); }

.journey-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  max-width: none;
}

/* Capability Cards */
.capability-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-cards);
}

.capability-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  color: inherit;
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: inherit;
}

.capability-card__media {
  margin: -36px -28px 20px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.capability-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.capability-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}

.capability-card__icon--green { color: var(--green); }
.capability-card__icon--navy { color: var(--navy); }

.capability-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.capability-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: none;
}

.capability-card__link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
}

.capability-card:hover .capability-card__link { color: var(--blue-dark); }

/* CTA with image background */
.cta-banner--image .cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-banner--image .cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    118deg,
    rgba(10, 39, 66, 0.72) 0%,
    rgba(11, 95, 158, 0.62) 48%,
    rgba(10, 39, 66, 0.78) 100%
  );
}

/* Anchor scroll offset for sticky header */
[id] { scroll-margin-top: var(--scroll-offset); }

/* Anchor navigation */
.anchor-nav {
  position: sticky;
  top: var(--header-sticky-height);
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(10, 39, 66, 0.06);
}

.anchor-nav__inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-block: 14px;
  scrollbar-width: none;
}

.anchor-nav__inner::-webkit-scrollbar { display: none; }

.anchor-nav__link {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--body);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.anchor-nav__link:hover,
.anchor-nav__link:focus-visible {
  background: var(--bg-light);
  color: var(--blue);
}

.anchor-nav__label {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--heading);
  padding-right: 12px;
  margin-right: 4px;
  border-right: 1px solid var(--border);
}

/* PEB page — numbered section label */
.section-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-num::before {
  content: attr(data-num);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 8px;
  border-radius: 4px;
  background: rgba(121, 184, 42, 0.12);
  color: var(--green);
  font-size: 12px;
}

.section-heading .section-num {
  justify-content: center;
}

/* PEB benefits — 6 icon grid */
.peb-benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.peb-benefit-card {
  text-align: center;
  padding: 24px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.peb-benefit-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.peb-benefit-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.peb-benefit-card h3 {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.35;
}

.peb-benefit-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* Quality flow — horizontal connected steps */
.quality-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  position: relative;
  padding-top: 8px;
}

.quality-flow::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(121, 184, 42, 0.3));
  z-index: 0;
}

.quality-flow__step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 6px;
  max-width: 140px;
}

.quality-flow__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-flow__step h3 {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--heading);
}

/* Applications icon grid */
.app-icons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.app-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s;
}

.app-icon-card:hover { border-color: var(--blue); }

.app-icon-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-icon-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.4;
}

/* Why choose PEB — navy grid */
.why-peb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-peb-item {
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.why-peb-item__icon {
  color: var(--green);
  margin-bottom: 14px;
}

.why-peb-item h3 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}

.why-peb-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.6;
}

/* FAQ two-column */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  max-width: 100%;
}

.faq-grid .faq-accordion { max-width: none; }

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

.pmc-service-card__body p {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 0;
  line-height: 1.55;
}

.pmc-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.pmc-intro-benefits {
  display: grid;
  gap: 16px;
}

.pmc-intro-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.pmc-intro-benefit__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pmc-intro-benefit h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

.pmc-intro-benefit p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.pmc-quote-stack {
  display: grid;
  gap: 20px;
}

.pmc-quote-stack__image img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.approach-image {
  margin-top: 32px;
  text-align: center;
}

.approach-image img {
  max-width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.benefits-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
}

.benefits-split__heading {
  margin-bottom: 24px;
}

.benefits-split__heading h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 8px;
}

.benefits-split__heading p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 8px;
}

.key-benefits-list {
  display: grid;
  gap: 14px;
}

.key-benefit-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.key-benefit-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.key-benefit-item h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.key-benefit-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.approach-step .process-step__number {
  margin-bottom: 8px;
  color: var(--green);
}

.pmc-intro-copy p + p {
  margin-top: 16px;
}

.integrated-actions {
  margin-top: 28px;
}

/* PMC value messaging */
.pmc-value-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-cards);
}

.pmc-value-pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.pmc-value-pillar__image {
  margin: calc(-1 * clamp(24px, 3vw, 32px)) calc(-1 * clamp(24px, 3vw, 32px)) 20px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.pmc-value-pillar__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pmc-value-pillar__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.pmc-value-pillar h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: 12px;
  line-height: 1.35;
}

.pmc-value-pillar > p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 16px;
}

.pmc-value-pillar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pmc-value-pillar li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 8px;
}

.pmc-value-pillar li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.client-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.client-outcome {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--blue);
}

.client-outcome__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.client-outcome h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.client-outcome p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.differentiator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.differentiator-card {
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
}

.differentiator-card__vs {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.differentiator-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--heading);
}

.differentiator-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.pmc-service-card__benefit {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.5;
}

/* Civil page layouts */
.peb-benefits-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.intro-features {
  margin-top: 28px;
}

.civil-service-card__body p {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 0;
  line-height: 1.55;
}

.rcc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.rcc-layout__image img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.rcc-components {
  display: grid;
  gap: 12px;
}

.rcc-component-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
}

.rcc-component-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-panel {
  background: rgba(121, 184, 42, 0.08);
  border: 1px solid rgba(121, 184, 42, 0.25);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}

.info-panel h3 {
  font-size: 16px;
  margin-bottom: 14px;
  color: var(--heading);
}

.info-panel .check-list {
  margin-bottom: 0;
}

.flooring-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.flooring-layout__image img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.ideal-for-list {
  display: grid;
  gap: 10px;
}

.ideal-for-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
}

.ideal-for-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-dev-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.site-dev-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.site-dev-icon-card {
  text-align: center;
  padding: 18px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.site-dev-icon-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-dev-icon-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.35;
}

.site-dev-layout__image {
  width: min(320px, 100%);
}

.site-dev-layout__image img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

/* PEB component grid */
.component-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.component-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.component-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.component-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-light);
}

.component-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.component-card h3 {
  font-size: 12px;
  font-weight: 700;
  padding: 10px 12px 12px;
  text-align: center;
  line-height: 1.35;
}

/* Quality / process strip */
.quality-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.quality-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.quality-step__num {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-step h3 {
  font-size: 14px;
  margin-bottom: 6px;
}

.quality-step p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Applications grid */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.application-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
}

.application-item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Visual sequence (Civil foundations) */
.visual-sequence {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.visual-sequence__item {
  text-align: center;
}

.visual-sequence__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 10px;
}

.visual-sequence__item span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--heading);
}

.visual-sequence__operator {
  font-size: 24px;
  font-weight: 300;
  color: var(--blue);
  text-align: center;
}

/* PMC service cards */
.pmc-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-cards);
}

.pmc-service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.pmc-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pmc-service-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.pmc-service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.pmc-service-card:hover .pmc-service-card__image img {
  transform: scale(1.02);
}

.pmc-service-card__body {
  padding: 18px 16px 20px;
}

.pmc-service-card__body h3 {
  font-size: 15px;
  line-height: 1.4;
}

/* Quote panel */
.quote-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
}

.quote-panel p {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--white);
  margin: 0;
}

/* Approach steps (PMC) */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.approach-step__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.approach-step__image {
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  max-width: 220px;
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.approach-step__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pmc-benefits-grid .pmc-benefit-card {
  text-align: left;
  padding: 0;
  overflow: hidden;
}

.pmc-benefit-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.pmc-benefit-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pmc-benefit-card h3,
.pmc-benefit-card p {
  padding-inline: 16px;
}

.pmc-benefit-card h3 {
  padding-top: 16px;
}

.pmc-benefit-card p {
  padding-bottom: 20px;
}

.pmc-process-visuals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.pmc-process-visual {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.pmc-process-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.pmc-process-visual figcaption {
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--heading);
  text-align: center;
}

.faq-section--image {
  position: relative;
  background: var(--bg-soft);
}

.faq-section--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--faq-bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.faq-section--image > .container {
  position: relative;
  z-index: 1;
}

.approach-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.approach-step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* FAQ accordion */
.faq-accordion {
  max-width: 860px;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  padding: 18px 48px 18px 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--blue);
}

.faq-item[open] .faq-item__question::after {
  content: "−";
}

.faq-item__answer {
  padding: 0 20px 18px;
}

.faq-item__answer p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

/* Contact page */
.contact-quick {
  padding-bottom: var(--section-md);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-cards);
  margin-bottom: 0;
}

.contact-cards--enhanced {
  gap: clamp(16px, 2.5vw, 24px);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.contact-card--enhanced {
  position: relative;
  text-align: left;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-card--enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
}

.contact-card--phone::before { background: var(--blue); }
.contact-card--email::before { background: var(--green); }
.contact-card--visit::before { background: #0A3B76; }
.contact-card--whatsapp::before { background: #25D366; }

.contact-card--enhanced:hover {
  border-color: rgba(11, 95, 158, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contact-card__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.contact-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card--enhanced .contact-card__icon {
  margin: 0 0 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(10, 39, 66, 0.18);
}

.contact-card--whatsapp.contact-card--enhanced .contact-card__icon {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.contact-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.contact-card--enhanced h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.contact-card p,
.contact-card a {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 6px;
}

.contact-card--enhanced p {
  line-height: 1.55;
}

.contact-card--enhanced p:last-of-type {
  margin-bottom: 16px;
}

.contact-card a:hover { color: var(--blue); }

.contact-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 13px !important;
  font-weight: 700;
  color: var(--blue) !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-card__action:hover {
  color: var(--navy) !important;
  gap: 10px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 48px);
  align-items: start;
}

.contact-layout--enhanced {
  align-items: stretch;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-sm);
}

.contact-form__header {
  margin-bottom: 24px;
}

.contact-form__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(11, 95, 158, 0.08);
  border: 1px solid rgba(11, 95, 158, 0.15);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 12px;
}

.contact-form h2,
.contact-form__header h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 8px;
}

.contact-form > p,
.contact-form__header > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0;
}

.contact-form form {
  margin-top: 24px;
}

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

.contact-info-panel,
.contact-services-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}

.contact-info-panel h3,
.contact-services-panel h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.contact-info-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-info-list__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-list strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-info-list a,
.contact-info-list span {
  display: block;
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}

.contact-info-list a:hover {
  color: var(--blue);
}

.contact-services-links {
  display: grid;
  gap: 10px;
}

.contact-services-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.contact-services-links a:hover {
  background: var(--white);
  border-color: var(--blue);
  color: var(--blue);
}

.contact-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-cards);
}

.contact-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.contact-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-step h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.contact-step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.contact-trust {
  background: linear-gradient(135deg, var(--navy) 0%, #0A3B76 100%);
  padding-block: var(--section-md);
}

.contact-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 40px);
}

.contact-trust__item {
  text-align: center;
  color: var(--white);
}

.contact-trust__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-trust__item h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-trust__item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.6;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

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

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--heading);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 95, 158, 0.12);
}

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

.form-alert {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
}

.form-alert--success {
  background: #edf7e4;
  color: #3d6b14;
  border: 1px solid #c5e3a3;
}

.form-alert--error {
  background: #fdecec;
  color: #9b2c2c;
  border: 1px solid #f5c2c2;
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-light);
  box-shadow: var(--shadow-sm);
}

.contact-map--embed {
  flex: 0 0 auto;
}

.contact-map__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 280px;
}

.contact-map__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.contact-map__overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(10, 39, 66, 0.92);
  border-radius: var(--radius-sm);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.contact-map__pin {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map__overlay strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-map__overlay p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

.confidence-strip {
  background: var(--bg-soft);
  padding-block: var(--section-sm);
  text-align: center;
}

.confidence-strip p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

/* Legal pages */
.legal-page {
  padding-block: var(--section-lg);
}

.legal-prose {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-sm);
}

.legal-prose__updated {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.legal-prose__intro {
  font-size: 17px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 28px;
}

.legal-prose h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  margin: 32px 0 12px;
  color: var(--heading);
}

.legal-prose h2:first-of-type {
  margin-top: 0;
}

.legal-prose p,
.legal-prose li {
  font-size: 15px;
  color: var(--body);
  line-height: 1.75;
}

.legal-prose p {
  margin-bottom: 14px;
}

.legal-prose ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.legal-prose ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.legal-prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.legal-contact-card {
  margin-top: 16px;
  padding: 20px 22px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.legal-contact-card p {
  margin-bottom: 6px;
}

.legal-contact-card p:last-child {
  margin-bottom: 0;
}

/* Sitemap page */
.sitemap-page {
  padding-block: var(--section-lg);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-cards);
  margin-bottom: 32px;
}

.sitemap-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.sitemap-col__heading {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sitemap-col__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-col__links li {
  margin-bottom: 10px;
}

.sitemap-col__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  padding: 10px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.sitemap-col__links a:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--white);
}

.sitemap-col--contact .sitemap-contact-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.sitemap-contact-list li {
  margin-bottom: 14px;
}

.sitemap-contact-list__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.sitemap-contact-list a,
.sitemap-contact-list span {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}

.sitemap-note {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

/* Projects table */
.projects-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.projects-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.projects-table thead th {
  background: #0A3B76;
  color: var(--white);
  font-weight: 700;
  text-align: left;
  padding: 16px 20px;
  white-space: nowrap;
}

.projects-table tbody td {
  padding: 14px 20px;
  color: var(--body);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.projects-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.projects-table tbody tr:hover { background: var(--bg-light); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-light);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.gallery-item__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 12px 10px;
  background: linear-gradient(transparent, rgba(10, 39, 66, 0.78));
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}

.gallery-empty {
  text-align: center;
  color: var(--muted);
  padding: 48px 16px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox[hidden] { display: none; }

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 39, 66, 0.92);
}

.lightbox__figure {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  margin: 0;
}

.lightbox__figure img {
  max-width: 92vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox__figure figcaption {
  margin-top: 12px;
  color: var(--white);
  text-align: center;
  font-size: 14px;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lightbox__close:hover,
.lightbox__nav:hover,
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
  background: var(--blue);
  outline: none;
}

.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 16px; top: 50%; transform: translateY(-50%); }

.projects-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--muted);
}

.projects-section__title {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.projects-section__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.projects-cta {
  margin-top: var(--section-md);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-sm);
}

.projects-cta__content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.projects-cta__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects-cta__text h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  margin-bottom: 6px;
}

.projects-cta__text p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  max-width: 52ch;
}

.projects-table tbody td:first-child {
  width: 72px;
  white-space: nowrap;
  font-weight: 700;
  color: var(--heading);
}

.projects-table tbody td:nth-child(4) {
  white-space: nowrap;
  font-weight: 600;
}

/* Civil service cards */
.civil-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-cards);
}

.civil-service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s;
}

.civil-service-card:hover { transform: translateY(-3px); }

.civil-service-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.civil-service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.civil-service-card__body {
  padding: 16px;
}

.civil-service-card__body h3 {
  font-size: 15px;
}

/* Why choose list */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-choose-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-choose-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.why-choose-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Placeholder sections */
.placeholder-section {
  text-align: center;
  padding-block: var(--section-xl);
}

.placeholder-section p {
  margin: 16px auto 0;
  color: var(--muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .site-header__toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, 90vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--header-height) + 16px) 24px 32px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1000;
  }

  .main-nav.is-open { transform: translateX(0); }

  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    min-width: 0;
  }

  .main-nav__item,
  .dropdown__item {
    width: 100%;
    min-width: 0;
  }

  .main-nav__link {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    width: 100%;
    justify-content: space-between;
  }

  .dropdown,
  .main-nav__item:hover > .dropdown,
  .main-nav__item:focus-within > .dropdown {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0 0 8px 12px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    display: none;
  }

  .main-nav__item.is-open > .dropdown { display: block; }

  .dropdown__submenu,
  .dropdown__item.has-submenu:hover > .dropdown__submenu,
  .dropdown__item.has-submenu:focus-within > .dropdown__submenu {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0 0 4px 12px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    display: none;
  }

  .dropdown__item.is-open > .dropdown__submenu { display: block; }

  .dropdown__list li a,
  .dropdown__submenu li a {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    padding: 10px 8px 10px 0;
  }

  .dropdown__sub-chevron {
    transform: rotate(90deg);
  }

  .site-header__cta {
    margin: 24px 0 0;
    width: 100%;
    justify-content: center;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__cta-card { grid-column: 1 / -1; }

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

  .split-section,
  .split-section--reverse,
  .integration-section__inner {
    grid-template-columns: 1fr;
  }

  .split-section--reverse .split-section__content { order: 0; }

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

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

  .process-timeline { gap: 8px; }
  .process-step { width: 90px; }
  .process-step__connector { width: 20px; }

  .section-heading--row {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-cards { grid-template-columns: 1fr; }

  .project-glimpse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-glimpse__table {
    font-size: 13px;
  }

  .project-glimpse__table thead th,
  .project-glimpse__table tbody td {
    padding: 11px 12px;
  }

  .project-glimpse__cta {
    display: flex;
    justify-content: flex-start;
  }

  .faq-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }

  .integration-visual { flex-direction: column; }
  .integration-visual__plus { transform: rotate(90deg); }

  /* Hero — tablet: single column, keep left margin */
  .hero__layout,
  .hero--split .hero__layout {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
  }

  .hero__content {
    max-width: 580px;
    padding-right: 0;
  }

  .hero-features--split {
    grid-column: 1;
    max-width: 100%;
    justify-self: start;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__bg img {
    object-position: 70% center;
  }

  .hero--home .hero__bg img {
    object-position: 75% 30%;
  }

  .hero__overlay,
  .hero--inner .hero__overlay,
  .hero--split .hero__overlay {
    background: linear-gradient(
      105deg,
      rgba(10, 39, 66, 0.95) 0%,
      rgba(10, 39, 66, 0.85) 45%,
      rgba(10, 39, 66, 0.5) 70%,
      rgba(10, 39, 66, 0.2) 100%
    );
  }

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

  .hero--home {
    min-height: min(680px, calc(100vh - var(--utility-height) - var(--header-height)));
    max-height: none;
  }

  .hero--home .hero__layout,
  .hero--home.hero--slider .hero-slide .hero__layout {
    min-height: min(680px, calc(100vh - var(--utility-height) - var(--header-height)));
    max-height: none;
    padding-bottom: 92px;
  }

  .hero--home.hero--slider .hero-slider {
    min-height: min(680px, calc(100vh - var(--utility-height) - var(--header-height)));
    max-height: none;
  }

  .hero-slide__overlay {
    background: linear-gradient(
      105deg,
      rgba(10, 39, 66, 0.95) 0%,
      rgba(10, 39, 66, 0.85) 45%,
      rgba(10, 39, 66, 0.5) 70%,
      rgba(10, 39, 66, 0.2) 100%
    );
  }

  .hero-slider__nav { bottom: 120px; }

  .hero--split,
  .hero--split .hero__layout {
    min-height: auto;
    max-height: none;
  }

  .hero--inner,
  .hero--inner .hero__layout {
    min-height: auto;
    max-height: none;
  }

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

  .stats-bar__grid { grid-template-columns: repeat(3, 1fr); }
  .stats-bar__grid--verified { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .journey-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .journey-timeline::before { display: none; }

  .capability-cards { grid-template-columns: 1fr; }

  .component-grid { grid-template-columns: repeat(3, 1fr); }
  .peb-benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .app-icons-grid { grid-template-columns: repeat(3, 1fr); }
  .why-peb-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-flow { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .quality-flow::before { display: none; }
  .quality-flow__step { max-width: 160px; flex: 0 1 160px; }
  .peb-benefits-grid--3 { grid-template-columns: 1fr; }
  .rcc-layout,
  .flooring-layout,
  .site-dev-layout { grid-template-columns: 1fr; }
  .site-dev-icons { grid-template-columns: repeat(2, 1fr); }
  .pmc-intro-layout,
  .benefits-split,
  .pmc-value-pillars,
  .differentiator-grid { grid-template-columns: 1fr; }
  .client-outcomes { grid-template-columns: 1fr; }
  .quality-strip { grid-template-columns: repeat(2, 1fr); }
  .applications-grid { grid-template-columns: repeat(2, 1fr); }
  .pmc-services-grid { grid-template-columns: repeat(2, 1fr); }
  .civil-services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .pmc-process-visuals { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-layout,
  .contact-layout--enhanced { grid-template-columns: 1fr; }
  .contact-steps__grid { grid-template-columns: 1fr; }
  .contact-trust__grid { grid-template-columns: 1fr; }
  .visual-sequence {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .visual-sequence__operator { display: none; }

  .utility-bar__tagline { display: none; }
}

@media (max-width: 639px) {
  .utility-bar__actions { gap: 12px; }
  .utility-bar__link span { display: none; }

  .site-footer__grid { grid-template-columns: 1fr; }

  .site-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .hero .container {
    padding-inline: clamp(20px, 6vw, 28px);
  }

  .hero__layout {
    padding-block: clamp(32px, 6vw, 48px);
  }

  .hero--home .hero__layout {
    min-height: min(560px, 78vh);
    padding-bottom: 96px;
  }

  .hero--home.hero--slider .hero-slider,
  .hero--home.hero--slider .hero-slide .hero__layout {
    min-height: min(560px, 78vh);
  }

  .hero-slider__nav {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 140px;
  }

  .hero-slide__overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 39, 66, 0.94) 0%,
      rgba(10, 39, 66, 0.88) 55%,
      rgba(10, 39, 66, 0.55) 80%,
      rgba(10, 39, 66, 0.35) 100%
    );
  }

  .hero--inner .hero__layout {
    min-height: min(340px, 50vh);
  }

  .hero__content h1,
  .hero--home .hero__content h1,
  .hero--inner .hero__content h1 {
    max-width: none;
  }

  .hero__lead {
    max-width: none;
  }

  .hero-features--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__bg img {
    object-position: 65% center;
  }

  .hero__overlay,
  .hero--inner .hero__overlay,
  .hero--split .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 39, 66, 0.94) 0%,
      rgba(10, 39, 66, 0.88) 55%,
      rgba(10, 39, 66, 0.55) 80%,
      rgba(10, 39, 66, 0.35) 100%
    );
  }

  .hero-metrics__grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .component-grid { grid-template-columns: repeat(2, 1fr); }
  .peb-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .app-icons-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .why-peb-grid { grid-template-columns: 1fr; }
  .quality-strip { grid-template-columns: 1fr; }
  .applications-grid { grid-template-columns: 1fr; }
  .pmc-services-grid { grid-template-columns: 1fr; }
  .civil-services-grid { grid-template-columns: 1fr; }
  .why-choose-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr; }
  .pmc-process-visuals { grid-template-columns: 1fr; }
  .contact-cards,
  .contact-cards--enhanced { grid-template-columns: 1fr; }
  .contact-trust__grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .project-glimpse { grid-template-columns: 1fr; gap: 16px; }

  .project-glimpse__table thead {
    display: none;
  }

  .project-glimpse__table tbody tr {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
  }

  .project-glimpse__table tbody tr:nth-child(even) {
    background: var(--bg-soft);
  }

  .project-glimpse__table tbody tr:last-child {
    border-bottom: none;
  }

  .project-glimpse__table tbody td {
    padding: 0;
    border: none;
    width: auto;
  }

  .project-glimpse__table tbody td:first-child {
    grid-column: 1 / -1;
  }

  .project-glimpse__table tbody td:nth-child(2) {
    text-align: left;
  }

  .project-glimpse__table tbody td:last-child {
    text-align: right;
  }

  .project-glimpse__cta .btn { width: 100%; justify-content: center; }

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

  .projects-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .projects-cta .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }

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

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid--verified { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }

  .journey-timeline { grid-template-columns: 1fr; }
}
