/* ============================================================
   MAIN STYLESHEET — Binsalim Geoservices
   All values reference variables.css tokens. No hardcoded values.
   ============================================================ */

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

picture {
  display: block;
}

/* picture inside image containers must fill the container, same as img */
.card__image picture,
.hero__bg picture,
.about-intro__image picture,
.about-story__image picture,
.team-card__photo picture {
  width: 100%;
  height: 100%;
}

.card__image picture img,
.hero__bg picture img,
.about-intro__image picture img,
.about-story__image picture img,
.team-card__photo picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-marquee__item picture {
  width: 100%;
  height: 100%;
}

.hero-marquee__item picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy-deeper);
  line-height: 1.15;
  font-weight: 400;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
}

h4 { font-size: var(--text-xl); }

p {
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

em {
  color: var(--green);
  font-style: italic;
}

small {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.font-mono {
  font-family: var(--font-mono);
}

@media (min-width: 768px) {
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }
  h3 { font-size: var(--text-3xl); }
}

@media (min-width: 1024px) {
  h1 { font-size: var(--text-6xl); }
}

/* ── Skip link (a11y) ── */
.skip-link {
  position: absolute;
  top: -120%;
  left: var(--space-4);
  z-index: 9999;
  padding: var(--space-3) var(--space-6);
  background: var(--navy-deeper);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  text-decoration: none;
  transition: top 0.15s var(--ease-default);
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.section--white  { background: var(--white); }
.section--dark   { background: var(--navy-deeper); }
.section--tinted { background: var(--off-white); }

/* ── Eyebrow ── */
.eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: var(--space-3);
}

/* ── Section header ── */
.section-header {
  margin-bottom: var(--space-12);
}

.section-header__desc {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-top: var(--space-4);
}

.section-header.text-center .section-header__desc {
  margin-left: auto;
  margin-right: auto;
}

/* ── Utilities ── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--duration-base) var(--ease-default);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.btn .icon {
  flex-shrink: 0;
}

.btn-sm      { height: 36px; padding: 0 var(--space-4);  font-size: var(--text-sm);  }
.btn-default { height: 44px; padding: 0 var(--space-6);  font-size: var(--text-sm);  }
.btn-lg      { height: 52px; padding: 0 var(--space-8);  font-size: var(--text-base);}
.btn-xl      { height: 60px; padding: 0 var(--space-10); font-size: var(--text-base);}

.btn:not(.btn-sm):not(.btn-lg):not(.btn-xl) {
  height: 44px;
  padding: 0 var(--space-6);
  font-size: var(--text-sm);
}

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

.btn-secondary {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-secondary:hover {
  background-color: var(--navy);
  color: var(--white);
}

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

.btn-ghost {
  color: var(--navy);
  background: transparent;
}
.btn-ghost:hover {
  background-color: var(--navy-light);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-white {
  background: var(--white);
  color: var(--green-deeper);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-glass-dark {
  background: rgba(13, 40, 69, 0.18);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-glass-dark:hover {
  background: rgba(13, 40, 69, 0.32);
  border-color: var(--white);
}


/* ============================================================
   FORMS
   ============================================================ */

.input {
  width: 100%;
  height: 44px;
  padding: 0 var(--space-4);
  font-size: var(--text-base);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--navy-light);
}

.input--error         { border-color: var(--danger); }
.input--error:focus   { box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15); }

textarea.input {
  height: auto;
  min-height: 120px;
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
  resize: vertical;
}


/* ============================================================
   CARDS
   ============================================================ */

.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-default),
              box-shadow var(--duration-base) var(--ease-default);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.card__image {
  overflow: hidden;
}

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

.card__body {
  padding: var(--space-6);
}

.card__meta {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--navy-deeper);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.card__footer {
  margin-top: var(--space-4);
}


/* ============================================================
   SITE HEADER & NAV
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--white);
  transition: box-shadow var(--duration-base) var(--ease-default);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border);
}

@media (max-width: 1023px) {
  .site-header {
    height: var(--nav-height-mobile);
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-8);
}

.site-header__logo img {
  height: 40px;
  width: auto;
}

.site-nav { display: none; }

@media (min-width: 1024px) {
  .site-nav {
    display: flex;
    flex: 1;
    justify-content: center;
  }
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.site-nav__item { position: relative; }

.site-nav__link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: color var(--duration-fast), background var(--duration-fast);
}

.site-nav__link:hover,
.site-nav__link--active {
  color: var(--navy);
}

.site-nav__link--active { font-weight: 700; }

.site-nav__link .icon { color: var(--text-muted); }

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--duration-base) var(--ease-default);
}

.site-nav__item--dropdown:hover .site-nav__dropdown,
.site-nav__item--dropdown:focus-within .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav__dropdown-link {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: background var(--duration-fast), color var(--duration-fast);
}

.site-nav__dropdown-link:hover {
  background: var(--off-white);
  color: var(--navy);
}

.site-header__cta { display: none; }

@media (min-width: 1024px) {
  .site-header__cta { display: inline-flex; }
}

/* Hamburger */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--navy);
  transition: background var(--duration-fast);
}

