﻿:root {
  --ink: #132025;
  --muted: #647277;
  --line: #d9e2e4;
  --paper: #edf3f2;
  --surface: #f6f9f8;
  --surface-strong: #eef4f3;
  --white: #ffffff;
  --teal: #0c5c61;
  --teal-dark: #2D9E9B;
  --blue: #0969a4;
  --night: #082633;
  --charcoal: #3d3e45;
  --gold: #c89a4a;
  --clay: #c8634d;
  --sage: #dfe9e5;
  --shadow: 0 18px 45px rgba(12, 37, 42, 0.12);
  --section-texture:
    linear-gradient(135deg, rgba(12, 92, 97, 0.045) 0 1px, transparent 1px 38px),
    radial-gradient(circle at 12% 18%, rgba(45, 158, 155, 0.1), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(200, 154, 74, 0.1), transparent 28%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  background-image: var(--section-texture);
  line-height: 1.6;
}

body::selection {
  color: var(--white);
  background: var(--teal);
}

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

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

.site-header {
  color: var(--white);
  background: var(--teal-dark);
}

.home-header {
  min-height: 84vh;
}

.navbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 112px;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 8px max(20px, calc((100% - 1180px) / 2));
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(45, 158, 155, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 36px rgba(8, 54, 58, 0.18);
}

.navbar::after {
  content: "";
  width: 112px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  justify-self: start;
}

.brand-logo {
  width: 270px;
  height: 108px;
  object-fit: contain;
  object-position: center;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  color: var(--teal-dark);
  background: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 24px;
  min-width: 0;
  font-size: 1.02rem;
  font-weight: 700;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
  word-spacing: 0.08em;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:focus-visible,
.button:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(200, 154, 74, 0.72);
  outline-offset: 3px;
}

.nav-item {
  position: static;
}

.has-submenu > a::after {
  content: "";
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin-left: 0.45em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.has-submenu.is-open > a::after {
  transform: translateY(1px) rotate(225deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 0 8px 8px;
  background: rgb(45, 158, 155);
  box-shadow: 0 14px 28px rgba(8, 54, 58, 0.16);
}

.submenu-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.has-submenu.is-open .submenu {
  display: grid;
}

.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  white-space: normal;
}

.submenu a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.language-link {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
}

.menu-toggle {
  display: none;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 84vh;
  padding: 126px 20px 54px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(45, 158, 155, 0.82) 0%, rgba(45, 158, 155, 0.18) 42%, rgba(4, 22, 25, 0.02) 100%),
    linear-gradient(90deg, rgba(4, 22, 25, 0.74) 0%, rgba(4, 22, 25, 0.24) 46%, rgba(4, 22, 25, 0.04) 100%),
    linear-gradient(180deg, rgba(4, 22, 25, 0.08) 0%, rgba(4, 22, 25, 0.72) 100%);
}

.hero-content,
.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 0;
}

.hero .eyebrow {
  transform: translateY(-16px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  line-height: 0.9;
}

.hero h1 span {
  display: block;
  color: #fff4c8;
}

.hero p,
.page-hero p {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.button-primary {
  color: #1f5f55;
  background: #bfd8b8;
}

.button-primary:hover {
  color: #1f5f55;
  background: #a9cfa1;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.16);
}

.page-hero {
  padding: 155px 20px 86px;
  background: radial-gradient(circle at 85% 25%, rgba(200, 154, 74, 0.22), transparent 34%), linear-gradient(135deg, #07353a, #10272d);
}

.page-hero-image {
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
}

.page-hero-image .section-inner {
  position: relative;
  z-index: 1;
}

.experience-page-hero {
  background-image: linear-gradient(90deg, rgba(3, 26, 34, 0.9), rgba(3, 26, 34, 0.18)), url("../images/reach-global.png");
}

.software-page-hero,
.bexel-page-hero,
.geo5-page-hero {
  background-image: linear-gradient(90deg, rgba(3, 22, 35, 0.94), rgba(3, 36, 48, 0.34)), url("../images/transition.png");
}

.network-page-hero {
  background-image: linear-gradient(90deg, rgba(3, 26, 34, 0.92), rgba(3, 26, 34, 0.28)), url("../images/commitment-bg.png");
}

.contact-page-hero {
  background-image: linear-gradient(90deg, rgba(12, 92, 97, 0.92), rgba(3, 26, 34, 0.3)), url("../images/hero-consulting.png");
}

.content-band-dark {
  color: var(--white);
  background: var(--night);
}

.content-band-dark h2,
.content-band-dark h3 {
  color: var(--white);
}

.content-band-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.page-software-grid {
  display: grid;
  gap: 30px;
}

.page-software-grid .software-card {
  background: #071f2b;
}

.technology-visual {
  overflow: hidden;
  border-radius: 8px;
  background: var(--night);
  box-shadow: var(--shadow);
}

.technology-visual img {
  width: 100%;
  height: auto;
}

.detail-copy {
  display: grid;
  gap: 18px;
}

.detail-copy p {
  margin: 0;
}

.section {
  padding: 90px 20px;
}

.split,
.contact-layout,
.detail-layout,
.media-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

.media-split {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
}

h2 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.section p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1rem;
}

.intro-copy {
  display: grid;
  gap: 14px;
}

.intro-media {
  overflow: hidden;
  border-radius: 8px;
  background: #061f23;
  box-shadow: var(--shadow);
}

.intro-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.intro-section .split {
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.intro-section h2 {
  max-width: 560px;
  font-size: clamp(2.25rem, 3vw, 3rem);
}

.intro-copy p {
  margin: 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading h2 {
  flex: 0 1 820px;
}

.intro-section,
.contact-section,
.experience-section {
  background-color: var(--surface);
  background-image: var(--section-texture);
}

.services-section {
  padding-top: 56px;
  background-color: var(--paper);
  background-image: var(--section-texture);
}

.intro-section,
.services-section {
  background-image:
    linear-gradient(180deg, rgba(45, 158, 155, 0.24) 0%, rgba(45, 158, 155, 0.12) 38%, rgba(246, 249, 248, 0.72) 78%),
    radial-gradient(circle at 12% 18%, rgba(45, 158, 155, 0.18), transparent 34%),
    var(--section-texture);
}

.intro-section {
  padding-bottom: 32px;
  border-bottom: 3px solid rgba(191, 216, 184, 0.5);
  background-color: #e5f4f2;
  background-image: none;
}

.services-section {
  background-color: #f1f3f2;
  background-image: none;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 12px 18px rgba(61, 62, 69, 0.04);
}

.services-section h2 {
  color: #1f5f55;
}

.industries-section {
  padding-top: 36px;
  padding-bottom: 44px;
  border-bottom: 3px solid rgba(191, 216, 184, 0.56);
  color: var(--ink);
  background:
    #aeb6b8;
}

.industries-section .section-heading {
  align-items: end;
  justify-content: center;
  text-align: center;
}

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

.industries-section h3,
.industry-card h3 {
  color: var(--white);
}

.industries-section .eyebrow {
  color: #6fd8d4;
}

.section-heading-single {
  display: block;
}

.section-heading-single h2 {
  max-width: none;
}

.industries-section .section-heading-single h2 {
  white-space: nowrap;
}

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

.industry-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 8px;
  background: #061f23;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.industry-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  opacity: 0.92;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 21, 26, 0.56), rgba(3, 21, 26, 0.12)),
    linear-gradient(180deg, rgba(3, 21, 26, 0.02), rgba(3, 21, 26, 0.7));
}

.industry-card div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.industry-card h3 {
  max-width: 340px;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.industry-card p {
  max-width: 390px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.industry-card:hover img {
  opacity: 0.9;
  transform: scale(1.04);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 249, 248, 0.94);
  box-shadow: 0 1px 0 rgba(20, 42, 45, 0.04);
}

.service-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  background-position: center;
  background-size: cover;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 18, 23, 0.2), rgba(3, 18, 23, 0.94));
}

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

.service-card p {
  color: rgba(255, 255, 255, 0.82);
}

.service-design-engineering,
.service-design,
.service-engineering { background-image: url("../images/service-design-engineering.jpg"); }
.service-bim { background-image: url("../images/service-bim-new.jpg"); }
.service-management { background-image: url("../images/service-construction-management.jpg"); }
.service-energy { background-image: url("../images/service-energy-advisory.jpg"); background-position: 76% center; }
.service-quality { background-image: url("../images/service-quality-assurance.jpg"); }
.service-bi { background-image: url("../images/service-bi-digital.jpg"); }
.service-human { background-image: url("../images/service-human-capital.jpg"); }

.service-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0.45);
  transform-origin: right;
  transition: transform 0.18s ease;
}

.card-link {
  display: block;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

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

.card span {
  display: inline-flex;
  margin-bottom: 44px;
  color: #ffd382;
  font-weight: 800;
}

.card p,
.network-grid p {
  margin: 12px 0 0;
  font-size: 0.95rem;
}

.locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 26px;
}

.locations span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 0;
  color: var(--teal-dark);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
}

.locations svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #6fd8d4;
  stroke-width: 1.8;
}

