:root {
  --bg: #0a0a0d;
  --bg-2: #101014;
  --bg-3: #16161b;
  --bg-card: #15151a;
  --bg-card-2: #1a1a20;
  --line: #26262d;
  --line-2: #33333c;
  --text: #f5f5f7;
  --muted: #8a8a93;
  --muted-2: #b0b0b8;
  --accent: #e97817;
  --accent-2: #f08a2c;
  --accent-soft: rgba(233, 120, 23, .12);
  --max: 1400px;
  --pad: 48px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Barlow", system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased
}

body {
  overflow-x: hidden
}

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

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

::selection {
  background: var(--accent);
  color: #fff
}

.h-cond {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: .02em
}

.eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500
}

.h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: .01em;
  text-transform: uppercase
}

.h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.05;
  letter-spacing: .01em;
  text-transform: uppercase
}

.h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: .04em;
  text-transform: uppercase
}

.body {
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.65
}

.small {
  font-size: 13px;
  color: var(--muted)
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad)
}

/* ===== Header ===== */
header.site {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s;
  border-bottom: 1px solid transparent;
}

header.site.scrolled {
  background: rgba(10, 10, 13, .82);
  backdrop-filter: blur(14px);
  border-color: var(--line)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  max-width: 1600px;
  margin: 0 auto;
  gap: 32px
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 100
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none
}

.brand-mark {
  width: 46px;
  height: 46px
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.brand-text .bt-1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .04em;
  color: #fff
}

.brand-text .bt-2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .32em;
  color: var(--muted);
  margin-top: 4px
}

nav.main {
  display: flex;
  align-items: center;
  gap: 38px
}

nav.main a {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: 500;
  color: #e8e8ec;
  padding: 6px 0;
  position: relative;
  transition: color .2s
}

nav.main a:hover {
  color: var(--accent)
}

nav.main a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s
}

nav.main a:hover::after,
nav.main a.active::after {
  transform: scaleX(1)
}

.lang-selector {
  display: flex;
  align-items: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  letter-spacing: .18em;
  font-weight: 500
}

.lang-desktop {
  display: flex;
  align-items: center;
  gap: 14px
}

.lang-desktop a {
  color: var(--muted);
  text-decoration: none;
  transition: color .15s
}

.lang-desktop a.active {
  color: #fff
}

.lang-desktop a:hover {
  color: var(--accent)
}

.lang-desktop .sep {
  color: var(--line-2)
}

.lang-dropdown {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: #fff;
  padding: 6px 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  cursor: pointer;
  outline: none;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

/* Hamburger button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
}

.nav-toggle .hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: background 0.2s ease;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background: #fff;
  left: 0;
  transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

.nav-toggle .hamburger::before {
  top: -6px;
}

.nav-toggle .hamburger::after {
  bottom: -6px;
}

/* Open state style for hamburger */
body.nav-open .nav-toggle .hamburger {
  background: transparent;
}

body.nav-open .nav-toggle .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

body.nav-open .nav-toggle .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line)
}

/* Slider stack */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  pointer-events: none
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.hero-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
  transform: scale(1.08);
  will-change: transform
}

.hero-slide.active .hero-slide-img img {
  animation: kenburns 14s ease-out forwards
}

@keyframes kenburns {
  0% {
    transform: scale(1.05) translate(0, 0)
  }

  100% {
    transform: scale(1.16) translate(-2%, -1.5%)
  }
}

.hero-slide-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 13, .55) 0%, rgba(10, 10, 13, .25) 35%, rgba(10, 10, 13, .88) 100%),
    linear-gradient(90deg, rgba(10, 10, 13, .85) 0%, rgba(10, 10, 13, .25) 55%, rgba(10, 10, 13, 0) 100%);
}

/* Drifting grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: -40px;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 80px 80px;
  mix-blend-mode: overlay;
  opacity: .55;
  pointer-events: none;
  z-index: 1;
  animation: gridDrift 32s linear infinite;
}

@keyframes gridDrift {
  0% {
    transform: translate(0, 0)
  }

  100% {
    transform: translate(80px, 80px)
  }
}

/* Floating accent particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden
}

.hero-particles span {
  position: absolute;
  display: block;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: .0;
  box-shadow: 0 0 12px 2px rgba(233, 120, 23, .5);
  animation: floatUp linear infinite
}

@keyframes floatUp {
  0% {
    transform: translateY(20px);
    opacity: 0
  }

  10% {
    opacity: .7
  }

  90% {
    opacity: .5
  }

  100% {
    transform: translateY(-110vh);
    opacity: 0
  }
}

/* Horizontal scan line */
.hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  top: -1px;
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(233, 120, 23, .6), transparent);
  opacity: .7;
  animation: scanV 9s ease-in-out infinite;
  pointer-events: none
}

