:root {
  --ink: #04043a;
  --muted: #60627a;
  --line: #e1e3ec;
  --brand: #04043a;
  --brand-2: #d87939;
  --paper: #f7f7fb;
  --white: #fff;
  --steel: #74778b;
  --shadow: 0 18px 50px rgba(4, 4, 58, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

img { max-width: 100%; height: auto; }

.site-navbar {
  min-height: 94px;
  background: rgba(2, 2, 38, .98);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background .2s ease;
}

.site-navbar.is-scrolled { box-shadow: 0 12px 32px rgba(2, 2, 38, .22); }

.navbar-brand img {
  width: 214px;
  display: block;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: none !important;
}

.navbar-toggler-icon { filter: invert(1); }

.nav-link {
  position: relative;
  color: var(--white);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 2.1rem .85rem !important;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: 1.35rem;
  height: 3px;
  background: var(--brand-2);
  opacity: 0;
  transform: scaleX(.7);
  transition: opacity .2s ease, transform .2s ease;
}

.site-navbar .navbar-nav .nav-link,
.site-navbar .navbar-nav .nav-link.active,
.site-navbar .navbar-nav .nav-link.show,
.site-navbar .navbar-nav .nav-link:focus,
.site-navbar .navbar-nav .nav-link:hover {
  color: var(--white);
}

.nav-link.active::after,
.nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.btn-brand,
.btn-outline-brand,
.btn-whatsapp {
  border-radius: 4px;
  font-weight: 800;
  padding: .82rem 1.05rem;
}

.btn-brand {
  color: var(--white);
  background: var(--brand);
  border: 1px solid var(--brand);
}

.btn-brand:hover { color: var(--white); background: #020226; border-color: #020226; }

.btn-outline-brand {
  color: var(--brand);
  border: 1px solid rgba(18, 50, 43, .32);
  background: transparent;
}

.btn-outline-brand:hover { color: var(--white); background: var(--brand); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .48rem;
  color: var(--white);
  background: linear-gradient(180deg, #ff641b 0%, #e94e05 100%);
  border: 1px solid #ff641b;
  box-shadow: 0 10px 22px rgba(216, 121, 57, .2);
  text-transform: uppercase;
  font-size: .78rem;
}

.btn-whatsapp:hover {
  color: var(--white);
  background: #d87939;
  border-color: #d87939;
}

main { padding-top: 94px; }

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #04043a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 4, 58, .9) 0%, rgba(4, 4, 58, .72) 42%, rgba(4, 4, 58, .12) 100%), url("../img/hero-engineering.webp") center/cover no-repeat;
}

.hero .container { position: relative; z-index: 1; padding-block: 6rem; }

.eyebrow {
  color: var(--brand-2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 6vw, 5.75rem);
  font-weight: 900;
}

.fw-black { font-weight: 900; }

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.section { padding: 5rem 0; }

.section-alt { background: var(--white); }

.section-head { max-width: 760px; margin-bottom: 2.5rem; }

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
}

.section-head p { color: var(--muted); font-size: 1.05rem; }

.metric {
  border-top: 2px solid var(--brand-2);
  padding-top: 1rem;
}

.metric strong { display: block; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; }

.metric span { color: var(--muted); font-weight: 700; }

.service-card, .project-card, .info-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(4, 4, 58, .04);
}

.service-card h3, .project-card h3, .info-card h3 {
  font-size: 1.18rem;
  font-weight: 900;
}

.service-card p, .project-card p, .info-card p, .text-muted-custom { color: var(--muted); }

.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--brand);
  background: #f2f2f8;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 900;
}

.split-band {
  background: var(--brand);
  color: var(--white);
}

.split-band p { color: rgba(255, 255, 255, .78); }

.process-step {
  position: relative;
  padding-left: 4.4rem;
  min-height: 70px;
}

.process-step span {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--brand-2);
  border-radius: 50%;
  font-weight: 900;
}

.page-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 0;
  background: linear-gradient(135deg, #04043a 0%, #11115f 62%, #d87939 180%);
  color: var(--white);
}

.page-hero h1 { font-size: clamp(2.25rem, 5vw, 3.8rem); }

.page-hero p { max-width: 760px; color: rgba(255, 255, 255, .8); font-size: 1.12rem; }

.internal-hero {
  min-height: 420px;
}

.image-hero {
  position: relative;
  overflow: hidden;
  background: #04043a;
}

.image-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 2, 38, .96) 0%, rgba(2, 2, 38, .82) 38%, rgba(2, 2, 38, .36) 64%, rgba(2, 2, 38, .08) 100%),
    var(--hero-image) center right / cover no-repeat;
}

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

.obras-hero {
  --hero-image: url("../img/banner-obras-servicos.webp");
}

.services-hero {
  --hero-image: url("../img/banner-servicos.webp");
}

.governanca-hero {
  --hero-image: url("../img/banner-governanca.webp");
}

.carreiras-hero {
  --hero-image: url("../img/banner-carreiras.webp");
}

.contato-hero {
  --hero-image: url("../img/banner-contato.webp");
}

.privacy-hero,
.lgpd-hero {
  --hero-image: url("../img/banner-lgpd.png");
}

.table-clean {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
}

.table-clean th, .table-clean td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.table-clean th { color: var(--brand); width: 32%; }

.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-control, .form-select {
  border-radius: 4px;
  border-color: var(--line);
  padding: .82rem .95rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 .2rem rgba(217, 164, 65, .18);
}

.site-footer {
  background: #020226;
  color: rgba(255, 255, 255, .76);
  padding: 3.25rem 0 1.3rem;
}

.footer-logo {
  width: 174px;
  padding: 0;
  background: transparent;
}

.site-footer h2 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, .76);
  margin: .42rem 0;
}

.site-footer a:hover { color: var(--brand-2); }

.footer-address {
  margin-top: .5rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
}

.social-links {
  display: flex;
  gap: .75rem;
  align-items: center;
}