.image-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.software-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 19, 31, 0.94), rgba(5, 52, 67, 0.72)),
    url("../images/transition.png") center / cover;
}

.software-section h2,
.software-section h3 {
  color: var(--white);
}

.software-section .eyebrow {
  color: #6fd8d4;
}

.software-section .section-heading {
  display: block;
  max-width: 880px;
}

.software-section .section-heading h2 {
  max-width: 880px;
}

.section-lead {
  max-width: 760px;
  margin: -12px 0 34px;
  color: rgba(255, 255, 255, 0.78) !important;
}

.software-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.software-card {
  display: grid;
  grid-template-rows: auto auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(3, 21, 31, 0.72);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22);
}

.software-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.software-card div {
  padding: 24px;
}

.software-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.software-card .button {
  margin-top: 18px;
}

.geo5-visual {
  display: grid;
  place-items: center;
  min-height: 380px;
  padding: 70px !important;
  background: linear-gradient(135deg, #061f23, #3f571b);
}

.geo5-visual img {
  max-width: 620px;
}

.experience-section {
  border-top: 6px solid rgba(191, 216, 184, 0.62);
  border-bottom: 3px solid rgba(191, 216, 184, 0.5);
  padding: 28px 20px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(246, 250, 249, 0.04) 0%, rgba(8, 56, 61, 0.16) 42%, rgba(3, 28, 40, 0.8) 74%),
    linear-gradient(180deg, rgba(246, 250, 249, 0.18) 0%, rgba(3, 28, 40, 0.05) 48%, rgba(3, 28, 40, 0.26) 100%),
    url("../images/global-network-light.png") center / cover no-repeat;
}

.experience-content {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.experience-copy {
  width: min(500px, 46%);
}

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

.experience-section .locations span {
  color: var(--white);
}

.experience-section p {
  color: rgba(255, 255, 255, 0.78);
}

.network-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 21, 26, 0.34), rgba(3, 21, 26, 0.02)),
    linear-gradient(180deg, rgba(8, 38, 51, 0) 0%, rgba(8, 38, 51, 0.08) 58%, rgba(7, 39, 46, 0.5) 100%),
    url("../images/commitment-home.png") center / cover;
}

.network-section p {
  color: rgba(255, 255, 255, 0.72);
}

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

.network-grid > div {
  min-height: 210px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(246, 249, 248, 0.28);
  backdrop-filter: blur(6px);
}

.network-grid h3 {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.network-grid p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.65;
}

.commitment-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(12, 92, 97, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.commitment-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(246, 249, 248, 0.94);
  box-shadow: 0 1px 0 rgba(20, 42, 45, 0.04);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 249, 248, 0.94);
  box-shadow: var(--shadow);
}

.contact-note {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(246, 249, 248, 0.94);
}

.contact-note strong {
  color: var(--teal);
  font-size: 0.96rem;
}

.contact-note span {
  color: var(--muted);
}

.contact-section-tinted {
  background:
    linear-gradient(90deg, rgba(216, 222, 223, 0.82), rgba(216, 222, 223, 0.7)),
    url("../images/hero-consulting.png") center top / 100% auto no-repeat #d8dedf;
}

.contact-section-tinted .contact-form {
  background: rgba(246, 249, 248, 0.62);
  backdrop-filter: blur(10px);
}

.contact-section-tinted .contact-form input,
.contact-section-tinted .contact-form textarea {
  background: rgba(255, 255, 255, 0.76);
}

.contact-logo-card {
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(12px, 2vw, 18px);
  border: 0;
  border-radius: 22px;
  background: rgba(246, 249, 248, 0.42);
  backdrop-filter: blur(8px);
}

.contact-logo-card img {
  display: block;
  width: min(100%, 340px);
  height: auto;
  border-radius: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd8da;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(12, 92, 97, 0.16);
  border-color: var(--teal);
}

.contact-form .button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.94rem;
  font-weight: 700;
}

.cta-strip {
  padding: 74px 20px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 21, 26, 0.82), rgba(3, 21, 26, 0.4)),
    url("../images/hero-consulting.png") center / cover;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 28px max(20px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: #061f23;
}

.site-footer p {
  grid-column: 2;
  justify-self: center;
  margin: 0;
  text-align: center;
}

.site-footer a {
  grid-column: 3;
  justify-self: end;
  color: var(--gold);
  font-weight: 800;
}

.service-detail-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 650px;
  padding: 170px 20px 86px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.service-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 25, 31, 0.94) 0%, rgba(3, 25, 31, 0.68) 48%, rgba(3, 25, 31, 0.2) 100%),
    linear-gradient(180deg, rgba(3, 25, 31, 0.08), rgba(3, 25, 31, 0.76));
}

.service-detail-hero .section-inner {
  position: relative;
  z-index: 1;
}

.service-detail-hero h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
}

.service-detail-hero p:not(.eyebrow) {
  max-width: 760px;
}

.quality-service-hero {
  background-image: url("../images/service-quality-assurance.jpg");
}

.intelligence-service-hero {
  background-image: url("../images/service-bi-digital.jpg");
}

.energy-service-hero {
  background-image: url("../images/service-energy-advisory.jpg");
  background-position: 76% center;
}

.service-intro {
  background-color: var(--surface);
  background-image: var(--section-texture);
}

.service-intro .detail-layout {
  align-items: center;
}

.service-intro-copy {
  display: grid;
  gap: 16px;
}

.service-intro-copy p {
  margin: 0;
  font-size: 1.06rem;
}

.service-highlight {
  color: var(--white);
  background: var(--charcoal);
}

.service-highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
}

.service-highlight h2 {
  color: var(--white);
}

.service-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.service-offerings {
  background-color: var(--paper);
  background-image: var(--section-texture);
}

.service-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-offer {
  min-height: 255px;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(246, 249, 248, 0.94);
}

.service-offer span {
  display: block;
  margin-bottom: 36px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-offer p {
  margin: 12px 0 0;
  font-size: 0.95rem;
}

.service-list-section {
  background-color: var(--surface);
  background-image: var(--section-texture);
}

.service-list-grid,
.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.service-list-grid li,
.standards-grid li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.standards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(238, 244, 243, 0.92);
  color: var(--muted);
}

.process-section {
  color: var(--white);
  background: var(--night);
}

.process-section h2,
.process-section h3 {
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.process-step {
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.process-step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border: 1px solid rgba(111, 216, 212, 0.62);
  border-radius: 50%;
  color: #6fd8d4;
  font-weight: 800;
}

.process-step p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 20px;
  }

  .navbar::after {
    display: none;
  }

  .brand-logo {
    width: 210px;
    height: 84px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0 0 8px 8px;
    background: rgb(45, 158, 155);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 10px;
  }

  .nav-item {
    display: grid;
    position: static;
  }

  .submenu {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
    padding: 0 0 0 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .industries-section .section-heading-single h2 {
    white-space: normal;
  }

  .has-submenu.is-open .submenu {
    display: grid;
  }

  .submenu a {
    padding: 9px 10px;
    color: rgba(255, 255, 255, 0.72);
  }

  .split,
  .contact-layout,
  .detail-layout,
  .media-split,
  .section-heading {
    display: grid;
    grid-template-columns: 1fr;
  }

  .intro-section .split {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .network-grid,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-section {
    padding: 32px 20px;
    background:
      linear-gradient(90deg, rgba(246, 250, 249, 0.04), rgba(3, 28, 40, 0.76)),
      linear-gradient(180deg, rgba(246, 250, 249, 0.14), rgba(3, 28, 40, 0.34)),
      url("../images/global-network-light.png") center / cover no-repeat;
  }

  .experience-copy {
    width: min(520px, 58%);
  }

  .image-panel img {
    min-height: 330px;
  }

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

  .service-offer-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .navbar {
    width: 100%;
  }

  .brand-logo {
    width: 165px;
    height: 64px;
  }

  .site-header,
  .hero {
    min-height: 84vh;
  }

  .hero {
    padding-top: 112px;
  }

  .hero .eyebrow {
    transform: none;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 22, 25, 0.92) 0%, rgba(4, 22, 25, 0.78) 100%),
      linear-gradient(180deg, rgba(4, 22, 25, 0.18) 0%, rgba(4, 22, 25, 0.88) 100%);
  }

  .section {
    padding: 68px 18px;
  }

  .cards-grid,
  .network-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .card span {
    margin-bottom: 28px;
  }

  .geo5-visual {
    min-height: 230px;
    padding: 40px 24px !important;
  }

  .industry-card,
  .industry-card img {
    min-height: 280px;
  }

  .experience-section {
    padding: 44px 18px;
    background:
      linear-gradient(180deg, rgba(3, 28, 40, 0.16), rgba(3, 28, 40, 0.78)),
      url("../images/global-network-light.png") center / cover no-repeat;
  }

  .experience-content {
    min-height: 430px;
    align-items: flex-end;
  }

  .experience-copy {
    width: 100%;
  }

  .cta-inner {
    display: grid;
  }

  .contact-form {
    padding: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer p,
  .site-footer a {
    grid-column: auto;
    justify-self: center;
  }

  .service-detail-hero {
    min-height: 590px;
    padding: 140px 18px 68px;
  }

  .service-detail-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .service-offer-grid,
  .process-grid,
  .service-list-grid,
  .standards-grid {
    grid-template-columns: 1fr;
  }

  .service-offer,
  .process-step {
    min-height: auto;
  }
}