@keyframes scanV {
  0% {
    top: -1px;
    opacity: 0
  }

  10% {
    opacity: .7
  }

  50% {
    top: 60%;
    opacity: .5
  }

  90% {
    opacity: 0
  }

  100% {
    top: 101%;
    opacity: 0
  }
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 var(--pad);
  max-width: 1600px;
  margin: 0 auto
}

.hero-logo {
  margin-bottom: 36px;
  display: block;
  max-width: 560px;
  width: 48vw;
  min-width: 340px;
  animation: logoIn 1s cubic-bezier(.2, .7, .2, 1) .1s both
}

@keyframes logoIn {
  from {
    opacity: 0;
    transform: translateY(-14px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* Per-slide text — cross-fade with vertical slide */
.hero-tag-stack {
  position: relative;
  min-height: 110px;
  max-width: 850px
}

.hero-tag-stack .hero-tag {
  position: absolute;
  inset: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 44px);
  letter-spacing: .18em;
  line-height: 1.2;
  color: #e0e0e6;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease
}

.hero-tag-stack .hero-tag.active {
  opacity: 1;
  transform: none;
  transition-delay: .25s
}

.hero-tag strong {
  font-weight: 600;
  color: #fff
}

.hero-cta-row {
  display: flex;
  gap: 18px;
  margin-top: 52px;
  align-items: center;
  flex-wrap: wrap;
  animation: logoIn 1s cubic-bezier(.2, .7, .2, 1) .55s both
}

/* Slide controls */
.hero-controls {
  position: absolute;
  right: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center
}

.hero-dot {
  width: 34px;
  height: 34px;
  border: none;
  background: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  position: relative
}

.hero-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, .35);
  border-radius: 50%;
  transition: .3s
}

.hero-dot.active::before {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  transform: scale(1.4)
}

.hero-dot:hover::before {
  background: #fff
}

.hero-dot .ring {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: .3s
}

.hero-dot.active .ring {
  border-color: rgba(233, 120, 23, .4)
}

/* Slide progress indicator (bottom-left area) */
.hero-progress {
  position: absolute;
  left: var(--pad);
  bottom: 32px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: 11px;
  color: var(--muted)
}

.hero-progress .num {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .18em;
  min-width: 28px
}

.hero-progress .bars {
  display: flex;
  gap: 6px
}

.hero-progress .bar {
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, .18);
  position: relative;
  overflow: hidden
}

.hero-progress .bar.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: left;
  animation: barFill var(--slide-dur, 6s) linear forwards
}

.hero-progress .bar.done {
  background: rgba(233, 120, 23, .55)
}

@keyframes barFill {
  from {
    transform: scaleX(0)
  }

  to {
    transform: scaleX(1)
  }
}

/* Prev / next arrows (subtle, bottom-right) */
.hero-arrows {
  position: absolute;
  right: calc(var(--pad) + 56px);
  bottom: 24px;
  z-index: 4;
  display: flex;
  gap: 8px
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(10, 10, 13, .4);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .25s;
  backdrop-filter: blur(6px);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px)
}

.hero-arrow:hover {
  border-color: var(--accent);
  background: rgba(233, 120, 23, .15)
}

.hero-arrow svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .02);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: .25s;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px)
}

.btn:hover {
  border-color: var(--accent);
  background: rgba(233, 120, 23, .08);
  color: #fff
}

.btn .arr {
  width: 18px;
  height: 1px;
  background: #fff;
  position: relative;
  transition: .25s
}

.btn .arr::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg)
}

.btn:hover .arr {
  background: var(--accent);
  width: 26px
}

.btn:hover .arr::after {
  border-color: var(--accent)
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent)
}

.btn.primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2)
}

.btn.ghost {
  background: transparent
}

.hero-scroll {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: 11px;
  white-space: nowrap
}