.social-links a,
.social-link-pending {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.social-link-pending {
  color: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 6px;
  cursor: not-allowed;
}

.social-links a:hover {
  border-color: var(--brand-2);
  background: var(--brand-2);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .9rem;
}

.footer-bottom span:last-child { display: flex; gap: 1rem; }

.home-page {
  background: var(--white);
}

.home-hero {
  position: relative;
  min-height: 374px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: #020226;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/banner-home-preserve-right.webp") right center / auto 100% no-repeat;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 2, 38, 1) 0%, rgba(2, 2, 38, 1) 38%, rgba(2, 2, 38, .76) 46%, rgba(2, 2, 38, .38) 56%, rgba(2, 2, 38, .12) 66%, rgba(2, 2, 38, 0) 78%),
    radial-gradient(circle at left center, rgba(4, 4, 58, .25), transparent 60%);
  pointer-events: none;
}

.home-hero .container {
  position: relative;
  z-index: 2;
}

.home-hero-copy {
  width: min(38vw, 680px);
  max-width: 680px;
  padding: 3.5rem 0 3.25rem;
}

.home-hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.55rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.home-hero h1 span {
  display: block;
  color: #ff5b12;
}

.home-hero p {
  max-width: 560px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 1.1rem;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 4px;
  background: rgba(2, 2, 38, .2);
  font-weight: 900;
  text-transform: uppercase;
  padding: .82rem 1.15rem;
}

.btn-ghost-light:hover {
  color: var(--brand);
  background: var(--white);
}

.home-section {
  padding: 2.7rem 0;
}

.home-kicker {
  display: block;
  margin-bottom: .45rem;
  color: var(--brand-2);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-recruitment {
  color: var(--white);
  background: var(--brand);
  border-top: 3px solid var(--brand-2);
}

.home-recruitment-inner {
  display: flex;
  min-height: 176px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
}

.home-recruitment h2 {
  margin: 0 0 .35rem;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 900;
}

.home-recruitment p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 1.05rem;
}

.home-recruitment .btn {
  flex: 0 0 auto;
}

.home-title {
  text-align: center;
  margin-bottom: 1.6rem;
}

.home-title h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--brand);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
}

.home-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -.55rem;
  width: 48px;
  height: 3px;
  transform: translateX(-50%);
  background: var(--brand-2);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.home-service-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(4, 4, 58, .08);
  text-align: center;
}

.home-service-card .line-icon {
  width: 54px;
  height: 54px;
  margin: 1.35rem auto .9rem;
}

.home-card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 1.1rem auto .7rem;
  color: var(--brand);
  border-bottom: 3px solid var(--brand-2);
  font-weight: 900;
  font-size: 1.4rem;
}

.home-service-card h3 {
  min-height: 42px;
  margin: 0 .9rem .55rem;
  color: var(--brand);
  font-size: .98rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-service-card p {
  margin: 0;
  padding: 0 1rem 1.35rem;
  color: #151933;
  font-size: .86rem;
}

.home-service-card img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.home-feature {
  padding: 4.5rem 0;
  background: #f7f7fa;
}

.home-feature + .home-feature {
  background: var(--white);
}

.home-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.home-feature-grid-reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
}

.home-feature-grid > img {
  width: 100%;
  aspect-ratio: 1.72;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(4, 4, 58, .13);
}

.home-feature-copy {
  max-width: 590px;
}

.home-feature-copy h2 {
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
  font-weight: 900;
}

.home-feature-copy p {
  margin: 0 0 1.5rem;
  color: #20243d;
  font-size: 1.02rem;
}

.home-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.home-projects {
  padding-top: 1.4rem;
  background: linear-gradient(180deg, #fff 0%, #f7f7fb 100%);
}

.home-project-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(4, 4, 58, .08);
}

.home-project-card img {
  width: 100%;
  aspect-ratio: 1.88;
  object-fit: cover;
}

.home-project-body {
  padding: 1rem;
}

.home-project-body h3 {
  margin: 0 0 .65rem;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

.home-project-body p {
  margin: 0 0 .7rem;
  color: #20243d;
  font-size: .86rem;
}

.home-project-body .project-place {
  color: var(--brand);
  font-weight: 700;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .25rem .7rem;
  border-radius: 4px;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-done {
  color: #17652b;
  background: #ecf8ef;
  border: 1px solid #b7dfc0;
}

.status-progress {
  color: #0e4b9b;
  background: #edf5ff;
  border: 1px solid #b8d7ff;
}

.home-dark-cta {
  min-width: 245px;
  text-transform: uppercase;
}

.home-stats {
  padding: 2.35rem 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 2, 38, .97), rgba(4, 4, 58, .94)),
    url("../img/home-cta-bg.webp") center / cover no-repeat;
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-stats-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  min-height: 74px;
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, .24);
}

.home-stats-grid > div:last-child {
  border-right: 0;
}

.home-stats-grid strong {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.home-stats-grid span {
  max-width: 140px;
  color: rgba(255, 255, 255, .92);
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-process {
  background: var(--white);
}

.home-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.home-process-step {
  position: relative;
  text-align: center;
}

.home-process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 29px;
  right: -17px;
  color: var(--brand);
  font-size: 1.8rem;
}

.home-process-step span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto .9rem;
  color: var(--brand-2);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(4, 4, 58, .08);
  font-size: 1.4rem;
  font-weight: 900;
}

.home-process-step h3 {
  margin: 0 0 .45rem;
  color: var(--brand);
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-process-step p {
  max-width: 180px;
  margin: 0 auto;
  color: #20243d;
  font-size: .84rem;
}

.home-final-cta {
  padding: 0 0 2rem;
  background: var(--white);
}

.home-final-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 3rem;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 2, 38, .98) 0%, rgba(4, 4, 58, .88) 58%, rgba(4, 4, 58, .58) 100%),
    url("../img/home-cta-bg.webp") center / cover no-repeat;
}

.home-final-box h2 {
  max-width: 520px;
  margin: 0 0 .7rem;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 900;
  text-transform: uppercase;
}

.home-final-box p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
}

.home-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.about-page {
  background: var(--white);
}

.about-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #020226;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 2, 38, .96) 0%, rgba(2, 2, 38, .82) 40%, rgba(2, 2, 38, .38) 64%, rgba(2, 2, 38, .08) 100%),
    url("../img/banner-quem-somos-construcao.webp") center right / cover no-repeat;
}

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

.about-hero h1 {
  max-width: 600px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.8rem);
  line-height: 1.14;
}

.about-hero p {
  max-width: 560px;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 1.08rem;
}

.about-section {
  padding: 3rem 0;
}

.about-history {
  padding-top: 4rem;
}

.section-label {
  width: 36px;
  height: 3px;
  margin-bottom: 1rem;
  background: var(--brand-2);
}

.about-section h2 {
  margin-bottom: 1.35rem;
  color: var(--brand);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 900;
  text-transform: uppercase;
}

.about-section p {
  color: #272b44;
}

.about-history-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(4, 4, 58, .1);
}

.about-mission-section {
  padding: 1rem 0 2.5rem;
}

.about-mission-card {
  display: grid;
  grid-template-columns: 1fr 190px 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem 4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #f5f5f8 100%);
  box-shadow: 0 14px 34px rgba(4, 4, 58, .06);
}

.about-mission-card article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 1rem;
}

.about-mission-card h3 {
  align-self: center;
  margin: 0;
  color: var(--brand);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-mission-card p {
  grid-column: 2;
  margin: .55rem 0 0;
  color: #272b44;
}

.about-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #ff5b12;
  font-size: 2rem;
  font-weight: 900;
}

