:root {
  --navy-950: #050d18;
  --navy-900: #081728;
  --navy-800: #102236;
  --navy-700: #1a3552;
  --steel-700: #334155;
  --steel-500: #64748b;
  --steel-200: #d7dde5;
  --gold-500: #c99a2e;
  --gold-400: #e6bf58;
  --white: #ffffff;
  --paper: #f3f5f8;
  --ink: #0d1622;
  --muted: #596675;
  --line: rgba(15, 23, 42, 0.13);
  --line-dark: rgba(255, 255, 255, 0.13);
  --green: #147a5d;
  --shadow: 0 28px 90px rgba(5, 13, 24, 0.22);
  --shadow-soft: 0 18px 52px rgba(5, 13, 24, 0.11);
  --shadow-hard: 0 18px 44px rgba(5, 13, 24, 0.2);
  --inset-line: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  --radius: 8px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Aptos", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.032) 1px, transparent 1px),
    var(--paper);
  background-size: 120px 120px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

img,
svg,
iframe {
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--gold-400);
  color: var(--navy-950);
  font-weight: 900;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 92px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(230, 191, 88, 0.08), transparent 18%, transparent 82%, rgba(230, 191, 88, 0.05)),
    linear-gradient(180deg, rgba(5, 13, 24, 0.78), rgba(5, 13, 24, 0.18));
  transition: background 220ms ease, box-shadow 220ms ease, min-height 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  min-height: 74px;
  background: rgba(5, 13, 24, 0.9);
  border-color: rgba(216, 170, 61, 0.18);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(24px) saturate(1.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: clamp(188px, 14vw, 224px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
  transition: transform 220ms ease, filter 220ms ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.3));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand span {
  display: none;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.nav a {
  position: relative;
  padding: 11px 3px;
  transition: color 180ms ease;
}

.nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold-400);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--white);
}

.nav-cta,
.lang-switch {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 13px !important;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border-color: var(--gold-500);
  color: var(--navy-950);
  box-shadow: 0 14px 34px rgba(201, 154, 46, 0.22);
  white-space: nowrap;
}

.nav-cta:hover {
  box-shadow: 0 18px 44px rgba(201, 154, 46, 0.3);
}

.lang-switch {
  color: var(--white);
}

.nav-cta::after,
.lang-switch::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(230, 191, 88, 0.7);
  background: rgba(230, 191, 88, 0.12);
}

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

.hero {
  position: relative;
  min-height: 106vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(230, 191, 88, 0.16) 46%, transparent 58%),
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.1), transparent 21%);
  mix-blend-mode: screen;
  opacity: 0.62;
  animation: lightSweep 12s ease-in-out infinite alternate;
}

.hero::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, var(--navy-950));
}

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

.hero-media {
  background: image-set(url("assets/hero-industrial-drc.webp") type("image/webp"), url("assets/hero-industrial-drc.png") type("image/png")) center / cover no-repeat;
  transform: scale(1.03);
  filter: saturate(0.92) contrast(1.08);
  animation: heroDrift 20s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-gridline {
  z-index: 1;
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, black, transparent 82%);
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 72% 62%, rgba(230, 191, 88, 0.13), transparent 22%),
    linear-gradient(90deg, rgba(5, 13, 24, 0.98) 0%, rgba(5, 13, 24, 0.86) 43%, rgba(5, 13, 24, 0.22) 78%),
    linear-gradient(0deg, rgba(5, 13, 24, 0.94) 0%, rgba(5, 13, 24, 0.24) 48%, rgba(5, 13, 24, 0.58) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding: 170px 0 54px;
}

.hero-copy {
  min-width: 0;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(230, 191, 88, 0.22);
}