/* Detailed corporate pages */
.spec-hero {
  min-height: 74vh;
  display: grid;
  align-items: end;
  padding: 168px 28px 86px;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.spec-hero .section-inner { width: min(1180px, 100%); }
.spec-hero h1 { max-width: 900px; margin: 10px 0 22px; font-size: clamp(3rem, 6vw, 6.2rem); line-height: .94; }
.spec-hero p:not(.eyebrow) { max-width: 760px; font-size: clamp(1.05rem, 1.8vw, 1.35rem); }
.experience-spec-hero { background-image: linear-gradient(90deg, rgba(3,25,31,.9), rgba(3,25,31,.32)), url("../images/project-tourism.png"); }
.network-spec-hero { background-image: linear-gradient(90deg, rgba(3,25,31,.92), rgba(3,25,31,.38)), url("../images/hero-consulting.png"); }
.contact-spec-hero { background-image: linear-gradient(90deg, rgba(3,25,31,.9), rgba(9,72,68,.48)), url("../images/commitment-bg.png"); }
.bexel-spec-hero { background-image: linear-gradient(90deg, rgba(3,18,25,.94), rgba(3,18,25,.38)), url("../images/service-bim.png"); }
.geo5-spec-hero { background-image: linear-gradient(90deg, rgba(3,25,31,.94), rgba(3,25,31,.32)), url("../images/software-geo5.png"); }

.page-lead { font-size: 1.2rem; line-height: 1.75; }
.section-heading-single { max-width: 820px; margin-bottom: 38px; }

/* Network page */
.connected-capacity-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #e7f0ed;
}

.connected-capacity-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("../images/global-network-light.png") center / cover no-repeat;
  opacity: .42;
  filter: saturate(.62) hue-rotate(112deg);
}

.connected-capacity-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(229, 241, 237, .9) 0%, rgba(226, 239, 235, .8) 52%, rgba(238, 244, 239, .88) 100%);
}

.connected-capacity-section .detail-layout {
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
}

.connected-capacity-section .page-lead {
  max-width: 690px;
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.55;
  color: #345d61;
}

/* Experience page */
.experience-intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(56px, 6vw, 76px);
  padding-bottom: clamp(42px, 4.5vw, 54px);
  background: #edf3f1;
}

.experience-intro::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("../images/project-infrastructure.png") 18% 52% / cover no-repeat;
  opacity: .14;
  filter: saturate(.7);
}

.experience-intro::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(238, 246, 244, .9) 0%, rgba(242, 247, 245, .84) 48%, rgba(250, 248, 241, .92) 100%);
}

.experience-intro .detail-layout {
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
}

.experience-intro .page-lead,
.experience-intro .page-lead p {
  font-size: clamp(1.25rem, 1.45vw, 1.5rem);
  line-height: 1.68;
}

.experience-metrics {
  padding-top: clamp(14px, 1.5vw, 22px);
  padding-bottom: clamp(44px, 4.5vw, 62px);
  background: #e6eeec;
}

.experience-metrics .metric-grid {
  gap: clamp(16px, 2vw, 24px);
}

.experience-metrics .metric {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 30px;
  border: 1px solid rgba(7, 72, 76, .16);
  border-top: 4px solid var(--teal);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 26px rgba(3, 31, 40, .07);
}

.experience-metrics .metric strong {
  margin-bottom: 8px;
  font-size: clamp(2.5rem, 3.5vw, 3.35rem);
  line-height: 1;
}

.experience-metrics .metric span {
  color: #435f64;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .035em;
}

.experience-global-section {
  padding-top: clamp(42px, 5vw, 64px);
  padding-bottom: clamp(42px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(3, 28, 40, .08), rgba(3, 28, 40, .22)),
    url("../images/global-network-light.png") center / cover no-repeat;
}

.experience-global-section .experience-content {
  min-height: clamp(430px, 38vw, 540px);
}

.experience-global-section .experience-copy {
  box-sizing: border-box;
  width: 100%;
  min-height: clamp(390px, 31vw, 460px);
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(36px, 5vw, 68px);
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(3, 28, 40, .34);
  box-shadow: 0 18px 50px rgba(2, 20, 27, .12);
  backdrop-filter: blur(1px);
}

.experience-global-heading h2 {
  max-width: 540px;
}

.experience-global-details {
  max-width: 690px;
  justify-self: end;
}

.experience-global-details > p:not(.experience-countries) {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 1.55vw, 1.55rem);
  line-height: 1.62;
  color: rgba(255, 255, 255, .88);
}

.experience-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 18px;
}

.experience-regions span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-size: clamp(.82rem, .9vw, .92rem);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.experience-global-section .experience-countries {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.15vw, 1.12rem) !important;
  line-height: 1.65;
  color: rgba(255, 255, 255, .68);
}

.participation-heading {
  max-width: 900px;
  margin-bottom: clamp(40px, 4.5vw, 58px);
}

.participation-section {
  padding-top: clamp(40px, 4vw, 54px);
  padding-bottom: clamp(72px, 7vw, 96px);
}

.participation-section .role-grid {
  gap: clamp(18px, 2vw, 28px);
}

.participation-section .role-item {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 210px;
  aspect-ratio: 1.2 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: clamp(24px, 2.4vw, 34px);
  color: #fff;
  font-size: 1.03rem;
  line-height: 1.35;
  text-align: center;
  background: #07333a;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.participation-section .role-item::before,
.participation-section .role-item::after {
  content: "";
  position: absolute;
  inset: 0;
}

.participation-section .role-item::before {
  z-index: -2;
  background-position: center;
  background-size: cover;
  transition: transform .45s ease;
}

.participation-section .role-item::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(3, 35, 41, .6), rgba(3, 28, 40, .86));
}

.participation-section .role-item:nth-child(1)::before { background-image: url("../images/service-management.png"); }
.participation-section .role-item:nth-child(2)::before { background-image: url("../images/service-design-engineering.jpg"); }
.participation-section .role-item:nth-child(3)::before { background-image: url("../images/service-engineering.png"); }
.participation-section .role-item:nth-child(4)::before { background-image: url("../images/service-bim-new.jpg"); }
.participation-section .role-item:nth-child(5)::before { background-image: url("../images/service-construction-management.jpg"); }
.participation-section .role-item:nth-child(6)::before { background-image: url("../images/service-quality-assurance.jpg"); }
.participation-section .role-item:nth-child(7)::before { background-image: url("../images/service-bi-digital.jpg"); }
.participation-section .role-item:nth-child(8)::before { background-image: url("../images/hero-consulting.png"); }

.participation-section .role-item > span {
  position: relative;
  z-index: 1;
}

.participation-section .role-item > span:last-child {
  color: #fff;
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .42);
}

.participation-section .role-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .36);
  box-shadow: 0 18px 38px rgba(3, 31, 40, .18);
}

.participation-section .role-item:hover::before {
  transform: scale(1.035);
}

.role-icon {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  align-self: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 50%;
  background: rgba(3, 28, 40, .34);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
  backdrop-filter: blur(3px);
}

.role-icon svg {
  display: block;
  flex: none;
  width: 35px !important;
  height: 35px !important;
  fill: none !important;
  stroke: currentColor !important;
}