.about-logo-mark {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(4, 4, 58, .1);
}

.about-logo-mark img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

.about-values {
  padding-top: 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
}

.about-values-grid article {
  min-height: 190px;
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.about-values-grid article:last-child {
  border-right: 0;
}

.about-values-grid span {
  display: block;
  margin-bottom: .85rem;
  color: #ff5b12;
  font-size: 2.5rem;
  line-height: 1;
}

.about-values-grid h3 {
  margin: 0 0 .65rem;
  color: var(--brand);
  font-size: .98rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-values-grid p {
  margin: 0;
  color: #272b44;
  font-size: .9rem;
}

.about-presence {
  background: linear-gradient(180deg, #fff 0%, #f7f7fb 100%);
}

.about-map {
  width: min(100%, 345px);
  object-fit: contain;
}

.about-region-list {
  display: grid;
  gap: 1.05rem;
  margin: 0;
  padding: 0 0 0 2rem;
  border-left: 1px solid var(--line);
  list-style: none;
}

.about-region-list li {
  position: relative;
}

.about-region-list li::before {
  content: "⌖";
  position: absolute;
  left: -1.75rem;
  top: 0;
  color: #ff5b12;
  font-weight: 900;
}

.about-region-list strong {
  display: block;
  color: #ff5b12;
  font-size: .9rem;
  text-transform: uppercase;
}

.about-region-list span {
  color: #272b44;
  font-size: 1rem;
}

.about-excellence {
  padding: 0 0 1.6rem;
  background: #f7f7fb;
}

.about-excellence-box {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem 2.5rem;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 2, 38, .96), rgba(4, 4, 58, .82)),
    url("../img/about-excellence-bg.webp") center / cover no-repeat;
}

.about-badge {
  color: #ff5b12;
  font-size: 4.6rem;
  line-height: 1;
  text-align: center;
}

.about-excellence-box h2 {
  margin: 0 0 .45rem;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
}

.about-excellence-box p {
  margin: 0;
  color: rgba(255, 255, 255, .9);
}

.about-final-cta {
  padding: 0 0 2rem;
  background: #f7f7fb;
}

.about-final-box {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.6rem 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(4, 4, 58, .06);
}

.about-final-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #ff5b12;
  border: 2px solid #ff5b12;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
}

.about-final-box h2 {
  margin: 0 0 .35rem;
  color: var(--brand);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
}

.about-final-box p {
  margin: 0;
  color: #272b44;
}

.about-final-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.services-page {
  background: var(--white);
}

.services-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #04043a;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 2, 38, .96) 0%, rgba(2, 2, 38, .84) 38%, rgba(2, 2, 38, .36) 64%, rgba(2, 2, 38, .08) 100%),
    url("../img/banner-servicos.webp") center right / cover no-repeat;
}

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

.services-hero h1 {
  max-width: 640px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.8rem);
}

.services-hero p {
  max-width: 560px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 1.08rem;
}

.services-main {
  padding: 2.6rem 0 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.4rem;
}

.services-feature-card {
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(4, 4, 58, .08);
}

.services-feature-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.services-feature-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.services-feature-card img {
  width: 100%;
  aspect-ratio: 1.9;
  object-fit: cover;
}

.services-feature-body {
  padding: 1.45rem;
}

.services-feature-body span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-top: -3.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  background: #ff5b12;
  border: 4px solid var(--white);
  border-radius: 50%;
  font-weight: 900;
}

.services-feature-body h2 {
  margin: 0 0 .5rem;
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.services-feature-body h3 {
  margin: 0 0 .8rem;
  color: var(--brand);
  font-size: 1.02rem;
  font-weight: 900;
}

.services-feature-body p {
  color: #272b44;
  font-size: .95rem;
}

.services-feature-body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .4rem .9rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: #272b44;
  font-size: .9rem;
}

.services-feature-body li::before {
  content: "✓";
  margin-right: .4rem;
  color: #ff5b12;
  font-weight: 900;
}

.services-process-band {
  padding: 3rem 0;
  color: var(--white);
  background: #020226;
}

.services-process-band h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
}

.services-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.services-process-grid article {
  text-align: center;
}

.services-process-grid span {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  font-weight: 900;
}

.services-process-grid h3 {
  color: var(--white);
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.services-process-grid p {
  color: rgba(255, 255, 255, .78);
  font-size: .82rem;
}

.services-differentials {
  padding: 3rem 0;
}

.services-differentials h2,
.services-cases h2 {
  color: var(--brand);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
}

.services-diff-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 2rem;
}