.hero h1 {
  margin: 0;
  max-width: 860px;
  font-family: "Inter", "Segoe UI", Aptos, system-ui, sans-serif;
  font-size: clamp(50px, 7.6vw, 106px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-wrap: balance;
  text-shadow: 0 22px 58px rgba(0, 0, 0, 0.46);
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.25;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 900;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.42) 50%, transparent 66%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::before {
  transform: translateX(130%);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 18px 42px rgba(201, 154, 46, 0.28);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.button.whatsapp-inline,
.whatsapp-float {
  background: var(--green);
  color: var(--white);
}

.button.dark {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

.hero-command,
.premium-card,
.product-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(5, 13, 24, 0.76);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 34px 90px rgba(0, 0, 0, 0.34);
}

.hero-command {
  align-self: end;
  padding: 26px;
  transform: translateY(10px);
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.hero-command:hover {
  transform: translateY(4px);
  border-color: rgba(230, 191, 88, 0.28);
}

.hero-command p,
.hero-command dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-command > strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.16;
}

.hero-command dl {
  display: grid;
  gap: 1px;
  margin: 26px 0 0;
  background: rgba(255, 255, 255, 0.14);
}

.hero-command div {
  padding: 14px 0;
  background: rgba(5, 13, 24, 0.62);
}

.hero-command dd {
  margin: 4px 0 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 64px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.13);
}

.hero-stats span {
  display: grid;
  gap: 4px;
  min-height: 78px;
  padding: 16px;
  background: rgba(5, 13, 24, 0.66);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.hero-stats strong {
  color: var(--white);
  font-size: 24px;
  line-height: 1;
}

.proof-strip {
  background: linear-gradient(90deg, var(--navy-950), var(--navy-900));
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

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

.proof-grid span {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-grid span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-trust {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 94px;
}

.trust-rail > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-rail div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.trust-rail b {
  display: inline-grid;
  min-width: 92px;
  min-height: 42px;
  place-items: center;
  padding: 0 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: linear-gradient(180deg, var(--white), #f8fafc);
  color: var(--navy-900);
  font-size: 12px;
  letter-spacing: 0.12em;
  box-shadow: inset 0 -2px 0 rgba(201, 154, 46, 0.12);
}

.section,
.section-band {
  position: relative;
  padding: clamp(96px, 10vw, 154px) 0;
}

.section::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.12), transparent);
}

.section::after {
  position: absolute;
  left: max(20px, calc((100% - 1180px) / 2));
  top: 0;
  width: 92px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--gold-500), transparent);
  opacity: 0.62;
}

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

.intro-grid,
.feature-grid,
.process-grid,
.contact-grid,
.contact-layout,
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h2 {
  color: var(--navy-900);
  font-size: clamp(36px, 5.2vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h3 {
  color: var(--navy-900);
  font-size: 21px;
  line-height: 1.2;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

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

.quote {
  border-left: 4px solid var(--gold-500);
  padding-left: 18px;
  color: var(--navy-900);
  font-weight: 800;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.55fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.split-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 18px;
}

.service-grid,
.why-grid,
.sector-grid,
.testimonial-grid,
.news-grid,
.project-grid {
  display: grid;
  gap: 18px;
}

.service-grid,
.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.service-card,
.why-grid article,
.sector-grid article,
.news-card,
.project-card,
.contact-card,
blockquote {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98)),
    var(--white);
  box-shadow: var(--shadow-soft), var(--inset-line);
}

.service-card,
.why-grid article,
.sector-grid article,
.news-card,
.project-card,
blockquote {
  min-height: 250px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.service-card.has-card-media,
.why-grid article.has-card-media,
.sector-grid article.has-card-media,
.news-card.has-card-media,
.project-card.has-card-media {
  display: grid;
  grid-template-rows: 168px 1fr;
  padding: 0;
}

.card-media {
  position: relative;
  display: block;
  min-height: 168px;
  overflow: hidden;
  background: var(--navy-950);
}

.card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 13, 24, 0.08), rgba(5, 13, 24, 0.42)),
    radial-gradient(circle at 78% 18%, rgba(230, 191, 88, 0.18), transparent 30%);
}