.menu-toggle:hover { background: var(--navy-light); }

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

.menu-toggle__close { display: none; }

body.menu-open .menu-toggle__open  { display: none; }
body.menu-open .menu-toggle__close { display: flex; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy-deeper);
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-height-mobile) + var(--space-8)) var(--space-6) var(--space-8);
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-default);
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .mobile-menu { display: none; }
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  overflow-y: auto;
}

.mobile-menu__link {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-lg);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  transition: background var(--duration-fast), color var(--duration-fast);
}

.mobile-menu__link:hover,
.mobile-menu__link--active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu__link--sub {
  font-size: var(--text-base);
  padding-left: var(--space-8);
  color: rgba(255, 255, 255, 0.5);
}

.mobile-menu__cta,
.mobile-menu__whatsapp { margin-top: var(--space-4); }

.mobile-menu__whatsapp a { width: 100%; justify-content: center; }


/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: calc(85vh - var(--nav-height-mobile));
  background: var(--navy-deeper);
}

@media (min-width: 768px) {
  .hero { min-height: calc(100vh - var(--nav-height)); }
}

.hero--short {
  min-height: 380px;
  align-items: flex-end;
  padding-bottom: var(--space-12);
}

.hero--landing {
  min-height: calc(100vh - var(--nav-height));
  padding: var(--space-12) 0 var(--space-20);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__layout {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero--split .hero__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: var(--space-12);
  }
}

.hero__left {
  max-width: 640px;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(13, 40, 69, 0.94) 0%,
    rgba(13, 40, 69, 0.82) 45%,
    rgba(13, 40, 69, 0.65) 75%,
    rgba(13, 40, 69, 0.55) 100%
  );
  z-index: 1;
}

.hero--short .hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(13, 40, 69, 0.65) 0%,
    rgba(13, 40, 69, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  max-width: 700px;
}

/* ── Hero vertical marquee (right side) ── */
.hero-marquee {
  position: relative;
  display: none;
  height: 540px;
  gap: var(--space-4);
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

@media (min-width: 1024px) {
  .hero-marquee { display: flex; }
}

.hero-marquee__col {
  flex: 1;
  overflow: hidden;
}

.hero-marquee__track {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  animation: hero-marquee-up 28s linear infinite;
}

.hero-marquee__col--reverse .hero-marquee__track {
  animation: hero-marquee-down 28s linear infinite;
}

.hero-marquee__item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

@keyframes hero-marquee-up {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

@keyframes hero-marquee-down {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-marquee__track { animation: none; }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: var(--space-5);
}

.hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.hero__sep {
  color: rgba(255, 255, 255, 0.35);
  margin: 0 var(--space-1);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: var(--space-6);
  letter-spacing: -0.01em;
}

.hero__title em {
  color: var(--green);
  font-style: italic;
}

@media (min-width: 768px) {
  .hero__title { font-size: var(--text-5xl); }
}

@media (min-width: 1024px) {
  .hero__title { font-size: var(--text-6xl); }
}

.hero__subtitle {
  font-size: var(--text-base);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .hero__subtitle { font-size: var(--text-lg); }
}

/* ── Page hero (inner pages — short, left-aligned, wider content) ── */
.page-hero .hero__layout {
  display: block;
  padding-top: var(--space-8);
}

.page-hero .hero__left {
  max-width: 900px;
}

.page-hero .hero__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .page-hero .hero__title { font-size: var(--text-5xl); }
}

.page-hero .hero__subtitle {
  max-width: 720px;
  margin-bottom: var(--space-6);
}

.page-hero .breadcrumb {
  margin-top: 0;
  margin-bottom: var(--space-4);
  order: -1;
}

.page-hero .hero__left {
  display: flex;
  flex-direction: column;
}

.page-hero .hero__left .hero__eyebrow { order: 1; }
.page-hero .hero__left .hero__title   { order: 2; }
.page-hero .hero__left .breadcrumb    { order: 3; margin-top: var(--space-2); }
.page-hero .hero__left .hero__subtitle{ order: 4; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
}

/* Hero image slider strip */
.hero-slider {
  position: absolute;
  bottom: var(--space-8);
  left: var(--space-6);
  z-index: 3;
  display: none;
  gap: var(--space-2);
  align-items: flex-end;
}

@media (min-width: 768px) {
  .hero-slider {
    display: flex;
  }
}

.hero-slider__item {
  width: 72px;
  height: 54px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-default);
  opacity: 0.55;
  flex-shrink: 0;
}

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

.hero-slider__item.is-active,
.hero-slider__item:hover {
  opacity: 1;
  border-color: var(--green);
  transform: translateY(-4px);
  width: 96px;
  height: 72px;
}