.hero-scroll .line {
  width: 60px;
  height: 1px;
  background: var(--muted);
  position: relative;
  overflow: hidden
}

.hero-scroll .line::after {
  content: "";
  position: absolute;
  left: -30%;
  top: 0;
  width: 30%;
  height: 100%;
  background: var(--accent);
  animation: slide 2.6s ease-in-out infinite
}

@keyframes slide {
  0% {
    left: -30%
  }

  100% {
    left: 100%
  }
}

.hero-meta {
  position: absolute;
  right: var(--pad);
  bottom: 32px;
  z-index: 3;
  display: flex;
  gap: 32px;
  color: var(--muted-2);
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px
}

.hero-meta span b {
  color: #fff;
  font-weight: 600;
  margin-right: 6px
}

/* ===== Section: Who we are + Featured ===== */
.who-feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line)
}

.who,
.feat {
  background: var(--bg);
  padding: 72px var(--pad);
  position: relative
}

.who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

.who-content {
  max-width: 440px
}

.who h2 {
  margin: 18px 0 0
}

.who p {
  margin: 24px 0 32px;
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.7
}

.who-img {
  aspect-ratio: 1/1.05;
  background: #000;
  position: relative;
  overflow: hidden
}

.who-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  filter: contrast(1.1)
}

.who-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, .1) 50%, rgba(233, 120, 23, .08) 100%)
}

.who-img-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2
}

.who-img-mark svg {
  width: 55%;
  opacity: .95;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .5))
}

.feat {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  background: var(--bg-2)
}

.feat-img {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-left: none;
  background: #050508
}

.feat-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0.7);
  transition: filter .3s ease
}

.feat-img:hover img {
  filter: brightness(0.85)
}

.feat-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 16, 20, 0) 50%, rgba(16, 16, 20, .6) 100%);
  pointer-events: none
}

.feat-text {
  max-width: 520px
}

.feat-text h2 {
  margin: 14px 0 4px
}

.feat-loc {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  color: var(--muted)
}

.feat-text p {
  margin: 22px 0 26px;
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.7;
  max-width: 440px
}

/* the layout: actually swap to side-by-side single row */
@media (min-width:1100px) {
  .who-feat {
    grid-template-columns: 1fr 1fr
  }

  .feat {
    padding-top: 72px
  }

  .feat-img {
    margin: -72px calc(-1 * var(--pad)) 0 0;
    aspect-ratio: auto;
    border-radius: 0;
    border-left: 1px solid var(--line)
  }
}

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg);
  border-bottom: 1px solid var(--line)
}

.stat {
  padding: 48px var(--pad);
  display: flex;
  align-items: center;
  gap: 22px;
  border-right: 1px solid var(--line)
}

.stat:last-child {
  border-right: 0
}

.stat-ico {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  flex-shrink: 0
}

.stat-ico svg {
  width: 24px;
  height: 24px
}

.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  letter-spacing: .01em;
  color: #fff
}

.stat-lbl {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px
}

/* ===== Services + References ===== */
.serv-ref {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line)
}

.serv,
.refs {
  background: var(--bg);
  padding: 72px var(--pad)
}

.refs {
  background: var(--bg-2)
}

.serv h2,
.refs h2 {
  margin: 14px 0 38px
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px
}

.svc {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 22px 20px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  transition: .25s;
  cursor: pointer;
  position: relative;
  overflow: hidden
}

.svc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: .35s
}

.svc:hover::before {
  width: 100%
}

.svc:hover {
  border-color: var(--line-2);
  background: var(--bg-card-2);
  transform: translateY(-2px)
}

.svc-ico {
  width: 42px;
  height: 42px;
  color: var(--accent);
  display: grid;
  place-items: center
}

.svc-ico svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none
}

.svc-name {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
  color: #fff
}

.refs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 36px
}

.ref {
  aspect-ratio: 1.6/1;
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 16px;
  transition: .25s;
  color: #cfcfd4
}

.ref:hover {
  border-color: var(--accent);
  color: #fff
}

.ref svg,
.ref .txt {
  max-height: 48px;
  max-width: 100%
}

.ref .txt {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1
}

/* ===== Presence (countries) ===== */
.presence {
  background: var(--bg-2);
  padding: 96px var(--pad);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden
}

.presence-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap
}