.services-diff-grid article {
  padding: 1.2rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.services-diff-grid article:last-child {
  border-right: 0;
}

.services-diff-grid span {
  display: block;
  color: #ff5b12;
  font-size: 2rem;
  font-weight: 900;
}

.services-diff-grid h3 {
  color: var(--brand);
  font-size: .98rem;
  font-weight: 900;
  text-transform: uppercase;
}

.services-diff-grid p {
  color: #272b44;
  font-size: .9rem;
}

.services-cases {
  padding: 2rem 0 3rem;
  background: #f7f7fb;
}

.services-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.mini-case {
  height: 100%;
  padding-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(4, 4, 58, .08);
}

.mini-case img {
  width: 100%;
  aspect-ratio: 1.9;
  object-fit: cover;
}

.mini-case h3,
.mini-case p,
.mini-case span {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mini-case h3 {
  margin-top: 1rem;
  color: var(--brand);
  font-size: .98rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-case p {
  color: #272b44;
  font-size: .9rem;
}

.services-final-cta {
  padding: 2rem 0;
  background: #f7f7fb;
}

.portfolio-page {
  background: linear-gradient(180deg, #fff 0%, #f7f7fb 100%);
}

.portfolio-filters {
  display: grid;
  grid-template-columns: .85fr 1.35fr;
  gap: 2rem;
  margin-bottom: 2.4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.portfolio-filters strong {
  display: block;
  margin-bottom: .85rem;
  color: var(--brand);
  font-size: .92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.filter-pill {
  min-width: 118px;
  padding: .62rem 1.15rem;
  border: 1px solid #d7dae7;
  border-radius: 999px;
  color: var(--brand);
  background: var(--white);
  font-size: .9rem;
  font-weight: 800;
}

.filter-pill.active {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 10px 22px rgba(4, 4, 58, .16);
}

.portfolio-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(4, 4, 58, .08);
}

.portfolio-thumb {
  position: relative;
}

.portfolio-thumb img {
  width: 100%;
  aspect-ratio: 1.52;
  object-fit: cover;
}

.portfolio-status {
  position: absolute;
  top: .7rem;
  right: .7rem;
  padding: .28rem .55rem;
  border-radius: 4px;
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-status.done { background: #25863b; }

.portfolio-status.progress { background: #ff5b12; }

.portfolio-body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.portfolio-body > span,
.portfolio-body strong {
  display: block;
  color: #4d5067;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-body p {
  margin: 0 0 .75rem;
  color: #252941;
  font-size: .92rem;
}

.portfolio-body h2 {
  margin: 0 0 .45rem;
  color: var(--brand);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.18;
}

.portfolio-place {
  color: var(--brand) !important;
  font-weight: 700;
}

.portfolio-body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .4rem .7rem;
  margin: .65rem 0 0;
  padding: 0;
  list-style: none;
}

.portfolio-body li {
  position: relative;
  padding-left: 1rem;
  color: #252941;
  font-size: .84rem;
}

.portfolio-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: 6px;
  height: 6px;
  border: 2px solid #ff5b12;
  border-radius: 50%;
}

.portfolio-numbers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  min-height: 100%;
  padding: 2.3rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(4, 4, 58, .06);
}

.portfolio-numbers div {
  text-align: center;
  border-right: 1px solid var(--line);
}

.portfolio-numbers div:last-child { border-right: 0; }

.portfolio-numbers span {
  display: block;
  color: var(--brand);
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.portfolio-numbers p {
  margin: .55rem 0 0;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.portfolio-process,
.portfolio-presence {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(4, 4, 58, .06);
}

.portfolio-process {
  padding: 1.45rem 1.55rem;
}

.portfolio-process h2,
.portfolio-presence h2 {
  margin: 0 0 1.4rem;
  color: var(--brand);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.portfolio-process-grid article {
  position: relative;
  min-width: 0;
}

.portfolio-process-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: .8rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand);
  font-weight: 900;
}

.portfolio-process-grid h3 {
  margin: 0 0 .45rem;
  color: var(--brand);
  font-size: .9rem;
  font-weight: 900;
}

.portfolio-process-grid p {
  margin: 0;
  color: #33374f;
  font-size: .78rem;
  line-height: 1.45;
}

.portfolio-presence {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 1.2rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
}

.portfolio-presence img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
}

.portfolio-presence ul {
  display: grid;
  gap: .35rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.portfolio-presence li {
  position: relative;
  padding-left: 1rem;
  color: #24283f;
  font-size: .92rem;
}

.portfolio-presence li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5b12;
}

.portfolio-presence p {
  margin: 0;
  color: #33374f;
  font-size: .86rem;
}

.portfolio-cta-section {
  padding-top: 0;
  background: #f7f7fb;
}

.portfolio-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem 3rem;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 2, 38, .98), rgba(4, 4, 58, .92)),
    url("../img/home-cta-bg.webp") center / cover no-repeat;
}

.portfolio-cta h2 {
  margin: 0 0 .35rem;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 900;
}

.portfolio-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1.05rem;
}

.portfolio-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: flex-end;
}

.portfolio-cta-actions .btn {
  min-width: 205px;
  text-transform: uppercase;
  font-weight: 900;
}

.governance-page {
  background: linear-gradient(180deg, #fff 0%, #f7f7fb 100%);
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 1em;
  height: 1em;
}

.line-icon::before {
  content: "";
  display: block;
  width: 68%;
  height: 68%;
  background: var(--icon) center / contain no-repeat;
}

.icon-shield { --icon: url("../img/icons/shield.svg"); }
.icon-scale { --icon: url("../img/icons/scale.svg"); }
.icon-checklist { --icon: url("../img/icons/checklist.svg"); }
.icon-users { --icon: url("../img/icons/users.svg"); }
.icon-alert { --icon: url("../img/icons/alert.svg"); }
.icon-lock { --icon: url("../img/icons/lock.svg"); }
.icon-hardhat { --icon: url("../img/icons/hardhat.svg"); }
.icon-leaf { --icon: url("../img/icons/leaf.svg"); }
.icon-building { --icon: url("../img/icons/building.svg"); }
.icon-star { --icon: url("../img/icons/star.svg"); }
.icon-handshake { --icon: url("../img/icons/handshake.svg"); }
.icon-chart { --icon: url("../img/icons/chart.svg"); }
.icon-document { --icon: url("../img/icons/document.svg"); }
.icon-presentation { --icon: url("../img/icons/presentation.svg"); }
.icon-cart { --icon: url("../img/icons/cart.svg"); }
.icon-dollar { --icon: url("../img/icons/dollar.svg"); }
.icon-gear { --icon: url("../img/icons/gear.svg"); }
.icon-book { --icon: url("../img/icons/book.svg"); }
.icon-graduation { --icon: url("../img/icons/graduation.svg"); }
.icon-bulb { --icon: url("../img/icons/bulb.svg"); }
.icon-target { --icon: url("../img/icons/target.svg"); }
.icon-phone { --icon: url("../img/icons/phone.svg"); }
.icon-whatsapp { --icon: url("../img/icons/whatsapp.svg"); }
.icon-mail { --icon: url("../img/icons/mail.svg"); }
.icon-clock { --icon: url("../img/icons/clock.svg"); }
.icon-pin { --icon: url("../img/icons/pin.svg"); }

.navy-icon.icon-shield { --icon: url("../img/icons-navy/shield.svg"); }
.navy-icon.icon-scale { --icon: url("../img/icons-navy/scale.svg"); }
.navy-icon.icon-checklist { --icon: url("../img/icons-navy/checklist.svg"); }
.navy-icon.icon-users { --icon: url("../img/icons-navy/users.svg"); }
.navy-icon.icon-alert { --icon: url("../img/icons-navy/alert.svg"); }
.navy-icon.icon-lock { --icon: url("../img/icons-navy/lock.svg"); }
.navy-icon.icon-hardhat { --icon: url("../img/icons-navy/hardhat.svg"); }
.navy-icon.icon-leaf { --icon: url("../img/icons-navy/leaf.svg"); }
.navy-icon.icon-building { --icon: url("../img/icons-navy/building.svg"); }
.navy-icon.icon-star { --icon: url("../img/icons-navy/star.svg"); }
.navy-icon.icon-handshake { --icon: url("../img/icons-navy/handshake.svg"); }
.navy-icon.icon-chart { --icon: url("../img/icons-navy/chart.svg"); }
.navy-icon.icon-document { --icon: url("../img/icons-navy/document.svg"); }
.navy-icon.icon-presentation { --icon: url("../img/icons-navy/presentation.svg"); }
.navy-icon.icon-cart { --icon: url("../img/icons-navy/cart.svg"); }
.navy-icon.icon-dollar { --icon: url("../img/icons-navy/dollar.svg"); }
.navy-icon.icon-gear { --icon: url("../img/icons-navy/gear.svg"); }
.navy-icon.icon-book { --icon: url("../img/icons-navy/book.svg"); }
.navy-icon.icon-graduation { --icon: url("../img/icons-navy/graduation.svg"); }
.navy-icon.icon-bulb { --icon: url("../img/icons-navy/bulb.svg"); }
.navy-icon.icon-target { --icon: url("../img/icons-navy/target.svg"); }
.navy-icon.icon-phone { --icon: url("../img/icons-navy/phone.svg"); }
.navy-icon.icon-whatsapp { --icon: url("../img/icons-navy/whatsapp.svg"); }
.navy-icon.icon-mail { --icon: url("../img/icons-navy/mail.svg"); }
.navy-icon.icon-clock { --icon: url("../img/icons-navy/clock.svg"); }
.navy-icon.icon-pin { --icon: url("../img/icons-navy/pin.svg"); }

.governance-title {
  margin: 0 0 2rem;
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.governance-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 2.8rem;
}

.governance-pillars article {
  padding: 1.2rem 2rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.governance-pillars article:last-child { border-right: 0; }

.governance-pillars span {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 1rem;
  color: #ff5b12;
}

.governance-pillars h3 {
  margin: 0 0 .7rem;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.governance-pillars p {
  margin: 0;
  color: #252941;
  font-size: .94rem;
}

.governance-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.governance-card,
.governance-standards,
.governance-commitment {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(4, 4, 58, .06);
}

.governance-card {
  position: relative;
  padding: 2rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.94)),
    url("../img/home-cta-bg.webp") bottom center / 110% auto no-repeat;
}

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

.governance-card:nth-child(2)::after,
.governance-card:nth-child(3)::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: .7rem;
  width: 190px;
  height: 92px;
  opacity: .12;
  background: currentColor;
  -webkit-mask: url("../img/icons-navy/building.svg") center / contain no-repeat;
  mask: url("../img/icons-navy/building.svg") center / contain no-repeat;
}