.card-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 168px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 560ms ease, opacity 220ms ease;
}

.has-card-media:hover .card-media img {
  transform: scale(1.055);
  opacity: 0.92;
}

.card-body {
  padding: 26px;
}

.service-card::before,
.why-grid article::before,
.sector-grid article::before,
.news-card::before,
.project-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, var(--gold-400), rgba(201, 154, 46, 0));
  opacity: 0;
  transition: opacity 190ms ease;
}

.service-card::after,
.why-grid article::after,
.sector-grid article::after,
.news-card::after,
.project-card::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 42px;
  height: 42px;
  content: "";
  border-right: 1px solid rgba(15, 23, 42, 0.12);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  opacity: 0.72;
  transition: width 220ms ease, height 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.why-grid article:hover,
.sector-grid article:hover,
.news-card:hover,
.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 170, 61, 0.5);
  box-shadow: var(--shadow), var(--inset-line);
}

.service-card:hover::before,
.why-grid article:hover::before,
.sector-grid article:hover::before,
.news-card:hover::before,
.project-card:hover::before {
  opacity: 1;
}

.service-card:hover::after,
.why-grid article:hover::after,
.sector-grid article:hover::after,
.news-card:hover::after,
.project-card:hover::after {
  width: 58px;
  height: 58px;
  border-color: rgba(201, 154, 46, 0.42);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  border: 1px solid rgba(201, 154, 46, 0.22);
  background: linear-gradient(180deg, rgba(230, 191, 88, 0.16), rgba(201, 154, 46, 0.08));
  color: var(--gold-500);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(201, 154, 46, 0.12);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.service-card:hover .card-icon,
.why-grid article:hover .card-icon,
.sector-grid article:hover .card-icon {
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(230, 191, 88, 0.24), rgba(201, 154, 46, 0.12));
}

.card-icon svg {
  width: 25px;
  height: 25px;
}

.service-card p,
.why-grid p,
.sector-grid p,
.news-card p,
.project-card p,
.steps span {
  margin-top: 14px;
  color: var(--muted);
}

.section-link {
  margin-top: 24px;
}

.impact-strip {
  padding: 44px 0;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
  border-block: 1px solid var(--line);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.impact-item {
  min-height: 144px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  background: var(--white);
  transition: transform 180ms ease, background 180ms ease;
}

.impact-item:hover {
  transform: translateY(-3px);
  background: #fbfcfe;
}

.impact-item strong {
  color: var(--navy-900);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.9;
}

.impact-item span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-premium {
  background: linear-gradient(180deg, var(--white), #f7f9fc);
}

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

.premium-reason {
  min-height: 280px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.92)),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.premium-reason:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 154, 46, 0.36);
}

.premium-reason span {
  display: block;
  margin-bottom: 38px;
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.premium-reason p {
  margin-top: 14px;
  color: var(--muted);
}

.strategic-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 154, 46, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(5, 13, 24, 0.99), rgba(8, 23, 40, 0.97)),
    var(--navy-950);
  color: rgba(255, 255, 255, 0.76);
}

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

.strategic-section .split-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.strategic-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
}

.strategic-card {
  min-height: 310px;
  padding: 0 18px 22px;
  background: rgba(255, 255, 255, 0.035);
  border-right: 1px solid var(--line-dark);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.strategic-media {
  display: block;
  height: 128px;
  margin: 0 -18px 20px;
  overflow: hidden;
  background: var(--navy-950);
}

.strategic-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.85) contrast(1.08);
  transition: transform 520ms ease, opacity 220ms ease;
}

.strategic-card:hover .strategic-media img {
  transform: scale(1.06);
  opacity: 0.9;
}

.strategic-card:last-child {
  border-right: 0;
}

.strategic-card:hover {
  background: rgba(216, 170, 61, 0.1);
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(230, 191, 88, 0.18);
}

.strategic-index {
  display: block;
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.strategic-card i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 26px 0;
  color: var(--gold-400);
  background: rgba(216, 170, 61, 0.12);
  font-style: normal;
}