.presence-head h2 {
  margin: 14px 0 0;
  max-width: 680px
}

.presence-head p {
  color: var(--muted-2);
  max-width: 440px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0
}

.countries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.country {
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: .35s
}

.country:hover {
  border-color: var(--accent)
}

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

.country-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
  transition: .6s;
  filter: grayscale(.3) contrast(1.05)
}

.country:hover .country-img img {
  opacity: .75;
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.05)
}

.country-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 16, 20, 0) 30%, rgba(16, 16, 20, .95) 100%)
}

.country-body {
  position: relative;
  z-index: 2;
  padding: 28px 26px 26px
}

.country-flag {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 38px;
  height: 26px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .4);
  overflow: hidden
}

.country-flag svg {
  width: 100%;
  height: 100%;
  display: block
}

.country-no {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: .22em;
  font-weight: 500
}

.country-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .04em;
  color: #fff;
  line-height: 1
}

.country-sub {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-top: 6px
}

.country-meta {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  border-top: 1px solid var(--line-2);
  padding-top: 18px
}

.country-meta div {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.country-meta b {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff
}

.country-meta span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .2em;
  text-transform: uppercase
}

.country-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  color: #fff
}

.country-link .arr {
  width: 24px;
  height: 1px;
  background: var(--accent);
  position: relative
}

.country-link .arr::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  transform: rotate(45deg)
}

/* Europe map decoration */
.presence-map {
  position: absolute;
  right: -100px;
  top: 60px;
  width: 520px;
  height: 520px;
  opacity: .06;
  pointer-events: none;
  z-index: 0
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 120px var(--pad);
  overflow: hidden;
  border-bottom: 1px solid var(--line)
}

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

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35
}

.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 13, .95) 0%, rgba(10, 10, 13, .6) 100%)
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center
}

.cta h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(36px, 5vw, 72px);
  line-height: .98;
  letter-spacing: .005em;
  margin: 18px 0 0
}

.cta h2 .acc {
  color: var(--accent);
  font-style: italic;
  font-weight: 500
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.cta-right p {
  color: var(--muted-2);
  font-size: 16px;
  line-height: 1.7;
  margin: 0
}

.cta-contacts {
  display: grid;
  gap: 14px;
  margin-top: 8px
}

.cta-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line)
}

.cta-contact:last-child {
  border-bottom: 0
}

.cta-contact .ico {
  width: 38px;
  height: 38px;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%)
}

.cta-contact .ico svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6
}

.cta-contact .lbl {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 10px;
  color: var(--muted)
}

.cta-contact .val {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  letter-spacing: .02em
}

.cta-row {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap
}

/* ===== Footer ===== */
footer.site {
  background: #070709;
  padding: 80px var(--pad) 0;
  border-top: 1px solid var(--line)
}

.ft-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line)
}

.ft-brand {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ft-brand .brand {
  margin-bottom: 0
}

.ft-brand p {
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  max-width: 340px
}

.ft-soc {
  display: flex;
  gap: 10px;
  margin-top: 8px
}

.ft-soc a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: .2s
}

.ft-soc a:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.ft-col h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: #fff;
  margin: 0 0 22px;
  font-weight: 500;
  position: relative;
  padding-bottom: 14px
}

.ft-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--accent)
}

.ft-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.ft-col a {
  color: var(--muted-2);
  font-size: 14px;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.ft-col a:hover {
  color: var(--accent)
}

.ft-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.ft-contact-item .ico {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px
}

.ft-contact-item .ico svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6
}

.ft-contact-item .v {
  font-size: 14px;
  color: #cfcfd4;
  line-height: 1.55
}

.ft-contact-item .v b {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  flex-wrap: wrap;
  gap: 18px
}

.ft-bottom .copy {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  color: var(--muted)
}

.ft-bottom .creator {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  color: var(--muted)
}

.ft-bottom .creator a {
  color: var(--muted);
  transition: .2s
}

.ft-bottom .creator a:hover {
  color: var(--accent)
}

.ft-bottom .links {
  display: flex;
  gap: 24px
}

.ft-bottom .links a {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  color: var(--muted);
  transition: .2s
}

.ft-bottom .links a:hover {
  color: var(--accent)
}