/* ============================================================
   STATS BAR (dark variant — used on about page)
   ============================================================ */

.stats-bar {
  background: var(--navy-deeper);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(125, 194, 66, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 50%, rgba(26, 79, 138, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.stats-bar .container { position: relative; }

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

@media (min-width: 768px) {
  .stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   STATS FLOAT CARD (homepage — overlaps hero)
   ============================================================ */

.stats-float {
  margin-top: calc(-1 * var(--space-16));
  position: relative;
  z-index: 5;
  padding-bottom: var(--space-12);
}

@media (min-width: 1024px) {
  .stats-float {
    margin-top: calc(-1 * var(--space-20));
  }
}

.stats-float__card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: 0 24px 60px rgba(13, 40, 69, 0.22), 0 4px 16px rgba(13, 40, 69, 0.08);
  border: 1px solid var(--border);
  padding: var(--space-8) var(--space-6);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .stats-float__card {
    grid-template-columns: repeat(4, 1fr);
    padding: var(--space-10) var(--space-8);
  }
}

.stats-float__card .stat {
  padding: var(--space-4) var(--space-5);
  position: relative;
}

.stats-float__card .stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}

@media (max-width: 767px) {
  .stats-float__card .stat:nth-child(2)::before,
  .stats-float__card .stat:nth-child(4)::before { display: none; }
  .stats-float__card .stat:nth-child(3),
  .stats-float__card .stat:nth-child(4) {
    border-top: 1px solid var(--border);
    padding-top: var(--space-6);
    margin-top: var(--space-2);
  }
}

.stats-float__card .stat__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--green-light);
  border: none;
  color: var(--green-dark);
  margin-bottom: var(--space-4);
}

.stats-float__card .stat:hover .stat__icon {
  background: var(--green);
  color: var(--white);
}

.stats-float__card .stat__value {
  color: var(--navy-deeper);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-1);
}

@media (min-width: 768px) {
  .stats-float__card .stat__value { font-size: var(--text-5xl); }
}

.stats-float__card .stat__label {
  color: var(--text-secondary);
  font-size: var(--text-xs);
  font-weight: 700;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  position: relative;
}

/* vertical dividers between stats */
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .stat:nth-child(2)::before,
  .stat:nth-child(4)::before { display: none; }
  .stat:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.stat__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(125, 194, 66, 0.15);
  border: 1px solid rgba(125, 194, 66, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: var(--space-4);
  transition: background var(--duration-base), transform var(--duration-base);
}

.stat:hover .stat__icon {
  background: rgba(125, 194, 66, 0.25);
  transform: translateY(-2px);
}

.stat__value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-2);
}

@media (min-width: 768px) {
  .stat__value { font-size: var(--text-5xl); }
}

.stat__label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat__desc {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  margin-top: var(--space-1);
}


/* ============================================================
   ABOUT INTRO
   ============================================================ */

.about-intro__grid {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .about-intro__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
  }
}

.about-intro__image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy-light);
  box-shadow: var(--shadow-xl);
}

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

/* floating achievement card */
.about-intro__badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-6);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  max-width: 260px;
}

.about-intro__badge-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-intro__badge-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--navy-deeper);
  line-height: 1;
}

.about-intro__badge-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-intro__body {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .about-intro__body { font-size: var(--text-lg); }
}

/* checklist inside about-intro */
.about-intro__checks {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
  margin-bottom: var(--space-8);
}

.about-intro__check {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-deeper);
}

.about-intro__check .icon {
  color: var(--green);
  flex-shrink: 0;
}


/* ============================================================
   SERVICES GRID
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* colored accent bar at top */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-default);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .card__body {
  padding: var(--space-8);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  color: var(--navy);
  transition: background var(--duration-base), color var(--duration-base), transform var(--duration-base);
}

.service-card:hover .service-card__icon {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.05);
}

.service-card .card__title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy-deeper);
  margin-bottom: var(--space-3);
}

.service-card .card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-5);
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  transition: gap var(--duration-fast), color var(--duration-fast);
}

.service-card:hover .service-card__link {
  gap: var(--space-3);
  color: var(--green-dark);
}

.services-section__cta {
  text-align: center;
  margin-top: var(--space-12);
}


/* ============================================================
   PROJECTS GRID
   ============================================================ */

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(4, 1fr); }
}

.project-card {
  text-decoration: none;
  display: block;
}

.project-card__image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--navy-light);
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-default);
}

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

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 40, 69, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-default);
}

.project-card:hover .project-card__overlay { opacity: 1; }

.project-card__view {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
}

.project-card .card__body {
  padding: var(--space-4) var(--space-5);
}

.project-card .card__title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy-deeper);
  margin-bottom: var(--space-1);
}

.project-card .card__meta {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-2);
  text-transform: none;
  letter-spacing: 0;
}