.strategic-card svg {
  width: 24px;
  height: 24px;
}

.strategic-card h3 {
  font-size: 18px;
}

.strategic-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.55;
}

.visual-section {
  background: var(--paper);
}

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

.visual-grid figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--navy-950);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.visual-grid figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 36%);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.visual-grid picture,
.visual-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.visual-grid img {
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 600ms ease;
}

.visual-grid figure:hover img {
  transform: scale(1.055);
}

.visual-grid figure:hover::after {
  opacity: 1;
}

.visual-grid figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 13, 24, 0.88);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.visual-grid strong,
.visual-grid span {
  display: block;
}

.visual-grid strong {
  font-size: 18px;
}

.visual-grid span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.illustrated-sectors {
  background: var(--white);
}

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

.sector-visual-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--navy-950);
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.sector-visual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 96px rgba(5, 13, 24, 0.28);
}

.sector-visual-card picture,
.sector-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.sector-visual-card img {
  object-fit: cover;
  opacity: 0.74;
  filter: saturate(0.9) contrast(1.08);
  transition: transform 700ms ease, opacity 300ms ease;
}

.sector-visual-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 78% 20%, rgba(230, 191, 88, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(7, 20, 38, 0.1), rgba(7, 20, 38, 0.92)),
    linear-gradient(90deg, rgba(7, 20, 38, 0.52), transparent);
}

.sector-visual-card:hover img {
  transform: scale(1.06);
  opacity: 0.88;
}

.sector-visual-card div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: var(--white);
}

.sector-visual-card span {
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.sector-visual-card h3 {
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
}

.sector-visual-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.compliance-hse {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 20, 38, 0.98), rgba(16, 36, 61, 0.94)),
    var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
}

.compliance-hse::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.hse-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: stretch;
}

.hse-panel {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(216, 170, 61, 0.25);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 34px 90px rgba(0, 0, 0, 0.22);
}

.hse-panel h2 {
  color: var(--white);
}

.hse-panel p:not(.section-kicker) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

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

.hse-checklist article {
  display: flex;
  gap: 16px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hse-checklist article:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 170, 61, 0.28);
  background: rgba(216, 170, 61, 0.08);
}

.hse-checklist span {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--gold-400);
  background: rgba(216, 170, 61, 0.12);
}

.hse-checklist svg {
  width: 20px;
  height: 20px;
}

.hse-checklist h3 {
  color: var(--white);
}

.hse-checklist p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.feature {
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 170, 61, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(23, 52, 86, 0.66), transparent 45%),
    var(--navy-950);
  color: rgba(255, 255, 255, 0.78);
}

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

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