/* Responsive — keep desktop fidelity but degrade gracefully */
@media (max-width:1180px) {
  .nav-toggle {
    display: block
  }

  nav.main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 13, 0.98);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 40px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
    z-index: 99;
    pointer-events: none;
  }

  body.nav-open header.site {
    background: transparent !important;
    backdrop-filter: none !important;
    border-color: transparent !important;
  }

  body.nav-open nav.main {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  nav.main a {
    font-size: 22px;
    letter-spacing: 0.1em;
    padding: 10px 0;
  }

  nav.main a::after {
    bottom: 0;
  }

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

  .stat:nth-child(2) {
    border-right: 0
  }

  .stat {
    border-bottom: 1px solid var(--line)
  }

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

  .services-grid {
    grid-template-columns: 1fr 1fr
  }

  .refs-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .serv-ref {
    grid-template-columns: 1fr
  }

  .who {
    grid-template-columns: 1fr
  }

  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

@media (max-width:720px) {
  :root {
    --pad: 20px
  }

  .lang-desktop {
    display: none
  }

  .lang-dropdown {
    display: block
  }

  .nav {
    padding: 12px var(--pad);
    gap: 16px
  }

  .nav-right {
    gap: 16px
  }

  .brand-mark {
    width: 36px;
    height: 36px
  }

  .brand-text .bt-1 {
    font-size: 20px
  }

  .brand-text .bt-2 {
    font-size: 8px;
    letter-spacing: .22em;
    margin-top: 2px
  }

  .hero {
    height: auto;
    padding: 140px 0 80px
  }

  .hero-logo {
    width: 80vw
  }

  .hero-tag-stack {
    min-height: 115px
  }

  .hero-scroll {
    display: none
  }

  .hero-arrows {
    right: var(--pad)
  }

  .stats,
  .countries,
  .services-grid,
  .ft-top {
    grid-template-columns: 1fr
  }

  .refs-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .stat {
    border-right: 0
  }

  .hero-meta {
    display: none
  }
}

@media (max-width:480px) {
  :root {
    --pad: 16px
  }

  .nav {
    padding: 10px var(--pad);
    gap: 12px
  }

  .nav-right {
    gap: 10px
  }

  .brand-mark {
    width: 32px;
    height: 32px
  }

  .brand-text .bt-1 {
    font-size: 18px
  }

  .brand-text .bt-2 {
    font-size: 8px;
    letter-spacing: .16em;
    margin-top: 2px
  }

  .hero-tag-stack {
    min-height: 135px
  }

  .hero-cta-row {
    margin-top: 36px;
    gap: 12px
  }

  .btn {
    padding: 12px 20px;
    font-size: 11px
  }

  .hero-progress {
    gap: 12px
  }

  .hero-progress .bar {
    width: 16px
  }

  .hero-arrow {
    width: 38px;
    height: 38px
  }

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

/* small util */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ===== Leadership ===== */
.leadership {
  background: linear-gradient(90deg, #020202 35%, rgba(2, 2, 2, 0.8) 50%, rgba(2, 2, 2, 0) 70%), url('/img/home/apex-csorba-krisztian.jpeg') no-repeat right center / contain;
  background-color: #020202;
  border-bottom: 1px solid var(--line);
  padding: 96px var(--pad);
  position: relative
}

.leader-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center
}

.leader-img {
  display: none;
  aspect-ratio: 1/1.1;
  background: #000;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px)
}

.leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .65;
  filter: contrast(1.05) grayscale(.2);
  transition: transform .5s
}

.leader-img:hover img {
  transform: scale(1.03);
  opacity: .8;
  filter: contrast(1.05) grayscale(0)
}

.leader-signature-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-size: 24px;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .05em;
  pointer-events: none
}

.leader-text {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.leader-text h2 {
  margin: 14px 0 0
}

.leader-quote {
  position: relative;
  padding-left: 36px;
  margin: 12px 0 8px
}

.leader-quote .quote-mark {
  position: absolute;
  left: 0;
  top: -12px;
  font-size: 64px;
  color: var(--accent);
  font-family: serif;
  line-height: 1
}

.leader-quote p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
  font-style: italic
}

.leader-meta {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.leader-meta .name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase
}

.leader-meta .role {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: .22em;
  text-transform: uppercase
}

.leader-meta .email {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-top: 2px
}

.leader-meta .email a {
  color: var(--muted-2);
  text-decoration: none;
  transition: color 0.2s ease
}