.governance-card:nth-child(3)::after {
  -webkit-mask-image: url("../img/icons-navy/leaf.svg");
  mask-image: url("../img/icons-navy/leaf.svg");
}

.governance-card-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  color: var(--brand);
  background: #f0f1f6;
}

.governance-card-icon.line-icon {
  color: var(--brand);
  background: #f0f1f6;
}

.governance-card h3 {
  margin: 0 0 1.15rem;
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.governance-card p {
  margin: 0 0 1.4rem;
  color: #252941;
  font-size: .96rem;
}

.governance-card strong {
  display: block;
  color: #08916f;
  font-size: 1.55rem;
  font-weight: 900;
}

.governance-card > span {
  display: block;
  color: var(--brand);
  font-size: .86rem;
  font-weight: 700;
}

.governance-card ul {
  display: grid;
  gap: .85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.governance-card li {
  position: relative;
  padding-left: 1.45rem;
  color: #252941;
  font-size: .96rem;
}

.governance-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42rem;
  width: 8px;
  height: 8px;
  border: 2px solid #ff5b12;
  border-radius: 50%;
}

.governance-standards,
.governance-commitment {
  padding: 2rem;
}

.governance-standards {
  padding: 2.35rem 2.45rem 2.1rem;
}

.governance-standards h2,
.governance-commitment h2 {
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
}

.governance-standards h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: 0;
}

.governance-standards h3 {
  margin: 1.75rem 0 1.1rem;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.governance-standards p {
  margin: 0 0 1rem;
  color: #252941;
}

.governance-standards > p:first-of-type {
  max-width: 760px;
  font-size: 1.02rem;
  font-weight: 600;
}

.governance-standards > p:last-child {
  max-width: 760px;
  margin-top: 1.85rem;
  font-weight: 700;
}

.iso-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 1rem 0 1.75rem;
}

.iso-grid article {
  min-height: 184px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: .6rem 1.45rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.iso-grid article:last-child { border-right: 0; }

.iso-seal {
  display: block;
  width: min(100%, 136px);
  height: 96px;
  margin: 0 auto .5rem;
  object-fit: contain;
  object-position: center bottom;
}

.iso-grid p {
  min-height: 42px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  color: var(--brand);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.35;
}

.governance-commitment article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: .9rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
}

.governance-commitment article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.governance-commitment span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--brand);
  background: #f0f1f6;
}

.governance-commitment h3 {
  margin: 0 0 .2rem;
  color: var(--brand);
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.governance-commitment p {
  margin: 0;
  color: #252941;
  font-size: .9rem;
  line-height: 1.4;
}

.governance-cta-section {
  padding-top: 0;
  background: #f7f7fb;
}

.governance-cta {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 2.3rem 3rem;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 2, 38, .98), rgba(4, 4, 58, .94)),
    url("../img/home-cta-bg.webp") center / cover no-repeat;
}

.governance-cta-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 2px solid #ff5b12;
  border-radius: 50%;
  color: #ff5b12;
}

.governance-cta h2 {
  margin: 0 0 .35rem;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 900;
}

.governance-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
}

.governance-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: flex-end;
}

.governance-cta-actions .btn {
  min-width: 210px;
  text-transform: uppercase;
  font-weight: 900;
}

.careers-page,
.contact-page {
  background: linear-gradient(180deg, #fff 0%, #f7f7fb 100%);
}

.careers-values-section {
  margin-bottom: 3.5rem;
}

.careers-values-section .section-head {
  margin-bottom: 1.4rem;
}

.careers-values-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.careers-values-grid article {
  min-height: 170px;
  padding: 1.35rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.careers-values-grid article:last-child {
  border-right: 0;
}

.careers-values-grid span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  color: #ff5b12;
}

.careers-values-grid h3 {
  margin: 0 0 .6rem;
  color: var(--brand);
  font-size: .9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.careers-values-grid p {
  margin: 0;
  color: #252941;
  font-size: .86rem;
}

.careers-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.careers-focus-grid article {
  min-height: 260px;
  padding: 1.8rem 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(4, 4, 58, .06);
}

.careers-focus-grid span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--brand);
  background: #f0f1f6;
}

.careers-focus-grid h2 {
  margin: 0 0 .85rem;
  color: var(--brand);
  font-size: 1.12rem;
  font-weight: 900;
  text-transform: uppercase;
}

.careers-focus-grid h2::after,
.careers-openings h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: .6rem;
  background: #ff5b12;
}

.careers-focus-grid p {
  margin: 0;
  color: #252941;
  font-size: .94rem;
}

.careers-focus-grid ul {
  display: grid;
  gap: .38rem;
  margin: .95rem 0 0;
  padding: 0;
  list-style: none;
}