.project-card__badge {
  display: inline-block;
  padding: 2px var(--space-3);
  border-radius: var(--radius-full);
  background: var(--navy-light);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.projects-section__cta {
  text-align: center;
  margin-top: var(--space-12);
}


/* ============================================================
   WHY SECTION
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

.why-item {
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color var(--duration-base), box-shadow var(--duration-base), transform var(--duration-base);
  position: relative;
  overflow: hidden;
}

.why-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-default);
}

.why-item:hover {
  border-color: var(--navy-mid);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.why-item:hover::after {
  transform: scaleX(1);
}

.why-item__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  margin-bottom: var(--space-5);
  transition: background var(--duration-base), color var(--duration-base);
}

.why-item:hover .why-item__icon {
  background: var(--green);
  color: var(--white);
}

.why-item__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy-deeper);
  margin-bottom: var(--space-3);
}

.why-item__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}


/* ============================================================
   CLIENTS MARQUEE
   ============================================================ */

.clients-section {
  padding: var(--space-16) 0;
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-section .container { margin-bottom: var(--space-10); }

.clients-section .section-header {
  margin-bottom: 0;
}

.marquee {
  mask-image: linear-gradient(to right, transparent 0, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 10%, black 90%, transparent 100%);
  overflow: hidden;
}

.marquee__track {
  display: inline-flex;
  gap: var(--space-4);
  align-items: center;
  animation: marquee-scroll 35s linear infinite;
}

.client-name {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: border-color var(--duration-fast), color var(--duration-fast), background var(--duration-fast);
  cursor: default;
}

.client-name:hover {
  border-color: var(--navy-mid);
  color: var(--navy);
  background: var(--navy-light);
}


/* ============================================================
   BLOG SECTION
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card { text-decoration: none; }

.blog-card .card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-light);
}

.blog-card .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-default);
}

.blog-card:hover .card__image img { transform: scale(1.04); }

.blog-card .card__body { padding: var(--space-6); }

.blog-card .card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
  text-transform: none;
  letter-spacing: 0;
}

.blog-card__category {
  padding: 2px var(--space-2);
  border-radius: var(--radius-full);
  background: var(--navy-light);
  color: var(--navy);
  font-weight: 600;
}

.blog-card .card__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy-deeper);
  line-height: 1.4;
  margin-bottom: var(--space-3);
}

.blog-card .card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.blog-card__read {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--green-dark);
}

.blog-section__cta {
  text-align: center;
  margin-top: var(--space-12);
}

.blog-empty {
  text-align: center;
  padding: var(--space-12) 0;
  color: var(--text-muted);
}


/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  background: var(--navy-deeper);
  position: relative;
  overflow: hidden;
}

/* mesh gradient blobs */
.cta-band::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(125, 194, 66, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 79, 138, 0.5) 0%, transparent 65%);
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--white);
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .cta-band__title { font-size: var(--text-4xl); }
}

.cta-band__body {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

/* trust micro-strip inside CTA band */
.cta-band__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-band__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.cta-band__trust-item .icon {
  color: var(--green);
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--navy-deeper);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--space-20);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-16);
}

@media (min-width: 640px) {
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
  }
}

.site-footer__logo img {
  height: var(--space-16);
  width: auto;
  margin-bottom: var(--space-4);
}

.site-footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-6);
}

.site-footer__address {
  font-style: normal;
}

.site-footer__address p {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-3);
}

.site-footer__address a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration-fast);
}

.site-footer__address a:hover { color: var(--green); }

.site-footer__address .icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green-dark);
}

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

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.site-footer__links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration-fast);
}

.site-footer__links a:hover { color: var(--green); }

.site-footer__certs {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.site-footer__certs li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__certs .icon {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-6) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}


/* ============================================================
   PHASE 3 INNER PAGES
   ============================================================ */

.breadcrumb {
  margin-top: var(--space-6);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-sm);
}

.breadcrumb__item:not(:last-child)::after {
  content: '/';
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb__link {
  transition: color var(--duration-fast) var(--ease-default);
}

.breadcrumb__link:hover {
  color: var(--green);
}

.breadcrumb__current {
  color: var(--white);
}

.page-intro {
  max-width: 760px;
}

.page-intro p:last-child {
  margin-bottom: 0;
}

.services-grid--detailed .service-card {
  height: 100%;
}

.services-grid--detailed .card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card__description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: auto;
  margin-bottom: var(--space-6);
}