.leader-meta .email a:hover {
  color: var(--accent)
}

/* ===== HSE ===== */
.hse {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 96px var(--pad);
  position: relative;
  overflow: hidden
}

.hse-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(233, 120, 23, .03) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none
}

.hse-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  margin-bottom: 64px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2
}

.hse-head h2 {
  margin: 14px 0 0;
  max-width: 680px
}

.hse-head p {
  color: var(--muted-2);
  max-width: 440px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0
}

.hse-certs {
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2
}

.hse-cert-lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 40px 32px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px)
}

.hse-main-badge {
  width: 88px;
  height: 88px
}

.hse-cert-lead h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .08em;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  max-width: 200px;
  line-height: 1.3
}

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

.hse-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 32px 28px;
  transition: .25s;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 20px;
  align-items: flex-start
}

.hse-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: .3s
}

.hse-card:hover::before {
  height: 100%
}

.hse-card:hover {
  border-color: var(--line-2);
  background: var(--bg-card-2);
  transform: translateY(-2px)
}

.hse-badge-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--accent-soft);
  line-height: 1;
  margin-top: -4px
}

.hse-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.hse-card-body .h3 {
  margin: 0;
  font-size: 24px;
  color: #fff
}

.hse-card-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px
}

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

/* Responsive updates */
@media (max-width:1180px) {
  .hse-certs {
    grid-template-columns: 1fr;
    gap: 32px
  }

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

/* ===== Subpage: Projects ===== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line)
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 13, .85) 0%, rgba(10, 10, 13, .4) 50%, rgba(10, 10, 13, .95) 100%);
  z-index: 1
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 var(--pad);
  margin-top: 60px
}

.page-hero-inner .h1 {
  margin: 0 0 16px;
  text-transform: uppercase
}

.page-hero-inner .body {
  font-size: 18px;
  color: var(--muted-2)
}

.projects-page {
  padding: 80px 0;
  background: var(--bg)
}

.projects-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 64px;
  flex-wrap: wrap;
  padding: 0 var(--pad)
}

.projects-filter button {
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 10px 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .25s;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px)
}

.projects-filter button:hover {
  border-color: var(--line-2);
  color: #fff
}

.projects-filter button.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 0 var(--pad);
  max-width: 1400px;
  margin: 0 auto
}

.proj-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: .3s;
  cursor: pointer;
  position: relative;
  text-decoration: none
}

.proj-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: .4s
}

.proj-card:hover::after {
  width: 100%
}

.proj-card:hover {
  border-color: var(--line-2);
  background: var(--bg-card-2);
  transform: translateY(-4px)
}

.proj-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative
}

.proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
  opacity: .8;
  filter: contrast(1.1) grayscale(.1)
}

.proj-card:hover .proj-img img {
  transform: scale(1.05);
  opacity: 1;
  filter: contrast(1.1) grayscale(0)
}

.proj-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1
}

.proj-meta {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500
}

.proj-body .h3 {
  margin: 0 0 12px;
  color: #fff
}

.proj-body .small {
  margin: 0;
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.6
}

/* ===== Subpage: Contact ===== */
.contact-page {
  padding: 80px 0;
  background: var(--bg)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad)
}

.contact-sec-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 36px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 12px;
  display: inline-block
}

.office-cards {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.office-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 24px 28px;
  transition: .25s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px)
}

.office-card:hover {
  border-color: var(--line-2);
  background: var(--bg-card-2);
  transform: translateY(-2px)
}

.office-header {
  display: flex;
  align-items: center;
  gap: 14px
}

.office-flag {
  font-size: 22px;
  line-height: 1
}

.office-header h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .06em;
  margin: 0;
  text-transform: uppercase
}

.office-details {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-2);
  display: flex;
  flex-direction: column;
  gap: 6px
}

.office-details .company-name {
  font-weight: 600;
  color: #fff;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase
}

.office-details .address {
  color: var(--muted-2)
}

.office-meta {
  display: flex;
  gap: 8px;
  font-size: 13px;
  margin-top: 4px
}

.office-meta .lbl {
  color: var(--muted);
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em
}

.office-meta a {
  color: var(--accent);
  text-decoration: none;
  transition: .2s
}

.office-meta a:hover {
  color: #fff;
  text-decoration: underline
}