.metric-grid, .role-grid, .evidence-grid, .profile-grid, .partner-grid, .product-grid, .contact-card-grid, .resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.metric, .role-item, .profile-card, .partner-card, .product-card, .contact-card, .resource-item {
  padding: 26px;
  border: 1px solid rgba(11, 84, 82, .16);
  background: rgba(246, 249, 248, 0.94);
}
.metric strong { display: block; color: var(--teal); font-size: 2.4rem; }
.metric span, .card-kicker { color: #52626b; font-size: .86rem; text-transform: uppercase; }
.content-band-soft { background: #eef3f2; }
.content-band-teal { background: #0b5553; color: #fff; }
.content-band-teal .eyebrow, .content-band-teal a { color: #ffe29b; }
.map-panel { min-height: 480px; display: grid; align-items: end; padding: 34px; background: linear-gradient(90deg, rgba(2,26,33,.18), rgba(2,26,33,.84)), url("../images/reach-global.png") center/cover no-repeat; color: #fff; }
.evidence-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.evidence-card { position: relative; min-height: 390px; overflow: hidden; color: #fff; }
.evidence-card img { width: 100%; height: 100%; position: absolute; object-fit: cover; }
.evidence-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(2,20,27,.92)); }
.evidence-card div { position: absolute; z-index: 1; inset: auto 24px 24px; }
.evidence-card h3 { margin: 8px 0; }

/* Selective project gallery */
.project-gallery-section {
  overflow: hidden;
  padding-bottom: clamp(30px, 3.5vw, 44px);
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 34px;
}

.project-filter {
  appearance: none;
  border: 1px solid rgba(10, 69, 77, .22);
  border-radius: 999px;
  background: #fff;
  color: #174d55;
  cursor: pointer;
  font: inherit;
  font-size: .82rem;
  font-weight: 700;
  padding: 10px 16px;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.project-filter:hover {
  border-color: #0c727d;
  transform: translateY(-1px);
}

.project-filter.is-active {
  border-color: #0c727d;
  background: #0c727d;
  color: #fff;
}

.project-filter:focus-visible,
.project-card-toggle:focus-visible {
  outline: 3px solid rgba(22, 159, 169, .42);
  outline-offset: 3px;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.project-card {
  min-width: 0;
  min-height: 460px;
  perspective: 1400px;
}

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

.project-card-toggle {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.project-card-inner {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  transform-style: preserve-3d;
  transition: transform .62s cubic-bezier(.2, .7, .2, 1), filter .25s ease;
}

.project-card:hover .project-card-inner {
  filter: drop-shadow(0 18px 24px rgba(2, 20, 27, .16));
}

.project-card.is-flipped .project-card-inner {
  transform: rotateY(180deg);
}

.project-card-face {
  display: flex;
  position: absolute;
  inset: 0;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.project-card-front {
  align-items: flex-end;
  background: #072c33;
}

.project-card-front::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 20, 27, .02) 38%, rgba(2, 20, 27, .92) 100%);
}

.project-card-front img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

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

.project-card-overlay {
  display: grid;
  position: relative;
  z-index: 1;
  width: 100%;
  gap: 7px;
  padding: 70px 28px 26px;
  color: #fff;
}

.project-card-overlay strong,
.project-card-back > strong {
  font-family: var(--font-heading, inherit);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.project-card-overlay small,
.project-card-back small {
  margin-top: 6px;
  color: rgba(255, 255, 255, .72);
  font-size: .75rem;
}

.project-card-back {
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  padding: 34px;
  background: linear-gradient(145deg, #07353d, #0a5962);
  color: #fff;
  transform: rotateY(180deg);
}

.project-card-back > span:not(.card-kicker):not(.project-card-tags) {
  color: rgba(255, 255, 255, .84);
  line-height: 1.58;
}

.project-card-area {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.project-card-area b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.project-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.project-card-tags i {
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  color: #fff;
  font-size: .7rem;
  font-style: normal;
  font-weight: 700;
  padding: 6px 9px;
}

.project-gallery-empty {
  margin: 32px 0 0;
  padding: 24px;
  background: rgba(12, 114, 125, .07);
  color: #174d55;
  text-align: center;
}
.profile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
#equipo,
#team {
  padding-top: clamp(54px, 5vw, 68px);
  border-top: 1px solid rgba(11, 84, 82, .24);
}
#equipo > .section-inner > .eyebrow,
#team > .section-inner > .eyebrow {
  font-size: clamp(.86rem, 1vw, .95rem);
  letter-spacing: .04em;
}
#equipo .profile-grid,
#team .profile-grid { margin-top: clamp(26px, 3vw, 38px); }
.profile-card {
  min-height: 295px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  grid-template-rows: auto auto 1fr;
  column-gap: 26px;
  align-items: start;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(3, 31, 40, .06);
}
.profile-photo {
  width: 210px;
  height: 210px;
  display: block;
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  margin: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 28%;
  box-shadow: 0 8px 22px rgba(3, 31, 40, .14);
}
.profile-card h3,
.profile-card p,
.profile-card small { grid-column: 1; }
.profile-details {
  grid-column: 1 / -1;
  grid-row: 4;
  margin: 22px 0 0;
  border-top: 1px solid rgba(11, 84, 82, .14);
}
.profile-details summary {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 14px 0 0 auto;
  border: 1px solid rgba(11, 84, 82, .28);
  border-radius: 50%;
  color: var(--teal);
  background: rgba(255, 255, 255, .72);
  cursor: pointer;
  list-style: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.profile-details summary::-webkit-details-marker { display: none; }
.profile-details summary span::before {
  content: "+";
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
}
.profile-details[open] summary span::before { content: "−"; }
.profile-details summary:hover,
.profile-details summary:focus-visible {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}
.profile-details summary:focus-visible {
  outline: 3px solid rgba(22, 159, 169, .3);
  outline-offset: 3px;
}
.profile-card .profile-bio {
  margin: 14px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 84, 82, .1);
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.65;
}
.profile-initials { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 24px; background: var(--teal); color: #fff; font-weight: 800; font-size: 1.25rem; }
.profile-card h3, .partner-card h3, .product-card h3, .contact-card h3 { margin: 0 0 8px; }
.profile-card a, .contact-card a { color: var(--teal); overflow-wrap: anywhere; }
.partner-grid, .product-grid, .contact-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.partner-grid { margin-top: clamp(42px, 5vw, 64px); }
.contact-card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.contact-channel-section h2 {
  margin-bottom: clamp(46px, 5vw, 72px);
}
.contact-flip-card {
  min-width: 0;
  min-height: 320px;
  perspective: 1200px;
}
.contact-card-inner {
  position: relative;
  width: 100%;
  min-height: 320px;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.2, .75, .25, 1);
}
.contact-flip-card.is-flipped .contact-card-inner {
  transform: rotateY(180deg);
}
.contact-card-face {
  position: absolute;
  inset: 0;
  width: 100%;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(11, 84, 82, .16);
  border-radius: 18px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 12px 32px rgba(3, 31, 40, .08);
}
.contact-card-front {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  background:
    radial-gradient(circle at 85% 12%, rgba(39, 151, 143, .11), transparent 34%),
    rgba(246, 249, 248, .98);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.contact-card-front:hover {
  border-color: rgba(11, 84, 82, .38);
  box-shadow: 0 18px 42px rgba(3, 31, 40, .13);
  transform: translateY(-3px);
}
.contact-card-front:focus-visible,
.contact-card-action:focus-visible,
.contact-card-return:focus-visible {
  outline: 3px solid #f1b82d;
  outline-offset: 4px;
}
.contact-card-image {
  width: 100%;
  height: 188px;
  display: block;
  margin-bottom: 24px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 8px 20px rgba(3, 31, 40, .1);
}
.contact-card-icon {
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(11, 84, 82, .18);
  border-radius: 50%;
  color: var(--teal);
  background: rgba(11, 84, 82, .06);
  font-size: 3.55rem;
  font-weight: 700;
  line-height: 1;
}
.contact-card-icon-brand img {
  width: 68px;
  height: 68px;
  display: block;
  object-fit: contain;
}
.contact-card-icon-whatsapp {
  background: rgba(37, 211, 102, .09);
  border-color: rgba(37, 211, 102, .28);
}
.contact-card-icon-linkedin {
  background: rgba(29, 140, 181, .09);
  border-color: rgba(29, 140, 181, .26);
}
.contact-card-icon-chat {
  position: relative;
  border-radius: 50% 50% 50% 18%;
  font-size: 1.25rem;
  letter-spacing: 2px;
}
.contact-card-title {
  margin-bottom: 9px;
  font-size: 1.2rem;
  font-weight: 800;
}
.contact-card-detail {
  color: var(--teal);
  overflow-wrap: anywhere;
}
.contact-card-hint {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: auto;
  padding-top: 26px;
  color: #52626b;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-card-back {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  transform: rotateY(180deg);
  color: #fff;
  cursor: pointer;
  background:
    radial-gradient(circle at 92% 7%, rgba(255, 226, 155, .18), transparent 36%),
    var(--teal);
}
.contact-card-kicker {
  margin-bottom: 12px;
  color: #ffe29b;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-card-back h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.25rem;
}
.contact-card-back-detail {
  display: block;
  margin-bottom: 14px;
  color: #ffe29b;
  font-size: .94rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}
.contact-card-back p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.55;
}
.contact-card-action {
  min-height: 44px;
  margin-top: auto;
  padding: 11px 16px;
  border-color: #ffe29b;
  color: #082f35;
  background: #ffe29b;
  font-size: .88rem;
}
.contact-card-action:hover {
  border-color: #fff;
  background: #fff;
}
.contact-social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.contact-social-actions .contact-card-action {
  margin-top: 0;
}
.contact-card-return {
  margin-top: 12px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, .72);
  background: transparent;
  font: inherit;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
}
.contact-card-return:hover {
  color: #fff;
}
.contact-message-copy {
  display: flex;
  flex-direction: column;
}
.contact-inline-address {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: block;
  width: min(100%, 440px);
  margin-top: clamp(38px, 5vw, 72px);
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid transparent;
  border-radius: 18px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  background:
    linear-gradient(90deg, rgba(3, 25, 31, .9), rgba(3, 25, 31, .62)),
    url("../images/contact-queretaro-arcos.png") center / cover no-repeat;
  box-shadow: 0 16px 36px rgba(3, 31, 40, .18);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.contact-inline-address::after {
  content: "↗";
  position: absolute;
  top: 22px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  color: #fff;
  background: rgba(3, 25, 31, .26);
  font-size: 1rem;
}
.contact-inline-address:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 226, 155, .78);
  box-shadow: 0 20px 44px rgba(3, 31, 40, .24);
}
.contact-inline-address:focus-visible {
  outline: 3px solid #ffe29b;
  outline-offset: 4px;
}
.contact-inline-address .card-kicker {
  margin: 0 0 10px;
  color: #ffe29b;
  font-weight: 800;
  letter-spacing: .1em;
}
.contact-inline-address h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}
.contact-inline-address address {
  color: rgba(255, 255, 255, .9);
  font-size: 1.04rem;
  font-style: normal;
  line-height: 1.7;
  text-shadow: 0 1px 16px rgba(0, 0, 0, .38);
}
.partner-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(3, 31, 40, .06);
}
.partner-logo-link {
  position: relative;
  width: 100%;
  height: clamp(240px, 22vw, 310px);
  display: grid;
  place-items: center;
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid rgba(11, 84, 82, .14);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(3, 31, 40, .06);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.partner-logo-link:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 84, 82, .4);
  box-shadow: 0 13px 26px rgba(3, 31, 40, .12);
}
.partner-logo-link:focus-visible {
  outline: 3px solid rgba(22, 159, 169, .42);
  outline-offset: 3px;
}
.partner-logo {
  width: 100%;
  height: clamp(240px, 22vw, 310px);
  display: block;
  box-sizing: border-box;
  margin: 0 auto 24px;
  padding: 22px;
  object-fit: contain;
  border: 1px solid rgba(11, 84, 82, .14);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(3, 31, 40, .06);
}
.partner-logo-link .partner-logo {
  width: calc(100% - 44px);
  height: calc(100% - 32px);
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
}
.partner-wordmark {
  width: 100%;
  height: 112px;
  display: grid;
  place-items: center;
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.02em;
  border-radius: 12px;
  border: 1px solid rgba(11, 84, 82, .12);
  background: #fff;
}
.partner-card h3 {
  margin-bottom: 0;
  padding-right: 42px;
  font-size: 1.05rem;
}
.partner-details {
  position: relative;
  width: 100%;
  margin-top: 0;
  border-top: 0;
}
.partner-details summary {
  display: grid;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-100%);
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--teal);
  cursor: pointer;
  font-size: 0;
  font-weight: 800;
  list-style: none;
}
.partner-details summary::-webkit-details-marker {
  display: none;
}
.partner-details summary span {
  width: auto;
  height: auto;
  display: inline-block;
  border-radius: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform .2s ease;
}
.partner-details[open] summary span {
  transform: rotate(45deg);
  background: transparent;
}
.partner-details summary:focus-visible {
  outline: 3px solid rgba(22, 159, 169, .38);
  outline-offset: 4px;
}
.partner-details p {
  margin: 18px 0 2px;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 84, 82, .14);
  color: #52666d;
  font-size: .92rem;
  line-height: 1.55;
}
.partner-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 16px;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}
.partner-link:hover { text-decoration: underline; }