.service-card__list li {
  position: relative;
  padding-left: var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.service-card__list li::before {
  content: '';
  position: absolute;
  top: var(--space-2);
  left: 0;
  width: var(--space-3);
  height: var(--space-3);
  border-radius: var(--radius-full);
  background: var(--green);
}

.service-detail__body,
.project-detail__section,
.about-story__copy,
.article-body {
  color: var(--text-secondary);
}

.service-detail__body p:last-child,
.project-detail__section p:last-child,
.about-story__copy p:last-child,
.article-body p:last-child {
  margin-bottom: 0;
}

.sub-services-list {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .sub-services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sub-services-list__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.sub-services-list__icon {
  width: var(--space-10);
  height: var(--space-10);
  border-radius: var(--radius-lg);
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sub-services-list__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-equipment__grid,
.about-values__grid,
.about-certs__grid,
.reference-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .service-equipment__grid,
  .about-certs__grid,
  .reference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-values__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-equipment__card,
.about-value,
.about-cert,
.reference-card,
.blog-sidebar__panel,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.service-equipment__title,
.about-value__title,
.blog-sidebar__title,
.contact-panel__title,
.reference-card__title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy-deeper);
  margin-bottom: var(--space-3);
}

.reference-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.reference-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: var(--navy-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reference-card__header .reference-card__title {
  margin-bottom: 0;
}

.service-equipment__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-equipment__list li,
.about-cert__text,
.reference-card__body,
.contact-panel__body,
.blog-sidebar__body {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.filter-bar__button {
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--duration-fast) var(--ease-default);
}

.filter-bar__button:hover,
.filter-bar__button.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.project-card.is-hidden {
  display: none;
}

.project-card.is-filtering {
  pointer-events: none;
}

.project-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: var(--space-24);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-12);
}

.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--space-10);
  height: var(--space-10);
  padding: 0 var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--duration-fast) var(--ease-default);
}

.pagination__link:hover,
.pagination__link--active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.pagination__link--disabled {
  pointer-events: none;
  opacity: 0.45;
}

.detail-empty {
  padding: var(--space-8);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-xl);
  color: var(--text-muted);
  background: var(--white);
}

.project-detail__lead {
  max-width: 760px;
  margin-bottom: var(--space-10);
}

.project-info-strip {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .project-info-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .project-info-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.project-info-strip__item {
  background: var(--navy-deeper);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.project-info-strip__label {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.project-info-strip__value {
  color: var(--white);
  font-size: var(--text-base);
  font-weight: 600;
}

.project-gallery {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .project-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-gallery__item,
.project-gallery__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy-light);
  box-shadow: var(--shadow-sm);
}

.project-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-gallery__placeholder {
  border: 1px dashed var(--border-strong);
}

.about-story__grid {
  display: grid;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 1024px) {
  .about-story__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.about-story__image {
  min-height: 320px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--navy-deeper), var(--navy));
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: flex;
}

.about-story__image::after {
  content: none;
}

.about-story__image--photo {
  background: none;
}

.about-story__image--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-2xl);
}

.about-value__icon,
.about-cert__icon {
  width: var(--space-10);
  height: var(--space-10);
  border-radius: var(--radius-lg);
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.team-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card__photo {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--navy-light), var(--off-white));
}

.team-card .card__title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.team-card .card__meta {
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: var(--space-3);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.data-table th,
.data-table td {
  text-align: left;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border);
  font-size: var(--text-sm);
}

.data-table th {
  background: var(--navy-deeper);
  color: var(--white);
  font-weight: 700;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.blog-layout {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .blog-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    align-items: start;
  }
}

.blog-sidebar {
  display: grid;
  gap: var(--space-6);
}

.blog-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.blog-sidebar__list a {
  color: var(--text-secondary);
  transition: color var(--duration-fast) var(--ease-default);
}

.blog-sidebar__list a:hover,
.blog-sidebar__list a.is-active {
  color: var(--navy);
}

.blog-search {
  display: grid;
  gap: var(--space-3);
}

.blog-search__actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.article-cover {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: var(--space-8);
  background: var(--navy-light);
  min-height: 280px;
}

.article-cover img {
  width: 100%;
  height: auto;
}