.contact-form-container {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 48px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%
}

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

.form-group {
  position: relative;
  width: 100%;
  margin-top: 10px
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color .3s;
  resize: none
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--accent)
}

.form-group label {
  position: absolute;
  left: 0;
  top: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: transform .3s, font-size .3s, color .3s;
  pointer-events: none;
  transform-origin: top left
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
  transform: translateY(-20px) scale(0.85);
  color: var(--accent)
}

.form-submit-row {
  margin-top: 12px;
  display: flex;
  justify-content: flex-start
}

.contact-success-msg {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px;
  z-index: 10;
  opacity: 0;
  transition: opacity .4s ease
}

.contact-success-msg.active {
  display: flex;
  opacity: 1
}

.contact-success-msg .success-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  color: var(--accent)
}

.contact-success-msg .success-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5
}

.contact-success-msg h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 12px
}

.contact-success-msg p {
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 360px;
  margin: 0 0 32px
}

@media (max-width:900px) {
  .projects-grid {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }
}

@media (max-width:720px) {
  .page-hero {
    min-height: 340px
  }

  .page-hero-inner {
    margin-top: 40px
  }

  .projects-filter {
    gap: 8px;
    margin-bottom: 40px
  }

  .projects-filter button {
    padding: 8px 16px;
    font-size: 12px
  }

  .proj-body {
    padding: 24px
  }

  .leadership {
    background: #0a0a0d !important
  }

  .leader-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important
  }

  .leader-img {
    display: block !important;
    width: 100% !important;
    aspect-ratio: 1/1.1 !important
  }

  .contact-form-container {
    padding: 32px
  }

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

  .who-feat {
    grid-template-columns: 1fr !important;
  }

  .feat {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important
  }

  .feat-text {
    order: 1 !important
  }

  .feat-img {
    order: 2 !important;
    margin: 0 !important;
    border-left: none !important
  }
}

/* ===== Dedicated About Page ===== */
.about-advantages {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 96px var(--pad);
  position: relative;
}

.about-adv-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.about-adv-head {
  margin-bottom: 64px;
  text-align: center;
}

.about-adv-head h2 {
  margin: 14px 0 0;
}

.about-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 48px 36px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.adv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.3s ease;
}

.adv-card:hover::before {
  height: 100%;
}

.adv-card:hover {
  border-color: var(--line-2);
  background: var(--bg-card-2);
  transform: translateY(-4px);
}

.adv-ico {
  width: 48px;
  height: 48px;
  color: var(--accent);
}

.adv-ico svg {
  width: 100%;
  height: 100%;
}

.adv-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.adv-body h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.adv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.adv-list li {
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.adv-list li .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  display: inline-block;
}

.adv-stats-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.adv-stat-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.adv-stat-item .num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.adv-stat-item .lbl {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.adv-sq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.adv-sq-item h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 4px;
}

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

/* ===== Team Section ===== */
.team-section {
  background: var(--bg);
  padding: 96px var(--pad);
  border-bottom: 1px solid var(--line);
}

.team-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.team-head {
  margin-bottom: 64px;
  text-align: center;
}

.team-head h2 {
  margin: 14px 0 0;
}

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

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.team-card:hover {
  border-color: var(--line-2);
  background: var(--bg-card-2);
  transform: translateY(-4px);
}

.team-img-container {
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  position: relative;
  background: #0d0d10;
  border-bottom: 1px solid var(--line);
}

.team-avatar-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 54px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #1b1b22 0%, #08080a 100%);
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
}

.team-avatar-initials::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(233, 120, 23, 0.15);
  pointer-events: none;
  transition: border-color 0.3s ease;
}