.careers-focus-grid li {
  position: relative;
  padding-left: 1.25rem;
  color: #252941;
  font-size: .9rem;
}

.careers-focus-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48rem;
  width: 7px;
  height: 7px;
  border: 2px solid #ff5b12;
  border-radius: 50%;
}

.careers-opportunity-row {
  margin-top: .5rem;
}

.careers-culture {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.careers-culture > div {
  padding-right: 1.2rem;
}

.careers-culture h2,
.careers-university h2,
.careers-development h2,
.careers-openings h2,
.careers-talent h2,
.careers-benefits h2,
.contact-form-panel h2,
.contact-location h2 {
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.careers-culture p,
.careers-university p,
.careers-development p {
  margin: 0;
  color: #252941;
}

.careers-culture article,
.careers-training-grid article,
.careers-dev-grid article,
.careers-benefit-grid article {
  min-height: 150px;
  padding: 1.25rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.careers-culture span,
.careers-training-grid span,
.careers-dev-grid span,
.careers-benefit-grid span,
.contact-channel-grid span,
.contact-address span,
.contact-diff-grid span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: .9rem;
  color: #ff5b12;
}

.careers-training-grid span,
.careers-dev-grid span,
.careers-benefit-grid span,
.contact-address span {
  color: var(--brand);
}

.contact-channel-grid span,
.contact-diff-grid span {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  border: 2px solid #ff5b12;
  border-radius: 50%;
}

.careers-culture h3,
.careers-training-grid h3,
.careers-dev-grid h3,
.careers-benefit-grid h3 {
  margin: 0 0 .55rem;
  color: var(--brand);
  font-size: .9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.careers-culture article p,
.careers-training-grid p,
.careers-dev-grid p,
.careers-benefit-grid p {
  margin: 0;
  color: #252941;
  font-size: .86rem;
}

.careers-training-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.careers-development,
.careers-openings,
.careers-talent,
.contact-form-panel,
.contact-location {
  height: 100%;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(4, 4, 58, .06);
}

.careers-dev-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.careers-openings article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1rem;
  margin-bottom: .75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f8fb;
}

.careers-openings article > span {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: var(--brand);
}

.careers-openings article div {
  flex: 1 1 auto;
}

.careers-openings h3 {
  margin: 0 0 .2rem;
  color: var(--brand);
  font-size: .95rem;
  font-weight: 900;
}

.careers-openings > h2 {
  font-size: 1.2rem;
}

.careers-openings p {
  margin: 0;
  color: #4d5067;
  font-size: .82rem;
}

.careers-openings a {
  color: var(--brand);
  font-size: .82rem;
  font-weight: 900;
  white-space: nowrap;
}

.careers-all-link {
  display: inline-flex;
  margin-top: .7rem;
  color: #ff5b12 !important;
  text-transform: uppercase;
}

.careers-talent {
  color: var(--white);
  background: linear-gradient(145deg, #04043a 0%, #020226 100%);
}

.careers-talent h2 {
  color: var(--white);
  line-height: 1.25;
}

.careers-talent p {
  color: rgba(255, 255, 255, .82);
}

.careers-form-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .86rem;
}

.careers-talent .btn {
  width: 100%;
  margin-top: 1rem;
}

.careers-talent-wide {
  position: relative;
  min-height: 100%;
  padding: 2.8rem;
  overflow: hidden;
}

.careers-talent-wide::after {
  content: "";
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  width: 170px;
  height: 170px;
  opacity: .16;
  background: currentColor;
  -webkit-mask: url("../img/icons/users.svg") center / contain no-repeat;
  mask: url("../img/icons/users.svg") center / contain no-repeat;
}

.careers-talent-wide > * {
  position: relative;
  z-index: 1;
}

.careers-benefits {
  margin-top: 3.5rem;
}

.careers-benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.careers-cta-section,
.contact-cta-section {
  padding-top: 0;
  background: #f7f7fb;
}

.careers-cta,
.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem 3rem;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 2, 38, .98), rgba(4, 4, 58, .88)),
    url("../img/home-cta-bg.webp") center / cover no-repeat;
}

.careers-cta h2,
.contact-cta h2 {
  margin: 0 0 .35rem;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 900;
}

.careers-cta p,
.contact-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
}

.careers-cta-actions,
.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: flex-end;
}

.careers-cta-actions .btn,
.contact-cta-actions .btn {
  min-width: 205px;
  text-transform: uppercase;
  font-weight: 900;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(4, 4, 58, .06);
}