.capability-list article {
  padding: 24px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.capability-list p {
  color: rgba(255, 255, 255, 0.7);
}

.process {
  background:
    linear-gradient(135deg, rgba(216, 170, 61, 0.1), rgba(16, 36, 61, 0.08)),
    var(--paper);
}

.process-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 96px;
  padding: 20px 20px 20px 76px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98)),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(7, 20, 38, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.steps li:hover {
  transform: translateX(4px);
  border-color: rgba(201, 154, 46, 0.34);
  box-shadow: var(--shadow-soft);
}

.steps li::before {
  position: absolute;
  left: 20px;
  top: 20px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--gold-400);
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  font-size: 12px;
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.partner-showcase {
  background:
    linear-gradient(180deg, var(--white), #f7f9fc);
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.partner-mark {
  display: grid;
  min-height: 168px;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 22px;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.partner-mark:hover {
  z-index: 1;
  transform: translateY(-5px);
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
  box-shadow: var(--shadow);
}

.partner-mark span {
  display: grid;
  place-items: center;
  width: 66px;
  height: 42px;
  color: var(--navy-900);
  border: 1px solid rgba(216, 170, 61, 0.32);
  background: rgba(216, 170, 61, 0.08);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.partner-mark strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.testimonials {
  background: var(--white);
}

blockquote {
  margin: 0;
}

blockquote p {
  color: var(--navy-900);
  font-size: 19px;
  line-height: 1.45;
}

blockquote cite {
  display: block;
  margin-top: 28px;
  color: var(--gold-500);
  font-style: normal;
  font-weight: 900;
}

.quote-band {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 105px) 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 154, 46, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(5, 13, 24, 0.99), rgba(8, 23, 40, 0.95)),
    var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
}

.quote-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.55;
  pointer-events: none;
}

.quote-band-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(201, 154, 46, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(5, 13, 24, 0.54);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  isolation: isolate;
}

.quote-band h2 {
  max-width: 780px;
  color: var(--white);
}

.quote-action-panel {
  flex: 0 0 min(390px, 100%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 13, 24, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.quote-action-panel ul {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.quote-action-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.quote-action-panel svg {
  width: 18px;
  height: 18px;
  color: var(--gold-400);
}

.page-hero {
  padding: 158px 0 88px;
  background:
    linear-gradient(90deg, rgba(5, 13, 24, 0.96), rgba(5, 13, 24, 0.82) 48%, rgba(5, 13, 24, 0.42)),
    linear-gradient(0deg, rgba(5, 13, 24, 0.92), rgba(5, 13, 24, 0.36)),
    var(--navy-950);
  color: rgba(255, 255, 255, 0.78);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-about .page-hero {
  background-image:
    linear-gradient(90deg, rgba(5, 13, 24, 0.96), rgba(5, 13, 24, 0.8) 48%, rgba(5, 13, 24, 0.42)),
    linear-gradient(0deg, rgba(5, 13, 24, 0.92), rgba(5, 13, 24, 0.36)),
    image-set(url("assets/field-engineering-team.webp") type("image/webp"), url("assets/field-engineering-team.png") type("image/png"));
}

.page-sectors .page-hero {
  background-image:
    linear-gradient(90deg, rgba(5, 13, 24, 0.96), rgba(5, 13, 24, 0.8) 48%, rgba(5, 13, 24, 0.42)),
    linear-gradient(0deg, rgba(5, 13, 24, 0.92), rgba(5, 13, 24, 0.36)),
    image-set(url("assets/infrastructure-projects.webp") type("image/webp"), url("assets/infrastructure-projects.png") type("image/png"));
}

.page-products .page-hero {
  background-image:
    linear-gradient(90deg, rgba(5, 13, 24, 0.96), rgba(5, 13, 24, 0.8) 48%, rgba(5, 13, 24, 0.42)),
    linear-gradient(0deg, rgba(5, 13, 24, 0.92), rgba(5, 13, 24, 0.36)),
    image-set(url("assets/mining-supply-premium.webp") type("image/webp"), url("assets/mining-supply-premium.png") type("image/png"));
}

.page-partners .page-hero {
  background-image:
    linear-gradient(90deg, rgba(5, 13, 24, 0.96), rgba(5, 13, 24, 0.8) 48%, rgba(5, 13, 24, 0.42)),
    linear-gradient(0deg, rgba(5, 13, 24, 0.92), rgba(5, 13, 24, 0.36)),
    image-set(url("assets/international-partnerships.webp") type("image/webp"), url("assets/international-partnerships.png") type("image/png"));
}

.page-projects .page-hero {
  background-image:
    linear-gradient(90deg, rgba(5, 13, 24, 0.96), rgba(5, 13, 24, 0.8) 48%, rgba(5, 13, 24, 0.42)),
    linear-gradient(0deg, rgba(5, 13, 24, 0.92), rgba(5, 13, 24, 0.36)),
    image-set(url("assets/infrastructure-projects.webp") type("image/webp"), url("assets/infrastructure-projects.png") type("image/png"));
}

.page-news .page-hero,
.page-contact .page-hero {
  background-image:
    linear-gradient(90deg, rgba(5, 13, 24, 0.96), rgba(5, 13, 24, 0.8) 48%, rgba(5, 13, 24, 0.42)),
    linear-gradient(0deg, rgba(5, 13, 24, 0.92), rgba(5, 13, 24, 0.36)),
    image-set(url("assets/digital-operations.webp") type("image/webp"), url("assets/digital-operations.png") type("image/png"));
}

.page-hero h1 {
  max-width: 940px;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
}

.page-hero p:not(.section-kicker) {
  max-width: 780px;
  margin-top: 22px;
  font-size: 19px;
}

.page-hero .reveal {
  opacity: 1;
  transform: none;
}

.product-panel {
  padding: 32px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(16, 36, 61, 0.95), rgba(7, 20, 38, 0.98)),
    var(--navy-950);
}

.product-panel-media {
  display: block;
  height: 240px;
  margin: -32px -32px 28px;
  overflow: hidden;
  background: var(--navy-950);
}

.product-panel-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
}

.product-panel h2 {
  color: var(--white);
  font-size: clamp(34px, 4vw, 56px);
  overflow-wrap: anywhere;
}

.product-panel p {
  margin-top: 18px;
}

.product-list,
.document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-list .has-product-media {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  min-height: 96px;
  padding: 0;
  overflow: hidden;
}

.product-list .has-product-media picture,
.product-list .has-product-media img {
  display: block;
  width: 92px;
  height: 96px;
}

.product-list .has-product-media img {
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.product-list .has-product-media b {
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.35;
}

.product-list span,
.document-grid span {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy-900);
  font-weight: 800;
}

.product-list span.has-product-media {
  padding: 0;
}

.project-card span {
  color: var(--gold-500);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.project-card h2,
.news-card h2 {
  margin-top: 20px;
  font-size: clamp(26px, 3vw, 38px);
}

.news-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--navy-900);
  font-weight: 900;
}

.news-card a svg {
  width: 18px;
}

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

.quote-form,
.contact-side {
  min-width: 0;
}

.form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.form p:not(.section-kicker) {
  margin-top: 12px;
  color: var(--muted);
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 900;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  color: var(--ink);
  font-style: normal;
}

.contact-card span {
  display: grid;
  gap: 4px;
  color: var(--muted);
}

.contact-card strong {
  color: var(--navy-900);
}

.contact-card a {
  color: var(--green);
  font-weight: 900;
}

.map-card {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: var(--navy-950);
  min-height: 330px;
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 330px;
  border: 0;
  filter: saturate(0.85) contrast(1.02);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 8px 16px 8px 8px;
  box-shadow: 0 18px 40px rgba(8, 26, 18, 0.28);
  font-weight: 900;
}

.whatsapp-float span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
}

.premium-footer {
  position: relative;
  background:
    radial-gradient(circle at 15% 0%, rgba(201, 154, 46, 0.12), transparent 30%),
    linear-gradient(180deg, #06111f, #020711);
  color: rgba(255, 255, 255, 0.72);
  padding: 78px 0 28px;
  overflow: hidden;
}

.premium-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 88px 88px;
}

.premium-footer::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(230, 191, 88, 0.09) 50%, transparent 62%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.07), transparent 24%);
  pointer-events: none;
}