.network-section-transition {
  position: relative;
  height: clamp(58px, 6vw, 88px);
  overflow: hidden;
  background:
    linear-gradient(176deg, #f8faf9 0%, #f8faf9 42%, #b7cdc8 42.5%, #d5e2de 50%, #edf0f0 58%);
}

.network-section-transition::after {
  content: "";
  position: absolute;
  width: min(460px, 56vw);
  height: 3px;
  right: 8vw;
  top: 46%;
  background: linear-gradient(90deg, transparent, rgba(11, 84, 82, .7), rgba(244, 197, 103, .92), transparent);
  transform: rotate(-4deg);
  transform-origin: right center;
}

.affiliation-section {
  padding-top: clamp(44px, 5vw, 72px);
  background: #edf0f0;
}

.affiliation-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.affiliation-card {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(3, 31, 40, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 16px 38px rgba(3, 31, 40, .07);
}

.affiliation-logo-link {
  min-height: 190px;
  display: grid;
  place-items: center;
  padding: 30px;
  border: 1px solid rgba(3, 31, 40, .1);
  border-radius: 20px;
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease;
}

.affiliation-logo-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(3, 31, 40, .1);
}

.affiliation-logo-link:focus-visible {
  outline: 3px solid rgba(202, 32, 38, .28);
  outline-offset: 4px;
}

.affiliation-logo-link img {
  width: min(100%, 300px);
  height: auto;
  display: block;
}

.affiliation-copy .card-kicker {
  margin: 0 0 14px;
  color: #66777d;
  letter-spacing: .08em;
}

.affiliation-copy > p:last-child {
  max-width: 720px;
  margin: 0;
  color: #4e6269;
  font-size: clamp(1.3rem, 1.9vw, 1.68rem);
  line-height: 1.55;
}

.product-card { min-height: 255px; }
.product-card ul { padding-left: 18px; }
.software-visual { display: grid; place-items: center; min-height: 420px; padding: 35px; background: #e8efee; }
.software-visual img { max-width: 100%; max-height: 470px; object-fit: contain; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-grid .field-wide { grid-column: 1 / -1; }
.contact-form select { width: 100%; padding: 13px; border: 1px solid rgba(3,31,40,.22); background: var(--surface); font: inherit; }
.location-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: stretch; }
.location-map { min-height: 360px; background: linear-gradient(rgba(8,83,78,.78), rgba(8,83,78,.78)), url("../images/reach-global.png") center/cover; }
.network-diagram { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; text-align: center; }
.network-diagram span { padding: 28px 14px; background: #0b5553; color: #fff; font-weight: 700; }
.compact-list { columns: 2; padding-left: 20px; }

/* Service pages v2 */
.service-page { background: #f4f7f6; }
.service-page .site-header { min-height: auto; }
.service-page .service-detail-hero {
  min-height: 720px;
  background-position: center;
}
.design-engineering-service-hero,
.design-service-hero,
.engineering-service-hero { background-image: url("../images/service-design-engineering.jpg"); }
.bim-service-hero { background-image: url("../images/service-bim-new.jpg"); }
.management-service-hero { background-image: url("../images/service-construction-management.jpg"); }
.human-service-hero { background-image: url("../images/service-human-capital.jpg"); }
.service-page .service-detail-hero .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #f4c96f;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-page .service-detail-hero .hero-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}
.service-page .service-detail-hero h1 { margin: 0; color: #fff; }
.service-page .service-detail-hero p { color: rgba(255,255,255,.82); }
.service-subnav {
  position: sticky;
  z-index: 10;
  top: 112px;
  border-bottom: 1px solid rgba(10,80,78,.14);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
}
.service-subnav-inner {
  display: flex;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.service-subnav a {
  flex: 0 0 auto;
  padding: 17px 0 14px;
  border-bottom: 3px solid transparent;
  color: #516267;
  font-size: .82rem;
  font-weight: 800;
}
.service-subnav a:hover { border-color: var(--gold); color: var(--teal); }
.service-lead {
  font-size: clamp(1.05rem, 1.2vw, 1.15rem) !important;
  line-height: 1.65;
}
.service-copy {
  display: grid;
  gap: 14px;
}
.service-copy p,
.service-intro-copy p {
  margin: 0;
  font-size: clamp(1.05rem, 1.2vw, 1.15rem);
  line-height: 1.65;
}
.service-page main .detail-layout > .service-copy,
.service-page main .detail-layout > .service-intro-copy {
  padding-top: clamp(34px, 3vw, 44px);
}
.service-page main .detail-layout > .dashboard-list,
.service-page main .detail-layout > .service-list-grid {
  margin-top: clamp(34px, 3vw, 44px);
}
.service-copy strong { color: var(--ink); }
.section-soft { background: #e8efed; }
.section-white { background: #fff; }
.section-dark { color: #fff; background: #082b31; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.72); }
.service-section-head { max-width: 800px; margin-bottom: 40px; }
.service-section-head h2 { margin-bottom: 16px; }
.service-section-head p { max-width: 700px; }
.specialty-grid,
.benefit-grid,
.application-grid,
.tool-grid,
.bim-dimension-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.specialty-card,
.application-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(8,80,78,.15);
  background: rgba(255,255,255,.86);
}
.specialty-card .card-number,
.application-card .card-number {
  display: block;
  margin-bottom: 42px;
  color: var(--clay);
  font-size: .78rem;
  font-weight: 800;
}
.specialty-card p, .application-card p { margin: 12px 0 0; font-size: .94rem; }
.benefit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.benefit-item {
  padding: 22px 0;
  border-top: 2px solid var(--gold);
}
.benefit-item strong { display: block; margin-bottom: 7px; color: inherit; }
.benefit-item p { margin: 0; }
.tool-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.tool-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tool-chip {
  display: grid;
  place-items: center;
  min-height: 100px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-weight: 800;
  text-align: center;
}
.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.process-line::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(255,255,255,.24);
}
.process-line .process-step { position: relative; min-height: 235px; }
.process-line .process-step span { background: #082b31; }
.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 36px;
  border: 1px dashed rgba(9,87,85,.42);
  background:
    linear-gradient(135deg, rgba(10,90,88,.06), rgba(200,154,74,.08)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(9,87,85,.035) 18px 19px);
  color: var(--teal);
  text-align: center;
}
.image-placeholder strong { display: block; font-size: 1.15rem; }
.image-placeholder span { display: block; margin-top: 8px; color: var(--muted); font-size: .9rem; }
.management-cycle-layout { align-items: center; }
.management-cycle-image {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(5, 42, 48, .13);
}
.management-cycle-image img {
  display: block;
  width: 100%;
  height: auto;
}
.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.visual-grid .image-placeholder { min-height: 300px; }
.bim-dimension-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.bim-dimension {
  min-height: 180px;
  padding: 24px;
  border-left: 4px solid var(--gold);
  background: #fff;
}
.bim-dimension strong { display: block; color: var(--teal); font-size: 1.55rem; }
.bim-dimension span { color: var(--muted); }
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.comparison-card { padding: 30px; background: #fff; }
.comparison-card.is-no { border-top: 4px solid var(--clay); }
.comparison-card.is-yes { border-top: 4px solid var(--teal); }
.comparison-card h3 {
  display: flex;
  align-items: center;
  gap: 14px;
}
.comparison-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}
.comparison-card.is-no .comparison-icon { color: #c83238; }
.comparison-card.is-yes .comparison-icon { color: #17865f; }
.comparison-card ul { margin: 22px 0 0; padding-left: 20px; color: var(--muted); }
.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.sector-list li {
  padding: 11px 15px;
  border: 1px solid rgba(9,87,85,.18);
  background: rgba(255,255,255,.66);
  color: var(--teal);
  font-size: .9rem;
  font-weight: 800;
}
.phase-tabs { display: flex; gap: 10px; margin: 34px 0 22px; }
.phase-tabs-five { align-items: stretch; }
.phase-tabs-five .phase-tab {
  padding: 15px 12px;
  font-size: .84rem;
  line-height: 1.35;
}
.phase-tab {
  flex: 1;
  padding: 18px;
  border: 1px solid rgba(9,87,85,.18);
  background: transparent;
  color: var(--teal);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.phase-tab.is-active { color: #fff; background: var(--teal); }
.phase-panel { display: none; padding: 34px; background: #fff; }
.phase-panel.is-active { display: grid; grid-template-columns: .7fr 1.3fr; gap: 34px; }
.phase-panel ul { margin: 0; padding-left: 20px; color: var(--muted); }
.phase-panel li + li { margin-top: 10px; }
.dashboard-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.dashboard-list li { padding: 15px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.service-page .cta-strip { background-image: linear-gradient(90deg, rgba(3,21,26,.9), rgba(3,21,26,.5)), url("../images/hero-consulting.png"); }

.service-page main section[id] {
  scroll-margin-top: 175px;
}

.methodology-timeline {
  position: relative;
  display: grid;
  gap: 22px;
  margin-top: 48px;
}

.methodology-timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 27px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--teal));
}

.methodology-stage {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.methodology-marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 5px solid #e8efed;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.methodology-stage-card {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(8, 80, 78, .14);
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 38px rgba(3, 31, 40, .06);
}

.methodology-stage:nth-child(even) .methodology-stage-card {
  border-left-color: var(--teal);
}

.methodology-stage-card h3 {
  margin: 8px 0 14px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.15;
}

.methodology-stage-card h4 {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.methodology-stage-card p {
  margin: 0;
}

.stage-kicker {
  color: var(--clay);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.methodology-stage-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.methodology-stage-card li {
  position: relative;
  padding-left: 18px;
}

.methodology-stage-card li::before {
  content: "";
  position: absolute;
  top: .68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

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

.sector-application-card {
  overflow: hidden;
  border: 1px solid rgba(8, 80, 78, .14);
  background: #fff;
  box-shadow: 0 12px 30px rgba(3, 31, 40, .06);
  transition: transform .22s ease, box-shadow .22s ease;
}

.sector-application-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(3, 31, 40, .12);
}

.sector-application-media {
  position: relative;
  height: 178px;
  overflow: hidden;
  background: #dbe6e3;
}

.sector-application-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 31, 40, .02), rgba(3, 31, 40, .56));
}

.sector-application-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.sector-application-card:hover img {
  transform: scale(1.04);
}

.sector-card-icon {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 50%;
  background: rgba(8, 80, 78, .9);
  color: #fff;
  backdrop-filter: blur(8px);
}

.sector-card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sector-application-card h3 {
  margin: 0;
  padding: 20px 22px 22px;
  font-size: 1.1rem;
}

.deliverable-list {
  padding: 6px 28px;
  border: 1px solid rgba(8, 80, 78, .14);
  background: rgba(255, 255, 255, .84);
}

.deliverable-list li {
  position: relative;
  padding-left: 26px;
}

.deliverable-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}

.bim-dimension-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.bim-dimension-grid-five .bim-dimension {
  min-height: 210px;
}

.bim-dimension-grid-five .bim-dimension strong {
  margin-bottom: 28px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.bim-workflow-graphic {
  margin: 42px 0 0;
}

.bim-workflow-image-frame {
  overflow-x: auto;
  border: 1px solid rgba(8, 80, 78, .14);
  background: #fff;
  box-shadow: 0 24px 60px rgba(3, 31, 40, .12);
  scrollbar-color: var(--teal) #e8efed;
  scrollbar-width: thin;
}

.bim-workflow-image-frame:focus-visible {
  outline: 3px solid rgba(8, 80, 78, .3);
  outline-offset: 4px;
}

.bim-workflow-image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.tool-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tool-platform-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tool-platform-card {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
}

.tool-platform-mark {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 14px;
  background: rgba(255, 255, 255, .1);
  color: #f4c96f;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.tool-platform-card h3 {
  margin: 2px 0 10px;
  font-size: 1.05rem;
}

.tool-platform-card p {
  margin: 0;
  font-size: .9rem;
}

.sector-application-grid-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1080px) {
  .service-subnav { top: 104px; }
  .specialty-grid, .application-grid, .bim-dimension-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sector-application-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tool-platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tool-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-line::before { display: none; }
}

@media (max-width: 640px) {
  .service-page .service-detail-hero { min-height: 650px; }
  .service-subnav { top: 92px; }
  .service-page main .detail-layout > .service-copy,
  .service-page main .detail-layout > .service-intro-copy {
    padding-top: 0;
  }
  .service-page main .detail-layout > .dashboard-list,
  .service-page main .detail-layout > .service-list-grid {
    margin-top: 0;
  }
  .specialty-grid, .benefit-grid, .application-grid, .bim-dimension-grid, .visual-grid, .comparison-grid, .tool-grid, .process-line { grid-template-columns: 1fr; }
  .sector-application-grid { grid-template-columns: 1fr; }
  .methodology-stage { grid-template-columns: 44px minmax(0, 1fr); gap: 14px; }
  .methodology-timeline::before { left: 21px; }
  .methodology-marker { width: 44px; height: 44px; border-width: 4px; font-size: .68rem; }
  .methodology-stage-card { grid-template-columns: 1fr; padding: 24px 20px; }
  .sector-application-media { height: 210px; }
  .deliverable-list { padding-inline: 20px; }
  .bim-workflow-image-frame img { width: 920px; max-width: none; }
  .tool-platform-grid { grid-template-columns: 1fr; }
  .tool-platform-card { min-height: auto; padding: 24px 20px; }
  .specialty-card, .application-card { min-height: auto; }
  .image-placeholder { min-height: 260px; }
  .phase-tabs { display: grid; }
  .phase-panel.is-active { grid-template-columns: 1fr; padding: 24px; }
}

@media (max-width: 1080px) {
  .metric-grid, .role-grid, .profile-grid, .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-grid, .contact-card-grid, .evidence-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .profile-grid { grid-template-columns: 1fr; }
  .connected-capacity-section .detail-layout { grid-template-columns: 1fr; }
  .affiliation-card { grid-template-columns: 1fr; }
  .experience-global-section .experience-copy {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .experience-global-details {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  .spec-hero { min-height: 620px; padding: 138px 18px 62px; }
  .spec-hero h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .metric-grid, .role-grid, .evidence-grid, .profile-grid, .partner-grid, .product-grid, .contact-card-grid, .resource-grid, .form-grid, .location-layout, .network-diagram { grid-template-columns: 1fr; }
  .form-grid .field-wide { grid-column: auto; }
  .evidence-card { min-height: 330px; }
  .compact-list { columns: 1; }
  .profile-card { display: block; min-height: 390px; }
  .profile-photo { width: 210px; height: 210px; margin: -10px auto 22px; }
  .profile-details { margin-top: 20px; }
  #equipo,
  #team {
    padding-top: 46px;
  }
  .project-gallery { grid-template-columns: 1fr; gap: 20px; }
  .project-card,
  .project-card-toggle,
  .project-card-inner { min-height: 430px; }
  .project-card-back { padding: 27px; gap: 12px; }
  .project-filters {
    flex-wrap: nowrap;
    margin-right: -18px;
    padding: 2px 18px 10px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .project-filters::-webkit-scrollbar { display: none; }
  .project-filter { flex: 0 0 auto; }
  .connected-capacity-section .page-lead { font-size: 1.28rem; }
  .affiliation-card { padding: 24px; }
  .affiliation-logo-link { min-height: 150px; padding: 22px; }
  .experience-intro .detail-layout { grid-template-columns: 1fr; }
  .experience-intro .page-lead,
  .experience-intro .page-lead p { font-size: 1.15rem; }
  .experience-intro { padding-top: 48px; padding-bottom: 38px; }
  .experience-metrics { padding-top: 16px; padding-bottom: 40px; }
  .experience-metrics .metric { min-height: 128px; }
  .experience-global-section { padding: 34px 18px; }
  .experience-global-section .experience-content { min-height: 0; }
  .experience-global-section .experience-copy {
    min-height: 0;
    width: 100%;
    padding: 28px 24px;
    gap: 26px;
    background: rgba(3, 28, 40, .42);
  }
  .experience-global-details > p:not(.experience-countries) {
    font-size: 1.12rem;
  }
  .experience-global-section .experience-countries {
    font-size: .96rem !important;
  }
  .participation-section { padding-top: 38px; padding-bottom: 64px; }
  .participation-heading { margin-bottom: 36px; }
  .participation-section .role-item {
    min-height: 180px;
    aspect-ratio: auto;
  }
  .contact-channel-section h2 {
    margin-bottom: 38px;
  }
  .contact-flip-card,
  .contact-card-inner {
    min-height: 330px;
  }
  .contact-card-face {
    padding: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-card-inner,
  .project-card-front img,
  .project-filter,
  .contact-card-inner,
  .contact-card-front,
  .contact-inline-address { transition: none; }
}

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

.geo5-page {
  background: #f5f6f2;
  background-image: none;
}

.geo5-page [id] {
  scroll-margin-top: 190px;
}

.geo5-hero {
  min-height: 760px;
  padding: 168px 20px 76px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(200, 154, 74, .24), transparent 28%),
    linear-gradient(128deg, #072f35 0%, #0b4e52 56%, #0a6768 100%);
}

.geo5-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: clamp(42px, 6vw, 80px);
  align-items: center;
}

.geo5-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: .95;
  letter-spacing: -.035em;
}

.geo5-hero-copy > p:not(.eyebrow, .geo5-disclaimer) {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.04rem, 1.6vw, 1.25rem);
}

.geo5-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 4px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.45);
  font-weight: 800;
}

.geo5-text-link:focus-visible,
.geo5-subnav a:focus-visible,
.geo5-solution-grid a:focus-visible,
.geo5-resource-grid a:focus-visible,
.geo5-program-consult:focus-visible,
.geo5-faq button:focus-visible,
.geo5-modal-close:focus-visible {
  outline: 3px solid rgba(200,154,74,.72);
  outline-offset: 3px;
}

.geo5-disclaimer {
  max-width: 650px;
  margin: 32px 0 0;
  color: rgba(255,255,255,.62);
  font-size: .84rem;
}

.geo5-hero-media {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 34px 70px rgba(0,0,0,.28);
}

.geo5-hero-media > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  object-fit: contain;
  background: #eef3f2;
}

.geo5-hero-media figcaption {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 8px 4px;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
}

.geo5-hero-media figcaption img {
  width: 82px;
  height: 32px;
  object-fit: contain;
  object-position: left center;
}

.geo5-subnav {
  position: sticky;
  z-index: 15;
  top: 124px;
  border-bottom: 1px solid rgba(8,80,78,.15);
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 24px rgba(7,47,53,.08);
  backdrop-filter: blur(14px);
}

.geo5-subnav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 58px;
}

.geo5-subnav a {
  padding: 9px 12px;
  border-radius: 4px;
  color: #41565b;
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
}

.geo5-subnav a:hover {
  color: var(--teal);
  background: #edf3f2;
}

.geo5-subnav .geo5-subnav-cta {
  margin-left: 6px;
  color: #fff;
  background: var(--teal);
}

.geo5-trust {
  padding: 26px 20px;
  color: #fff;
  background: #082f35;
}

.geo5-trust ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.geo5-trust li {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 54px;
  padding: 4px 20px;
  border-right: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.35;
}

.geo5-trust li:last-child { border-right: 0; }
.geo5-trust li span {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200,154,74,.58);
  border-radius: 50%;
  color: #e9c882;
  font-size: .67rem;
}

.geo5-section-heading {
  max-width: 850px;
  margin-bottom: 46px;
}

.geo5-section-heading h2 { margin-bottom: 22px; }
.geo5-section-heading > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 1.06rem;
}

.geo5-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.geo5-benefit-grid article,
.geo5-support-grid article {
  min-height: 235px;
  padding: 30px;
  border: 1px solid #d8e2df;
  border-radius: 10px;
  background: rgba(255,255,255,.78);
}

.geo5-benefit-grid article > span,
.geo5-license-grid article > span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--teal);
  font-size: .75rem;
  font-weight: 900;
}