.team-card:hover .team-avatar-initials {
  color: var(--accent);
  background: linear-gradient(135deg, #22222a 0%, #0d0d10 100%);
}

.team-card:hover .team-avatar-initials::after {
  border-color: rgba(233, 120, 23, 0.4);
}

.team-meta {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-meta .name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

.team-meta .role {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.team-meta .email {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.team-meta .email a {
  color: var(--muted-2);
  text-decoration: none;
  transition: color 0.2s ease;
}

.team-meta .email a:hover {
  color: var(--accent);
}

@media (max-width: 992px) {

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

@media (max-width: 640px) {

  .about-adv-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-advantages,
  .team-section {
    padding: 64px var(--pad);
  }

  .adv-card {
    padding: 32px 24px;
  }
}

/* ===== Privacy Page ===== */
.privacy-page {
  background: var(--bg);
  padding: 96px var(--pad);
  border-bottom: 1px solid var(--line);
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 64px 48px;
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}

.privacy-content h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.privacy-content h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 24px 0 8px;
}

.privacy-content p {
  margin: 0 0 16px;
  color: var(--muted-2);
}

.privacy-content ul {
  margin: 0 0 24px;
  padding-left: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy-content ul li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-2);
}

.privacy-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.privacy-content a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.privacy-content a:hover {
  color: #fff;
  text-decoration: underline;
}

.privacy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
}

.privacy-content th,
.privacy-content td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.privacy-content th {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.privacy-content td {
  color: var(--muted-2);
}

@media (max-width: 720px) {
  .privacy-container {
    padding: 32px 20px;
  }
}

/* ===== Cookie Popup ===== */
.cookie-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 1000;
  background: rgba(21, 21, 26, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 20px 24px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  max-width: 600px;
  margin-left: auto;
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
}

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

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

.cookie-text p a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-text p a:hover {
  color: #fff;
}

.cookie-buttons {
  flex-shrink: 0;
}

.cookie-popup .btn {
  padding: 10px 20px;
  font-size: 11px;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

@media (max-width: 640px) {
  .cookie-popup {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cookie-buttons {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
}

/* ========================================== */
/* ===== Subpage: Services ===== */
/* ========================================== */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs .sep {
  color: var(--line-2);
}

.breadcrumbs .curr {
  color: #fff;
}

.services-intro-section {
  padding: 80px 0 60px;
  background: var(--bg);
  text-align: center;
}

.services-intro-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.body-lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--muted-2);
  margin-top: 24px;
}

.body-lead.max-width {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Detail Grid */
.services-detail-section {
  padding: 0 0 100px;
  background: var(--bg);
}

.services-detail-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.svc-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 40px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.svc-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-detail-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233, 120, 23, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.svc-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.svc-detail-icon {
  color: var(--accent);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-detail-icon svg {
  width: 100%;
  height: 100%;
}

.svc-detail-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--line-2);
}

.svc-detail-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.svc-detail-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}

.svc-detail-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 30px;
  flex-grow: 1;
}

.svc-capabilities {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.svc-cap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.svc-cap-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-cap-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}

.svc-cap-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--muted-2);
  transition: color 0.25s;
}

.svc-detail-card:hover .svc-cap-name {
  color: #fff;
}

/* Industries We Serve */
.industries-section {
  padding: 100px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.industries-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section-header.center {
  text-align: center;
  margin-bottom: 70px;
}

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

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.industry-card:hover {
  border-color: var(--line-2);
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(233, 120, 23, 0.03) 100%);
}

.industry-ico-wrapper {
  color: var(--accent);
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 3px;
}

.industry-ico-wrapper svg {
  width: 100%;
  height: 100%;
}

.industry-body {
  display: flex;
  flex-direction: column;
}

.industry-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 10px;
}

.industry-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* Why APEX Section */
.why-apex-section {
  padding: 100px 0;
  background: var(--bg);
}

.why-apex-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.why-apex-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-apex-main {
  display: flex;
  flex-direction: column;
}

.why-accent-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  color: var(--accent);
  text-transform: uppercase;
  margin: -10px 0 24px;
  font-weight: 500;
  letter-spacing: .03em;
}

.why-apex-main .body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-2);
  margin-bottom: 40px;
}

.certifications-inline {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cert-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: #fff;
  padding: 12px 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.why-stats-block {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 48px;
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}

.stats-block-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #fff;
  margin: 0 0 32px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.why-stats-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-stat-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}

.why-stat-card .number {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.why-stat-card .label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--accent);
  margin-top: 4px;
}

.why-stat-card .sub-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .services-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 992px) {
  .why-apex-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .services-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .svc-detail-card {
    padding: 30px;
  }

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

  .why-stats-block {
    padding: 32px;
  }

  .services-intro-section {
    padding: 60px 0 40px;
  }

  .why-apex-section,
  .industries-section {
    padding: 60px 0;
  }

  .body-lead {
    font-size: 18px;
  }

  .why-accent-title {
    font-size: 20px;
  }
}