.premium-footer > * {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.7fr 0.9fr;
  gap: clamp(28px, 5vw, 70px);
}

.footer-grid > div {
  min-width: 0;
}

.footer-logo {
  width: 188px;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.28));
}

.footer p {
  max-width: 390px;
  margin-top: 18px;
}

.footer h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer a,
.footer span {
  display: block;
  margin-top: 9px;
  transition: color 180ms ease, transform 180ms ease;
}

.footer a:hover {
  color: var(--gold-400);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.service-card.reveal,
.why-grid article.reveal,
.sector-grid article.reveal,
.project-card.reveal,
.news-card.reveal,
.premium-reason.reveal {
  transform: translateY(28px) scale(0.985);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes heroDrift {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(1.5%, -1%, 0); }
}

@keyframes lightSweep {
  from { transform: translateX(-4%) skewX(-4deg); opacity: 0.42; }
  to { transform: translateX(4%) skewX(-4deg); opacity: 0.72; }
}

@media (max-width: 1120px) {
  .site-header {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(5, 13, 24, 0.99);
    box-shadow: var(--shadow);
    border: 1px solid rgba(201, 154, 46, 0.2);
    backdrop-filter: blur(20px);
  }

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

  .nav a,
  .nav-cta,
  .lang-switch {
    padding: 13px 10px !important;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 104svh;
  }

  .hero-content,
  .intro-grid,
  .feature-grid,
  .process-grid,
  .contact-grid,
  .contact-layout,
  .product-layout,
  .hse-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .why-grid,
  .sector-grid,
  .project-grid,
  .news-grid,
  .testimonial-grid,
  .visual-grid,
  .strategic-grid,
  .impact-grid,
  .premium-reasons,
  .sector-visual-grid,
  .hse-checklist,
  .partner-logo-grid,
  .proof-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strategic-card {
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-command {
    max-width: 620px;
    transform: none;
  }

  .quote-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-action-panel {
    width: 100%;
  }

  .trust-rail {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0;
  }

  .trust-rail div {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 32px, 1180px);
  }

  .site-header {
    min-height: 70px;
    padding: 13px 16px;
    background: rgba(5, 13, 24, 0.86);
    backdrop-filter: blur(18px);
  }

  .brand-logo {
    width: 156px;
  }

  .hero {
    min-height: 108svh;
  }

  .hero::before {
    opacity: 0.42;
  }

  .hero-gridline {
    background-size: 72px 72px;
    opacity: 0.14;
  }

  .hero-content {
    padding-top: 118px;
    padding-bottom: 34px;
    gap: 26px;
  }

  .hero h1 {
    font-size: clamp(42px, 11.5vw, 64px);
    line-height: 0.92;
  }

  .hero-lead {
    font-size: 18px;
    line-height: 1.34;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-command {
    padding: 20px;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.3);
  }

  .hero-command > strong {
    font-size: 21px;
  }

  .hero-stats,
  .service-grid,
  .why-grid,
  .sector-grid,
  .project-grid,
  .news-grid,
  .testimonial-grid,
  .visual-grid,
  .strategic-grid,
  .impact-grid,
  .premium-reasons,
  .sector-visual-grid,
  .hse-grid,
  .hse-checklist,
  .partner-logo-grid,
  .proof-grid,
  .product-list,
  .document-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .strategic-card {
    min-height: auto;
    border-right: 0;
  }

  .hero-stats span,
  .proof-grid span {
    min-height: 62px;
  }

  .section,
  .section-band {
    padding: 76px 0;
  }

  h2 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .service-card,
  .why-grid article,
  .sector-grid article,
  .news-card,
  .project-card,
  blockquote {
    min-height: auto;
    padding: 24px;
  }

  .service-card.has-card-media,
  .why-grid article.has-card-media,
  .sector-grid article.has-card-media,
  .news-card.has-card-media,
  .project-card.has-card-media {
    grid-template-rows: 190px 1fr;
    padding: 0;
  }

  .card-media,
  .card-media img {
    min-height: 190px;
  }

  .strategic-media {
    height: 180px;
  }

  .product-panel-media {
    height: 210px;
  }

  .product-list .has-product-media {
    grid-template-columns: 86px 1fr;
  }

  .product-list .has-product-media picture,
  .product-list .has-product-media img {
    width: 86px;
  }

  .page-hero {
    padding: 128px 0 66px;
  }

  .sector-visual-card {
    min-height: 420px;
  }

  .quote-band-inner,
  .hse-panel {
    padding: 24px;
  }

  .hse-checklist article {
    min-height: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding-right: 12px;
  }

  .whatsapp-float strong {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