.geo5-benefit-grid h3,
.geo5-support-grid h3,
.geo5-license-grid h3 { margin-bottom: 12px; font-size: 1.14rem; }
.geo5-benefit-grid p,
.geo5-support-grid p { margin-bottom: 0; font-size: .92rem; }

.geo5-solutions { background: #e5ece9; }
.geo5-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.geo5-solution-grid article {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 30px;
  border: 1px solid rgba(8,80,78,.14);
  border-radius: 10px;
  background: #f8faf8;
  box-shadow: 0 12px 30px rgba(8,48,50,.05);
}

.geo5-line-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border: 1px solid rgba(12,92,97,.26);
  border-radius: 12px;
  color: var(--teal);
  font-size: 1.25rem;
  font-weight: 800;
}

.geo5-solution-grid h3 { margin-bottom: 12px; font-size: 1.18rem; }
.geo5-solution-grid p { font-size: .92rem; }
.geo5-solution-grid ul {
  display: grid;
  gap: 4px;
  margin: 2px 0 26px;
  padding-left: 19px;
  color: #52666a;
  font-size: .84rem;
}

.geo5-solution-grid a,
.geo5-resource-grid a {
  margin-top: auto;
  color: var(--teal);
  font-size: .86rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(12,92,97,.32);
  text-underline-offset: 5px;
}