.article-body h2,
.article-body h3 {
  font-family: var(--font-body);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.article-body ul,
.article-body ol {
  list-style: initial;
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.article-body li {
  margin-bottom: var(--space-2);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.tag-list__item {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: var(--green-light);
  color: var(--green-deeper);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    align-items: start;
  }
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .form-grid--split {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-field {
  display: grid;
  gap: var(--space-2);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-deeper);
}

.form-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.form-alert {
  display: none;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: 500;
}

.form-alert.is-visible {
  display: block;
}

.form-alert--success {
  background: var(--green-light);
  color: var(--green-deeper);
}

.form-alert--error {
  background: var(--danger-light);
  color: var(--danger);
}

.contact-details {
  display: grid;
  gap: var(--space-6);
}

.contact-details__list {
  display: grid;
  gap: var(--space-4);
}

.contact-details__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-details__icon {
  width: var(--space-10);
  height: var(--space-10);
  border-radius: var(--radius-lg);
  background: var(--navy-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details__item strong {
  display: block;
  color: var(--navy-deeper);
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
}

.contact-details__item p,
.contact-details__item a {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

.contact-map {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-md);
  background: var(--navy-light);
}

.contact-map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.contact-panel__cta {
  margin-top: var(--space-6);
}

.floating-whatsapp {
  position: fixed;
  right: var(--space-6);
  bottom: var(--space-6);
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-width: var(--space-16);
  min-height: var(--space-16);
  padding: var(--space-4);
  border-radius: var(--radius-full);
  background: var(--green);
  color: var(--navy-deeper);
  font-size: var(--text-sm);
  font-weight: 700;
  box-shadow: var(--shadow-xl);
  transition:
    transform var(--duration-fast) var(--ease-default),
    background var(--duration-fast) var(--ease-default);
}

.floating-whatsapp:hover {
  transform: translateY(calc(var(--space-1) * -1));
  background: var(--green-light);
  color: var(--navy-deeper);
}

.floating-whatsapp svg {
  flex: 0 0 auto;
}

@media (max-width: 639px) {
  .floating-whatsapp span {
    display: none;
  }
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.error-page {
  min-height: 100vh;
  background: var(--navy-deeper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
}

.error-page__shell {
  width: 100%;
  max-width: 720px;
  text-align: center;
}

.error-page__code {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  color: var(--white);
  margin-bottom: var(--space-4);
  line-height: 1;
}

@media (min-width: 768px) {
  .error-page__code {
    font-size: calc(var(--text-6xl) * 2);
  }
}

.error-page__title {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.error-page__body {
  color: rgba(255, 255, 255, 0.68);
  max-width: 520px;
  margin: 0 auto var(--space-8);
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.about-equipment__group {
  margin-bottom: var(--space-6);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  background: rgba(13, 40, 69, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__dialog {
  position: relative;
  width: min(100%, 1040px);
  max-height: calc(100vh - var(--space-12));
}

.lightbox__image {
  width: 100%;
  max-height: calc(100vh - var(--space-12));
  object-fit: contain;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.lightbox__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--navy-deeper);
  box-shadow: var(--shadow-md);
  transition: background var(--duration-fast) var(--ease-default),
              color var(--duration-fast) var(--ease-default);
}

.lightbox__close:hover {
  background: var(--green);
  color: var(--white);
}


/* ============================================================
   STATIC MEDIA PLACEHOLDERS
   ============================================================ */

.static-media-placeholder {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  gap: var(--space-2);
  background: linear-gradient(135deg, var(--navy-deeper), var(--navy));
  color: var(--white);
  text-align: center;
}

.static-media-placeholder__eyebrow {
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.static-media-placeholder__label {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.2;
  color: var(--white);
  max-width: 20ch;
}

.about-story__placeholder,
.article-cover__placeholder,
.project-gallery__placeholder {
  min-height: 100%;
}

.project-gallery__placeholder {
  aspect-ratio: 4 / 3;
}

.blog-card__placeholder,
.team-card__placeholder,
.project-card__placeholder {
  height: 100%;
}


/* ============================================================
   TRUST STRIP (below hero / above stats)
   ============================================================ */

.trust-strip {
  background: var(--navy-deeper);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-4) 0;
}

.trust-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .trust-strip__list { gap: var(--space-10); }
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.trust-strip__item .icon {
  color: var(--green);
}


/* ============================================================
   PROCESS / HOW WE WORK SECTION
   ============================================================ */

.process-section {
  background: var(--navy-deeper);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(125, 194, 66, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.process-section .container { position: relative; }

.process-section .section-header h2,
.process-section .eyebrow,
.process-section .section-header__desc {
  color: var(--white);
}

.process-section .eyebrow { color: var(--green); }

.process-section .section-header__desc {
  color: rgba(255, 255, 255, 0.6);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  position: relative;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

/* connecting line between steps (desktop) */
@media (min-width: 1024px) {
  .process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125, 194, 66, 0.4) 20%, rgba(125, 194, 66, 0.4) 80%, transparent);
    z-index: 0;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: var(--space-5);
  }
}

.process-step__number {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(125, 194, 66, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: var(--space-5);
  position: relative;
  transition: background var(--duration-base), border-color var(--duration-base);
}

@media (max-width: 767px) {
  .process-step__number { margin-bottom: 0; }
}

.process-step:hover .process-step__number {
  background: rgba(125, 194, 66, 0.15);
  border-color: var(--green);
}

.process-step__number .icon {
  color: var(--green);
}

.process-step__n {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--green);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

.process-step__body { flex: 1; }

.process-step__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.process-step__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
}


/* ============================================================
   FEATURE ROW (alternating image + text blocks)
   ============================================================ */

.feature-row {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
  .feature-row--reverse .feature-row__image {
    order: 2;
  }
  .feature-row--reverse .feature-row__text {
    order: 1;
  }
}

.feature-row__image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy-light);
  box-shadow: var(--shadow-xl);
}

.feature-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-row__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: var(--space-3);
}

.feature-row__title {
  font-size: var(--text-3xl);
  color: var(--navy-deeper);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .feature-row__title { font-size: var(--text-4xl); }
}

.feature-row__desc {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.feature-row__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.feature-row__list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.feature-row__list-item .icon {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}


/* ============================================================
   IMPACT / NUMBERS BAND
   ============================================================ */

.impact-band {
  background: var(--navy-light);
  border-top: 1px solid var(--navy-mid);
  border-bottom: 1px solid var(--navy-mid);
  padding: var(--space-12) 0;
}

.impact-band__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .impact-band__grid { grid-template-columns: repeat(4, 1fr); }
}

.impact-item {
  text-align: center;
}

.impact-item__value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--navy);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.impact-item__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
}


/* ============================================================
   SECTION BACKGROUNDS / PATTERNS
   ============================================================ */

/* dot-pattern tint for alternating sections */
.section--pattern {
  position: relative;
}

.section--pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}

.section--pattern > .container { position: relative; }

/* navy section heading overrides */
.section--dark .eyebrow { color: var(--green); }
.section--dark h2 { color: var(--white); }
.section--dark .section-header__desc { color: rgba(255, 255, 255, 0.6); }
.section--dark p { color: rgba(255, 255, 255, 0.65); }


/* ============================================================
   EQUIPMENT / CERTIFICATION SHOWCASE
   ============================================================ */

.equip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .equip-grid { grid-template-columns: repeat(3, 1fr); }
}

.equip-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  transition: box-shadow var(--duration-base), transform var(--duration-base);
}

.equip-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.equip-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--navy-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.equip-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy-deeper);
  margin-bottom: var(--space-2);
}