.contact-channel-grid article {
  min-height: 168px;
  padding: 1.5rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.contact-channel-grid article:last-child { border-right: 0; }

.contact-channel-grid span {
  margin-inline: auto;
}

.contact-channel-grid h2,
.contact-diff-grid h2 {
  margin: 0 0 .65rem;
  color: var(--brand);
  font-size: .92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-channel-grid a,
.contact-channel-grid p {
  margin: 0;
  color: var(--brand);
  font-weight: 800;
}

.contact-form-panel .form-label {
  color: #4d5067;
  font-size: .82rem;
  font-weight: 700;
}

.contact-form-status {
  display: none;
  margin-bottom: 1rem;
  padding: .9rem 1rem;
  border-radius: 8px;
  font-size: .92rem;
  font-weight: 800;
}

.contact-form-status.loading,
.contact-form-status.success,
.contact-form-status.error,
.contact-form-status.warning {
  display: block;
}

.contact-form-status.loading {
  color: var(--brand);
  background: #f0f1f6;
  border: 1px solid var(--line);
}

.contact-form-status.success {
  color: #14592a;
  background: #ecf8ef;
  border: 1px solid #b7dfc0;
}

.contact-form-status.error {
  color: #8a1f11;
  background: #fff0ed;
  border: 1px solid #ffc6ba;
}

.contact-form-status.warning {
  color: #7a3e00;
  background: #fff7e8;
  border: 1px solid #f2c681;
}

.contact-safe {
  margin: 1rem 0 0;
  color: #4d5067;
  text-align: center;
  font-size: .86rem;
}

.contact-safe a {
  color: var(--brand-2);
  font-weight: 800;
}

.contact-address {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: .8rem;
  margin-bottom: 1.5rem;
}

.contact-address h3 {
  margin: 0 0 .35rem;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-address p {
  margin: 0;
  color: #252941;
}

.contact-map {
  min-height: 280px;
  overflow: hidden;
  border: 1px solid #d9dce8;
  border-radius: 8px;
  background: #f0f1f6;
}

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

.contact-diff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(4, 4, 58, .06);
}

.contact-diff-grid article {
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

.contact-diff-grid article:last-child { border-right: 0; }

.contact-diff-grid p {
  margin: 0;
  color: #252941;
  font-size: .9rem;
}

.legal-page {
  background: linear-gradient(180deg, #fff 0%, #f7f7fb 100%);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.legal-grid article,
.legal-panel {
  height: 100%;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(4, 4, 58, .06);
}

.legal-grid span,
.legal-panel > span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--brand);
  background: #f0f1f6;
}

.legal-grid h2,
.legal-panel h2 {
  margin: 0 0 .8rem;
  color: var(--brand);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-grid p,
.legal-panel p {
  margin: 0;
  color: #252941;
  font-size: .94rem;
}

.job-page {
  background: linear-gradient(180deg, #fff 0%, #f7f7fb 100%);
}

.job-visual {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 1rem;
}

.job-visual img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(4, 4, 58, .14);
}

.job-summary {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 1rem;
}

.job-summary span {
  padding: .45rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand);
  background: var(--white);
  font-size: .82rem;
  font-weight: 800;
}

.job-card {
  margin-bottom: 1rem;
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(4, 4, 58, .06);
}

.job-card h2,
.job-cta h2 {
  margin: 0 0 .85rem;
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.job-card h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: .55rem;
  background: #ff5b12;
}

.job-card h3 {
  margin: 0 0 .5rem;
  color: var(--brand);
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.job-card p {
  margin: 0 0 .8rem;
  color: #252941;
}

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

.job-card ul {
  display: grid;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-card li {
  position: relative;
  padding-left: 1.15rem;
  color: #252941;
}

.job-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: 7px;
  height: 7px;
  border: 2px solid #ff5b12;
  border-radius: 50%;
}

.job-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.job-columns article {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.job-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.job-timeline article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f8fb;
}

.job-timeline strong {
  display: block;
  margin-bottom: .35rem;
  color: #ff5b12;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
}

.job-timeline p {
  margin: 0;
  color: #252941;
  font-size: .92rem;
}

.job-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 1.8rem;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(145deg, #04043a 0%, #020226 100%);
}

.job-cta h2 {
  color: var(--white);
}

.job-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
}

.application-page {
  background: linear-gradient(180deg, #fff 0%, #f7f7fb 100%);
}

.application-shell {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.application-aside,
.application-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(4, 4, 58, .06);
}

.application-aside {
  position: sticky;
  top: 112px;
  padding: 1.7rem;
  color: var(--white);
  background: linear-gradient(145deg, #04043a 0%, #020226 100%);
}

.application-aside h2 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.application-aside p {
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 1rem;
  line-height: 1.65;
}

.application-steps {
  display: grid;
  gap: .7rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: applicationStep;
}

.application-steps li {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding-left: 3rem;
  color: rgba(255, 255, 255, .72);
  font-size: .96rem;
  font-weight: 800;
}

.application-steps li::before {
  counter-increment: applicationStep;
  content: counter(applicationStep);
  position: absolute;
  left: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: var(--white);
}

.application-steps li.active {
  color: var(--white);
}

.application-steps li.active::before {
  background: #ff5b12;
  border-color: #ff5b12;
}

.application-form {
  padding: 2rem;
  background: var(--white);
}

.application-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.application-step.active {
  display: block;
}

.application-step legend {
  margin: 0 0 1.5rem;
  color: var(--brand);
  font-size: 1.45rem;
  font-weight: 900;
  text-transform: uppercase;
}

.application-form .form-label {
  color: #4d5067;
  font-size: .95rem;
  font-weight: 800;
}

.application-form .form-control,
.application-form .form-select {
  font-size: 1rem;
  line-height: 1.5;
}

.form-help {
  margin: .45rem 0 0;
  color: #64677b;
  font-size: .88rem;
}

.application-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: .65rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f8fb;
}

.application-consent input {
  margin-top: .25rem;
}

.application-consent label {
  color: #252941;
  font-size: .96rem;
  line-height: 1.55;
}

.application-consent a {
  color: #ff5b12;
  font-weight: 900;
}

.application-actions {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  margin-top: 1.8rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.application-actions .btn {
  min-width: 150px;
  text-transform: uppercase;
}

.application-status {
  display: none;
  margin-bottom: 1rem;
  padding: .95rem 1rem;
  border-radius: 8px;
  font-weight: 800;
}

.application-status.error,
.application-status.success,
.application-status.loading,
.application-status.warning {
  display: block;
}

.application-status.error {
  color: #8a1f11;
  background: #fff0ed;
  border: 1px solid #ffc6ba;
}

.application-status.success {
  color: #14592a;
  background: #ecf8ef;
  border: 1px solid #b7dfc0;
}

.application-status.loading {
  color: var(--brand);
  background: #f0f1f6;
  border: 1px solid var(--line);
}

.application-status.warning {
  color: #7a3e00;
  background: #fff7e8;
  border: 1px solid #f2c681;
}

@media (max-width: 1199px) {
  .navbar-collapse {
    padding: 1rem 0 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }
  .nav-link { padding: .75rem 0 !important; }
  .nav-link::after {
    left: 0;
    right: auto;
    bottom: .25rem;
    width: 42px;
  }
  .btn-brand.ms-xl-3 { width: 100%; margin-top: .75rem; }
  .btn-whatsapp.ms-xl-3 { width: 100%; margin-top: .75rem; }
}

@media (max-width: 991px) {
  .home-service-grid,
  .home-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-mission-card {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .about-logo-mark {
    order: -1;
  }
  .about-values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .about-values-grid article:nth-child(3n) {
    border-right: 0;
  }
  .about-final-box {
    grid-template-columns: 70px 1fr;
  }
  .about-final-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-feature-card,
  .services-feature-card:nth-child(4),
  .services-feature-card:nth-child(5) {
    grid-column: auto;
  }
  .services-process-grid,
  .services-diff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-diff-grid article:nth-child(2n) {
    border-right: 0;
  }
  .services-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .portfolio-filters {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .portfolio-numbers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 0;
  }
  .portfolio-numbers div:nth-child(2) {
    border-right: 0;
  }
  .portfolio-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .portfolio-presence {
    grid-template-columns: 1fr;
  }
  .portfolio-presence img {
    max-width: 280px;
    margin: 0 auto;
  }
  .portfolio-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .portfolio-cta-actions {
    justify-content: flex-start;
  }
  .governance-pillars,
  .governance-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .governance-pillars article:nth-child(2n) {
    border-right: 0;
  }
  .governance-card-grid {
    margin-bottom: 1rem;
  }
  .governance-cta {
    grid-template-columns: 70px 1fr;
  }
  .governance-cta-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  .careers-culture,
  .careers-values-grid,
  .careers-focus-grid,
  .careers-training-grid,
  .careers-benefit-grid,
  .contact-diff-grid,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-channel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .careers-culture > div {
    grid-column: 1 / -1;
  }
  .careers-values-grid article:nth-child(2n) {
    border-right: 0;
  }
  .careers-values-grid article {
    border-bottom: 1px solid var(--line);
  }
  .careers-values-grid article:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .contact-diff-grid article:nth-child(2n) {
    border-right: 0;
  }
  .contact-channel-grid article,
  .contact-channel-grid article:nth-child(2n) {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }
  .contact-channel-grid article:last-child {
    border-right: 0;
  }
  .careers-cta,
  .contact-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .careers-cta-actions,
  .contact-cta-actions {
    justify-content: flex-start;
  }
  .job-visual {
    position: static;
  }
  .application-shell {
    grid-template-columns: 1fr;
  }
  .application-aside {
    position: static;
  }
  .job-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0;
  }
  .home-stats-grid > div:nth-child(2) {
    border-right: 0;
  }
  .home-process-step::after {
    display: none;
  }
  .home-final-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 2rem;
  }
  .home-final-actions {
    justify-content: flex-start;
  }
  .home-hero-copy {
    width: min(62vw, 680px);
  }
  .home-feature-grid,
  .home-feature-grid-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .home-feature-grid-reverse .home-feature-copy {
    order: -1;
  }
  .home-feature-copy {
    max-width: 680px;
  }
}

@media (max-width: 767px) {
  .site-navbar { min-height: 78px; }
  main { padding-top: 78px; }
  .navbar-brand img { width: 176px; }
  .hero { min-height: auto; }
  .hero .container { padding-block: 4.5rem; }
  .section { padding: 3.5rem 0; }
  .page-hero {
    min-height: 360px;
    padding: 0;
  }
  .table-clean th, .table-clean td { display: block; width: 100%; }
  .home-hero-copy { padding: 3.2rem 0; }
  .home-hero-copy { width: 100%; }
  .home-hero p { font-size: 1rem; }
  .home-service-grid,
  .home-process-grid,
  .home-stats-grid {
    grid-template-columns: 1fr;
  }
  .home-service-card {
    min-height: auto;
  }
  .home-recruitment-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
  }
  .home-recruitment .btn,
  .home-inline-actions .btn {
    width: 100%;
  }
  .home-feature {
    padding: 3.25rem 0;
  }
  .home-feature-grid > img {
    aspect-ratio: 1.28;
  }
  .home-stats-grid > div {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }
  .home-stats-grid > div:last-child {
    border-bottom: 0;
  }
  .home-final-box {
    padding: 1.5rem;
  }
  .home-final-actions .btn {
    width: 100%;
  }
  .about-hero {
    min-height: 360px;
  }
  .about-section {
    padding: 2.5rem 0;
  }
  .about-mission-card article {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-mission-card p {
    grid-column: auto;
  }
  .about-icon {
    margin: 0 auto .5rem;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .about-values-grid article,
  .about-values-grid article:nth-child(3n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-values-grid article:last-child {
    border-bottom: 0;
  }
  .about-region-list {
    margin-top: 1rem;
    padding-left: 1.6rem;
  }
  .about-excellence-box {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    text-align: center;
  }
  .about-final-box {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    text-align: center;
  }
  .about-final-icon {
    margin: 0 auto;
  }
  .about-final-actions {
    justify-content: center;
  }
  .about-final-actions .btn {
    width: 100%;
  }
  .services-hero {
    min-height: 360px;
  }
  .services-grid,
  .services-process-grid,
  .services-diff-grid {
    grid-template-columns: 1fr;
  }
  .services-diff-grid article,
  .services-diff-grid article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .services-diff-grid article:last-child {
    border-bottom: 0;
  }
  .services-feature-body ul {
    grid-template-columns: 1fr;
  }
  .filter-pill {
    min-width: 0;
    flex: 1 1 130px;
  }
  .portfolio-body ul,
  .portfolio-numbers,
  .portfolio-process-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-numbers {
    padding: 1.6rem;
  }
  .portfolio-numbers div,
  .portfolio-numbers div:nth-child(2) {
    padding-bottom: 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .portfolio-numbers div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .portfolio-process,
  .portfolio-presence,
  .portfolio-cta {
    padding: 1.5rem;
  }
  .portfolio-cta-actions,
  .portfolio-cta-actions .btn {
    width: 100%;
  }
  .governance-pillars,
  .governance-card-grid,
  .iso-grid {
    grid-template-columns: 1fr;
  }
  .governance-pillars article,
  .governance-pillars article:nth-child(2n),
  .iso-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .governance-pillars article:last-child,
  .iso-grid article:last-child {
    border-bottom: 0;
  }
  .governance-card,
  .governance-standards,
  .governance-commitment {
    padding: 1.5rem;
  }
  .iso-grid article {
    min-height: 150px;
    padding: 1.1rem 0;
  }
  .iso-seal {
    width: min(100%, 132px);
    height: 110px;
  }
  .governance-cta {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    text-align: center;
  }
  .governance-cta-actions,
  .governance-cta-actions .btn {
    width: 100%;
  }
  .governance-cta-icon {
    margin: 0 auto;
  }
  .careers-culture,
  .careers-values-grid,
  .careers-focus-grid,
  .careers-training-grid,
  .careers-dev-grid,
  .careers-benefit-grid,
  .contact-channel-grid,
  .contact-diff-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .contact-channel-grid article,
  .contact-channel-grid article:nth-child(2n),
  .contact-diff-grid article,
  .contact-diff-grid article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .contact-channel-grid article:last-child,
  .contact-diff-grid article:last-child {
    border-bottom: 0;
  }
  .careers-values-grid article,
  .careers-values-grid article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .careers-values-grid article:last-child {
    border-bottom: 0;
  }
  .careers-focus-grid article,
  .careers-talent-wide {
    padding: 1.5rem;
  }
  .careers-development,
  .careers-openings,
  .careers-talent,
  .contact-form-panel,
  .contact-location,
  .contact-diff-grid {
    padding: 1.5rem;
  }
  .careers-cta,
  .contact-cta {
    padding: 1.5rem;
  }
  .careers-cta-actions,
  .careers-cta-actions .btn,
  .contact-cta-actions,
  .contact-cta-actions .btn {
    width: 100%;
  }
  .contact-address {
    grid-template-columns: 1fr;
  }
  .job-columns,
  .job-timeline {
    grid-template-columns: 1fr;
  }
  .job-card,
  .job-cta {
    padding: 1.35rem;
  }
  .job-cta .btn {
    width: 100%;
  }
  .application-form,
  .application-aside {
    padding: 1.35rem;
  }
  .application-actions {
    flex-direction: column;
  }
  .application-actions .btn {
    width: 100%;
  }
}