.geo5-workflow-section {
  color: #fff;
  background: #072f35;
}

.geo5-workflow-section h2 { color: #fff; }
.geo5-workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.geo5-workflow::before {
  content: "";
  position: absolute;
  top: 25px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: linear-gradient(90deg, rgba(200,154,74,.2), #c89a4a, rgba(200,154,74,.2));
}

.geo5-workflow li { position: relative; }
.geo5-workflow li > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border: 1px solid rgba(200,154,74,.72);
  border-radius: 50%;
  color: #f0cf8b;
  background: #072f35;
  font-size: .74rem;
  font-weight: 900;
}

.geo5-workflow h3 { min-height: 2.6em; margin-bottom: 12px; color: #fff; }
.geo5-workflow p { color: rgba(255,255,255,.62); font-size: .84rem; }

.geo5-bim { background: #f8faf8; }
.geo5-bim-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}

.geo5-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  overflow: hidden;
  padding: 36px;
  border: 1px dashed rgba(255,255,255,.34);
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(150deg, transparent 42%, rgba(200,154,74,.23) 42.5% 49%, transparent 49.5%),
    linear-gradient(25deg, rgba(12,92,97,.4) 22%, transparent 22.5%),
    linear-gradient(145deg, #112f36, #47635f);
}

.geo5-placeholder::before,
.geo5-placeholder::after {
  content: "";
  position: absolute;
  width: 76%;
  height: 38%;
  border: 1px solid rgba(255,255,255,.13);
  transform: skewY(-9deg);
}
.geo5-placeholder::before { top: 14%; left: -9%; }
.geo5-placeholder::after { top: 32%; right: -12%; }
.geo5-placeholder span,
.geo5-placeholder strong,
.geo5-placeholder small { position: relative; z-index: 1; }
.geo5-placeholder span { margin-bottom: 10px; color: #efcc82; font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.geo5-placeholder strong { font-size: clamp(1.7rem, 3vw, 2.8rem); }
.geo5-placeholder small { color: rgba(255,255,255,.66); }
.geo5-bim-grid h2 { margin-bottom: 24px; }
.geo5-bim-grid > div:last-child > p { font-size: 1rem; }

.geo5-check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}
.geo5-check-list li { position: relative; padding-left: 28px; color: #41575a; font-size: .92rem; }
.geo5-check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.geo5-format-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.geo5-format-list span,
.geo5-program-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(12,92,97,.16);
  border-radius: 999px;
  color: var(--teal);
  background: #eaf1ef;
  font-size: .68rem;
  font-weight: 900;
}

.geo5-outline-button {
  color: var(--teal);
  border-color: rgba(12,92,97,.32);
  background: transparent;
}
.geo5-outline-button:hover { color: #fff; background: var(--teal); }

.geo5-programs { background: #eef2ef; }
.geo5-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.geo5-filter {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(12,92,97,.2);
  border-radius: 999px;
  color: #486065;
  background: transparent;
  font: inherit;
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
}
.geo5-filter:hover,
.geo5-filter.is-active { color: #fff; border-color: var(--teal); background: var(--teal); }
.geo5-filter:focus-visible { outline: 3px solid rgba(12,92,97,.24); outline-offset: 2px; }

.geo5-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.geo5-program-card {
  overflow: hidden;
  border: 1px solid rgba(8,80,78,.13);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(8,48,50,.05);
}

.geo5-program-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(165deg, transparent 40%, rgba(200,154,74,.25) 40.5% 46%, transparent 46.5%),
    linear-gradient(145deg, #0b3d44, #607875);
}
.geo5-program-placeholder span { color: #ebc879; font-size: .7rem; font-weight: 900; }
.geo5-program-placeholder strong { font-size: 1.35rem; }
.geo5-program-card-body { display: flex; flex-direction: column; min-height: 250px; padding: 24px; }
.geo5-program-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.geo5-program-card h3 { margin-bottom: 10px; }
.geo5-program-card p { margin-bottom: 22px; font-size: .87rem; }
.geo5-program-consult {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: 12px 0 0;
  border: 0;
  border-top: 1px solid #e1e7e5;
  color: var(--teal);
  background: transparent;
  font: inherit;
  font-size: .82rem;
  font-weight: 900;
  cursor: pointer;
}

.geo5-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-top: 28px;
  padding: 34px;
  border-radius: 10px;
  color: #fff;
  background: #0b454a;
}
.geo5-help h3 { margin-bottom: 8px; color: #fff; font-size: 1.35rem; }
.geo5-help p { max-width: 700px; margin: 0; color: rgba(255,255,255,.7); }
.geo5-help .button { flex: 0 0 auto; }

.geo5-licensing { background: #fff; }
.geo5-license-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.geo5-license-grid article {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 34px;
  border: 1px solid #d6e0de;
  border-radius: 10px;
}
.geo5-license-grid article:nth-child(2) { border-top: 4px solid var(--gold); }
.geo5-license-grid p { margin-bottom: 28px; }
.geo5-license-grid .button { align-self: flex-start; margin-top: auto; }
.geo5-license-note {
  margin: 30px 0 0;
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  background: #edf3f1;
}

.geo5-artieda {
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(200,154,74,.17), transparent 32%),
    #072f35;
}
.geo5-artieda h2,
.geo5-artieda h3 { color: #fff; }
.geo5-artieda .geo5-section-heading p:last-child,
.geo5-artieda .geo5-support-grid p { color: rgba(255,255,255,.65); }
.geo5-support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}
.geo5-support-grid article {
  min-height: 230px;
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.geo5-support-grid article::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 42px;
  background: var(--gold);
}

.geo5-resources { background: #e5ece9; }
.geo5-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.geo5-resource-grid article {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 32px;
  border: 1px solid rgba(8,80,78,.12);
  border-radius: 10px;
  background: #f8faf8;
}
.geo5-resource-grid article > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 32px;
  border: 1px solid rgba(12,92,97,.2);
  border-radius: 50%;
  color: var(--teal);
  font-size: .65rem;
  font-weight: 900;
}
.geo5-resource-grid h3 { margin-bottom: 12px; }

.geo5-faq-section { background: #f8faf8; }
.geo5-faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, .65fr) minmax(0, 1.35fr);
  gap: clamp(42px, 8vw, 100px);
  align-items: start;
}
.geo5-faq article { border-top: 1px solid #cedbd8; }
.geo5-faq article:last-child { border-bottom: 1px solid #cedbd8; }
.geo5-faq h3 { margin: 0; }
.geo5-faq button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 24px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.geo5-faq button span { color: var(--teal); font-size: 1.5rem; transition: transform .2s ease; }
.geo5-faq button[aria-expanded="true"] span { transform: rotate(45deg); }
.geo5-faq [role="region"] { padding: 0 45px 20px 0; }
.geo5-faq [role="region"] p { margin: 0; }

.geo5-contact {
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(45,158,155,.2), transparent 30%),
    #061f27;
}
.geo5-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(520px, 1.25fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
}
.geo5-contact h2 { color: #fff; margin-bottom: 24px; }
.geo5-contact-layout > div > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.geo5-contact-detail {
  display: grid;
  gap: 5px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.geo5-contact-detail strong { color: #eccb84; }
.geo5-contact-detail a { color: rgba(255,255,255,.78); }
.geo5-contact-form { background: #f4f7f5; }
.geo5-contact-form select {
  border-radius: 6px;
  background: var(--surface);
}
.geo5-checkbox {
  display: flex !important;
  grid-template-columns: none;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px !important;
}
.geo5-checkbox input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 3px; }
.geo5-privacy { margin: 0; color: #657579 !important; font-size: .77rem !important; }

.geo5-modal[hidden] { display: none; }
.geo5-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}
.geo5-modal-backdrop { position: absolute; inset: 0; background: rgba(3,25,31,.78); backdrop-filter: blur(5px); }
.geo5-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 42px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 40px 100px rgba(0,0,0,.32);
}
.geo5-modal-dialog h2 { margin-bottom: 18px; font-size: clamp(2rem, 5vw, 3rem); }
.geo5-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #edf2f0;
  font-size: 1.5rem;
  cursor: pointer;
}
.geo5-modal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.geo5-modal-open { overflow: hidden; }

@media (max-width: 1080px) {
  .geo5-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr); gap: 36px; }
  .geo5-subnav { top: 124px; }
  .geo5-subnav-inner { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .geo5-subnav-inner::-webkit-scrollbar { display: none; }
  .geo5-trust ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .geo5-trust li:nth-child(2) { border-right: 0; }
  .geo5-trust li:nth-child(-n+2) { padding-bottom: 14px; }
  .geo5-benefit-grid,
  .geo5-solution-grid,
  .geo5-program-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .geo5-workflow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .geo5-workflow::before { display: none; }
  .geo5-support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .geo5-contact-layout { grid-template-columns: .8fr 1.2fr; }
}

@media (max-width: 820px) {
  .geo5-page [id] { scroll-margin-top: 160px; }
  .geo5-hero { min-height: 0; padding-top: 152px; }
  .geo5-hero-grid,
  .geo5-bim-grid,
  .geo5-faq-layout,
  .geo5-contact-layout { grid-template-columns: 1fr; }
  .geo5-hero-media { max-width: 650px; }
  .geo5-bim-grid { gap: 48px; }
  .geo5-placeholder { min-height: 420px; }
  .geo5-workflow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .geo5-license-grid,
  .geo5-resource-grid { grid-template-columns: 1fr; }
  .geo5-license-grid article,
  .geo5-resource-grid article { min-height: 0; }
  .geo5-faq-layout { gap: 34px; }
}

@media (max-width: 640px) {
  .geo5-page [id] { scroll-margin-top: 145px; }
  .geo5-hero { padding: 135px 18px 56px; }
  .geo5-hero-copy h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .geo5-hero-copy > p:not(.eyebrow, .geo5-disclaimer) { font-size: 1rem; }
  .geo5-hero-media { padding: 8px; }
  .geo5-hero-media figcaption { align-items: flex-start; flex-direction: column; }
  .geo5-hero .hero-actions { align-items: stretch; flex-direction: column; }
  .geo5-hero .button,
  .geo5-text-link { width: 100%; }
  .geo5-subnav { top: 108px; }
  .geo5-subnav-inner { min-height: 52px; padding: 0 18px; }
  .geo5-subnav a { flex: 0 0 auto; }
  .geo5-trust ul { grid-template-columns: 1fr; }
  .geo5-trust li {
    padding: 11px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .geo5-trust li:last-child { border-bottom: 0; }
  .geo5-section-heading { margin-bottom: 34px; }
  .geo5-benefit-grid,
  .geo5-solution-grid,
  .geo5-program-grid,
  .geo5-workflow,
  .geo5-support-grid { grid-template-columns: 1fr; }
  .geo5-benefit-grid article,
  .geo5-support-grid article { min-height: 0; padding: 25px; }
  .geo5-benefit-grid article > span { margin-bottom: 28px; }
  .geo5-solution-grid article { min-height: 0; padding: 25px; }
  .geo5-workflow li { display: grid; grid-template-columns: 52px minmax(0,1fr); column-gap: 16px; }
  .geo5-workflow li > span { grid-row: 1 / 3; }
  .geo5-workflow h3 { min-height: 0; }
  .geo5-workflow p { grid-column: 2; }
  .geo5-placeholder { min-height: 340px; padding: 25px; }
  .geo5-filters {
    flex-wrap: nowrap;
    margin-right: -18px;
    padding-right: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .geo5-filters::-webkit-scrollbar { display: none; }
  .geo5-filter { flex: 0 0 auto; }
  .geo5-help { align-items: stretch; flex-direction: column; padding: 26px; }
  .geo5-help .button { width: 100%; }
  .geo5-license-grid article { padding: 27px; }
  .geo5-support-grid article::before { margin-bottom: 28px; }
  .geo5-faq [role="region"] { padding-right: 0; }
  .geo5-modal-dialog { padding: 34px 24px 26px; }
  .geo5-modal-actions { align-items: stretch; flex-direction: column; }
  .geo5-contact-form { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .geo5-page { scroll-behavior: auto; }
  .geo5-faq button span { transition: none; }
}