.equip-card__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}


/* ============================================================
   HERO TRUST INDICATORS
   ============================================================ */

.hero-trust-plain {
  margin-top: var(--space-8);
  margin-bottom: 0;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  line-height: 1.6;
}


/* ============================================================
   WHY-LIST — editorial numbered facts
   ============================================================ */

.why-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .why-list { grid-template-columns: repeat(2, 1fr); }
}

.why-list__item {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-7) 0;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .why-list__item:nth-child(odd) {
    padding-right: var(--space-10);
    border-right: 1px solid var(--border);
  }
  .why-list__item:nth-child(even) {
    padding-left: var(--space-10);
  }
}

.why-list__num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--green-dark);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  padding-top: 3px;
  min-width: 2ch;
}

.why-list__body { flex: 1; }

.why-list__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy-deeper);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.why-list__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   SECTION DIVIDER WITH ICON
   ============================================================ */

.section-divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-16) 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-divider__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
}


/* ============================================================
   PROJECT CARD — ENHANCED
   ============================================================ */

.project-card .card__image {
  aspect-ratio: 16 / 10;
}

.project-card .card__body {
  padding: var(--space-5) var(--space-6);
}

.project-card .card__title {
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: var(--space-2);
}

/* large variant for homepage featured row */
.project-card--lg .project-card__image {
  aspect-ratio: 3 / 2;
}

.project-card--lg .card__title {
  font-size: var(--text-base);
}


/* ============================================================
   BLOG CARD — ENHANCED
   ============================================================ */

.blog-card .card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-light);
}

.blog-card .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-default);
}

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

.card__meta-dot {
  color: var(--border-strong);
}


/* ============================================================
   TEAM CARD — ENHANCED
   ============================================================ */

.team-card {
  position: relative;
  overflow: hidden;
}

.team-card__photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--navy-deeper), var(--navy));
  overflow: hidden;
}

.team-card__initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  opacity: 0.6;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-default);
}

.team-card:hover .team-card__photo img {
  transform: scale(1.04);
}

.team-card__social {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.team-card__social-link {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background: var(--navy-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-fast), color var(--duration-fast);
}

.team-card__social-link:hover {
  background: var(--navy);
  color: var(--white);
}

.team-card .card__title {
  font-size: var(--text-base);
  font-weight: 700;
}

.team-card .card__meta {
  font-size: var(--text-xs);
  color: var(--green-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}


/* ============================================================
   GLOBAL POLISH TWEAKS
   ============================================================ */

/* bigger shadows on card hover for impact */
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(17, 27, 16, 0.12);
}

/* eyebrow with accent bar */
.eyebrow--bar {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.eyebrow--bar::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  flex-shrink: 0;
}

/* section background: subtle off-white with border */
.section--card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  padding: var(--space-12);
  margin: 0 auto;
  max-width: var(--container-max);
}

/* image with rounded corner cutout + overlay label */
.image-labeled {
  position: relative;
}

.image-labeled__tag {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: var(--green);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* scroll fade-in support (adds to existing reveal classes) */
.reveal-up,
.reveal-stagger {
  will-change: transform, opacity;
}

/* sticky sidebar for inner pages */
@media (min-width: 1024px) {
  .sticky-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-8));
  }
}

/* blockquote pullout */
.pullquote {
  border: 1px solid var(--green);
  padding: var(--space-6) var(--space-8);
  background: var(--navy-light);
  border-radius: var(--radius-xl);
  margin: var(--space-8) 0;
}

.pullquote p {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--navy-deeper);
  font-style: italic;
  margin: 0;
}

/* pill badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--green {
  background: var(--green-light);
  color: var(--green-deeper);
}

.badge--navy {
  background: var(--navy-light);
  color: var(--navy-dark);
}

.badge--white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================================
   GREEN CTA CARD (contained, rounded, with SVG pattern)
   ============================================================ */

.cta-section {
  padding-top: var(--space-12);
  padding-bottom: var(--space-20);
  background: var(--off-white);
}

.cta-card {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 0% 100%, rgba(13, 40, 69, 0.25) 0%, transparent 60%),
    linear-gradient(135deg, var(--green) 0%, var(--green-dark) 55%, var(--green-deeper) 100%);
  padding: var(--space-16) var(--space-8);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(90, 148, 48, 0.35), 0 8px 24px rgba(13, 40, 69, 0.15);
}

@media (min-width: 768px) {
  .cta-card {
    padding: var(--space-20) var(--space-16);
  }
}

.cta-card__pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
}

.cta-card__body {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-card__eyebrow { display: none; }

.cta-card__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}

.cta-card__title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
  .cta-card__title { font-size: var(--text-5xl); }
}

.cta-card__desc {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.cta-card__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-card__trust-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cta-card__trust-item .icon {
  color: var(--white);
}


/* ============================================================
   TOP UTILITY BAR (above main header)
   ============================================================ */

.top-bar {
  background: var(--navy-deeper);
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-xs);
  border-bottom: 1px solid rgba(125, 194, 66, 0.18);
  position: relative;
}

.top-bar::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green) 50%, transparent);
  opacity: 0.4;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  gap: var(--space-4);
}

.top-bar__left,
.top-bar__right {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--duration-fast);
}

.top-bar__item:hover { color: var(--green); }

.top-bar__item .icon { color: var(--green); }

.top-bar__socials {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.top-bar__social {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  transition: color var(--duration-fast), background var(--duration-fast);
}

.top-bar__social:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
  .top-bar__right { display: none; }
  .top-bar__inner { justify-content: center; }
}


/* ============================================================
   CARD SPACING — global rhythm fixes
   ============================================================ */

.services-grid,
.projects-grid,
.blog-grid,
.why-grid {
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .services-grid { gap: var(--space-6); }
  .projects-grid { gap: var(--space-6); }
  .blog-grid     { gap: var(--space-8); }
  .why-grid      { gap: var(--space-6); }
}

.service-card .card__body {
  padding: var(--space-8) var(--space-7);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.service-card__icon {
  margin-bottom: var(--space-7);
}

.service-card .card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  line-height: 1.25;
}

.service-card .card__text {
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.why-item {
  padding: var(--space-8) var(--space-7);
}

.why-item__icon {
  margin-bottom: var(--space-6);
}

.why-item__title {
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

.why-item__desc {
  line-height: 1.75;
}

.project-card .card__body {
  padding: var(--space-5) var(--space-6) var(--space-6);
}

.blog-card .card__body {
  padding: var(--space-7);
}

.blog-card .card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

/* SVG decorative card backgrounds */
.card-decorated {
  position: relative;
}

.card-decorated::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, var(--green-light) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.card-decorated > * { position: relative; z-index: 1; }


/* ============================================================
   SECTION HEADER — left-aligned default, better hierarchy
   ============================================================ */

.section-header {
  max-width: 720px;
}

.section-header__desc {
  margin-top: var(--space-5);
}

.section-header.text-center,
.section-header--center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header.text-center .section-header__desc,
.section-header--center .section-header__desc {
  margin-left: auto;
  margin-right: auto;
}


/* no-results empty state */
.empty-state {
  text-align: center;
  padding: var(--space-20) var(--space-8);
}

.empty-state__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--navy-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
}

.empty-state__title {
  font-size: var(--text-xl);
  color: var(--navy-deeper);
  margin-bottom: var(--space-3);
}

.empty-state__body {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  max-width: 36ch;
  margin: 0 auto var(--space-6);
}


/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */

.testimonials-section {
  background: var(--navy-deeper);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 0% 60%, rgba(125, 194, 66, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 100% 30%, rgba(26, 79, 138, 0.4) 0%, transparent 65%);
  pointer-events: none;
}

.testimonials-section .container { position: relative; }

.testimonials-section .eyebrow { color: var(--green); }

.testimonials-section .section-header h2 { color: var(--white); }

.testimonials-section .section-header__desc { color: rgba(255, 255, 255, 0.6); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: background var(--duration-base), border-color var(--duration-base), transform var(--duration-base);
  cursor: default;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(125, 194, 66, 0.35);
  transform: translateY(-2px);
}

.testimonial-card__quote-mark {
  display: none;
}

.testimonial-card__text {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  flex: 1;
  margin: 0;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--navy), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.testimonial-card__role {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}
