:root {
  --black: #05070a;
  --carbon: #0a0f16;
  --panel: #0d131d;
  --panel-strong: #121b29;
  --blue: #0b3d91;
  --blue-hot: #1f70ff;
  --amber: #f5b116;
  --steel: #aab4c2;
  --muted: #7f8a99;
  --text: #f4f7fb;
  --line: rgba(170, 180, 194, 0.2);
  --white-soft: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 96px 96px,
    var(--black);
  font-family: Aptos, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(11, 61, 145, 0.22), transparent 34%),
    linear-gradient(310deg, rgba(245, 177, 22, 0.1), transparent 26%);
  opacity: 0.55;
  z-index: -1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  background: var(--amber);
  color: #09111d;
  font-weight: 800;
  transition: transform 0.2s ease;
}

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

.logo-reveal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #ffffff;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

.logo-reveal.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.reveal-shell {
  width: min(620px, 82vw);
  display: grid;
  justify-items: center;
  gap: 1.1rem;
  transform: translateY(10px);
  animation: revealLift 1.55s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.reveal-shell img {
  width: min(540px, 78vw);
  border-radius: 6px;
  background: #ffffff;
  filter: drop-shadow(0 16px 34px rgba(8, 22, 45, 0.12));
}

.reveal-shell p {
  margin: 0;
  color: #0a234f;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.reveal-line {
  width: min(360px, 64vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, #b7bec8, var(--amber), var(--blue), transparent);
  transform-origin: center;
  animation: lineRun 1.7s ease both;
}

@keyframes revealLift {
  from { opacity: 0; transform: translateY(22px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes lineRun {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  min-height: 72px;
  padding: 0.45rem clamp(1rem, 3vw, 2.4rem);
  border-bottom: 1px solid rgba(170, 180, 194, 0.18);
  background: rgba(5, 7, 10, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 132px;
  height: 54px;
  object-fit: contain;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.8rem);
}

.desktop-nav a {
  position: relative;
  color: rgba(244, 247, 251, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--amber), var(--blue-hot));
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--steel);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.phone-link:hover {
  color: var(--amber);
}

.btn {
  --btn-bg: rgba(255, 255, 255, 0.08);
  --btn-text: var(--text);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--btn-bg);
  color: var(--btn-text);
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transition: transform 0.6s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(245, 177, 22, 0.55);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(120%) skewX(-18deg);
}

.btn span,
.btn svg {
  position: relative;
  z-index: 1;
}

.btn-primary,
.btn-quote {
  --btn-bg: linear-gradient(135deg, var(--amber), #ffcf5a 46%, #d89a00);
  --btn-text: #07101c;
  border-color: rgba(255, 211, 105, 0.62);
}

.btn-secondary {
  --btn-bg: rgba(13, 19, 29, 0.72);
  border-color: rgba(170, 180, 194, 0.34);
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 0;
  display: grid;
  align-content: center;
  align-items: center;
  row-gap: 0;
  padding: calc(72px + 1rem) clamp(1rem, 4vw, 4rem) clamp(2rem, 6vh, 4.5rem);
  overflow: hidden;
  isolation: isolate;
  background: #020407;
}

.hero-media,
.hero-slide,
.hero-slide img,
.hero-gradient {
  position: absolute;
  inset: 0;
}

.hero-media {
  top: 72px;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 44%, rgba(31, 112, 255, 0.14), transparent 34%),
    #020407;
}

.hero-slide {
  opacity: 0;
  animation: heroFade 3s infinite;
  will-change: opacity, transform;
}

.hero-slide:nth-child(2) {
  animation-delay: 1s;
}

.hero-slide:nth-child(3) {
  animation-delay: 2s;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.96) contrast(1.02);
}

.hero-gradient {
  background:
    linear-gradient(90deg, #020407 0%, rgba(5, 7, 10, 0.96) 28%, rgba(5, 7, 10, 0.58) 52%, rgba(5, 7, 10, 0.08) 82%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.24) 0%, transparent 34%, rgba(5, 7, 10, 0.96) 100%),
    linear-gradient(135deg, rgba(11, 61, 145, 0.3), transparent 38%);
}

@keyframes heroFade {
  0%, 29% { opacity: 1; transform: scale(1); }
  38%, 100% { opacity: 0; transform: scale(1.025); }
}

.hero-track {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: 2rem;
  display: flex;
  gap: 0.5rem;
}

.hero-track span {
  width: clamp(46px, 7vw, 86px);
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.hero-track span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--amber), var(--blue-hot));
  animation: trackRun 3s infinite;
}

.hero-track span:nth-child(2)::after {
  animation-delay: 1s;
}

.hero-track span:nth-child(3)::after {
  animation-delay: 2s;
}

@keyframes trackRun {
  0% { transform: scaleX(0); opacity: 1; }
  29% { transform: scaleX(1); opacity: 1; }
  30%, 100% { transform: scaleX(1); opacity: 0; }
}

.hero-content {
  width: min(690px, 100%);
  padding-top: clamp(1.2rem, 5vh, 3.8rem);
  padding-bottom: 0;
  will-change: transform;
}

.hero-logo {
  display: none;
  width: min(360px, 76vw);
  margin-bottom: 1.1rem;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.9rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Aptos Display", "Segoe UI Variable Display", Aptos, "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(1.95rem, 3.5vw, 3.55rem);
  line-height: 1.04;
}

.hero-copy {
  max-width: 610px;
  margin: 0.85rem 0 0;
  color: rgba(244, 247, 251, 0.82);
  font-size: clamp(0.92rem, 1.25vw, 1.04rem);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.05rem;
}

.stats-band {
  position: relative;
  z-index: 2;
  padding: clamp(1rem, 2.2vw, 1.45rem) clamp(1rem, 4vw, 4rem);
  border-top: 1px solid rgba(170, 180, 194, 0.16);
  border-bottom: 1px solid rgba(170, 180, 194, 0.16);
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.98), rgba(8, 17, 32, 0.95) 50%, rgba(5, 7, 10, 0.98)),
    radial-gradient(circle at 18% 50%, rgba(245, 177, 22, 0.13), transparent 30%);
}

.hero-stats {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(170, 180, 194, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 61, 145, 0.18), rgba(5, 7, 10, 0.82) 46%, rgba(5, 7, 10, 0.72)),
    rgba(8, 12, 19, 0.7);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  will-change: transform;
}

.hero-stats div {
  padding: clamp(0.85rem, 1.5vw, 1.15rem) clamp(0.9rem, 1.8vw, 1.4rem);
  border-right: 1px solid rgba(170, 180, 194, 0.18);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: var(--amber);
  font-family: "Aptos Display", "Segoe UI Variable Display", Aptos, "Segoe UI", sans-serif;
  font-size: clamp(1.15rem, 2.25vw, 2.2rem);
  font-weight: 950;
  line-height: 1.1;
}

.hero-stats strong span {
  display: inline;
  margin-top: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.hero-stats .stat-label {
  display: block;
  margin-top: 0.35rem;
  color: var(--steel);
  font-size: clamp(0.76rem, 1vw, 0.88rem);
  font-weight: 700;
}

.section {
  position: relative;
  padding: clamp(3.2rem, 6vw, 5.8rem) 0;
  scroll-margin-top: 82px;
}

.section-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.two-column,
.industry-layout,
.quote-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.copy-block h2,
.section-heading h2,
.industry-copy h2,
.quality-panel h2,
.quote-copy h2,
.contact-copy h2 {
  font-size: clamp(1.95rem, 3.8vw, 3.55rem);
  line-height: 1.04;
}

.copy-block p,
.industry-copy p,
.quality-panel p,
.quote-copy p,
.contact-copy p,
.heading-copy {
  color: rgba(244, 247, 251, 0.74);
  font-size: 1.02rem;
}

.copy-block p {
  max-width: 650px;
}

.intro-band {
  border-top: 1px solid rgba(170, 180, 194, 0.13);
  background:
    linear-gradient(180deg, rgba(10, 15, 22, 0.3), rgba(10, 15, 22, 0.94)),
    radial-gradient(circle at 20% 0%, rgba(245, 177, 22, 0.08), transparent 26%);
}

.image-stack {
  position: relative;
}

.image-stack picture,
.leader-photo,
.service-media {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(170, 180, 194, 0.2);
  border-radius: 8px;
  background: #070b11;
}

.image-stack img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.steel-plate {
  width: min(410px, 88%);
  margin: -2.2rem 1rem 0 auto;
  position: relative;
  padding: 1rem;
  border-left: 3px solid var(--amber);
  background: rgba(13, 19, 29, 0.9);
  box-shadow: var(--shadow);
}

.steel-plate span {
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.steel-plate strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--text);
  font-size: 1rem;
}

.vision-mission {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: clamp(1.5rem, 4vw, 3rem);
}

.principle {
  min-height: 190px;
  padding: clamp(1.4rem, 3vw, 2.1rem);
  border: 1px solid rgba(170, 180, 194, 0.17);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 61, 145, 0.2), transparent),
    rgba(255, 255, 255, 0.04);
}

.principle span {
  color: var(--amber);
  font-weight: 900;
  text-transform: uppercase;
}

.principle p {
  margin: 1rem 0 0;
  color: rgba(244, 247, 251, 0.78);
  font-size: 1.05rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.services-section {
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.96), rgba(13, 19, 29, 0.86) 48%, rgba(5, 7, 10, 0.98)),
    repeating-linear-gradient(135deg, rgba(170, 180, 194, 0.05) 0 1px, transparent 1px 18px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(170, 180, 194, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(245, 177, 22, 0.42);
  background: rgba(255, 255, 255, 0.07);
}

.service-media {
  border-width: 0 0 1px;
  border-radius: 0;
}

.service-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.045);
}

.service-body {
  position: relative;
  padding: 1.1rem;
}

.service-body > svg {
  color: var(--amber);
  width: 1.55rem;
  height: 1.55rem;
  margin-bottom: 1rem;
}

.service-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(170, 180, 194, 0.46);
  font-family: "Aptos Display", "Segoe UI Variable Display", Aptos, "Segoe UI", sans-serif;
  font-weight: 900;
}

.service-card h3 {
  margin: 0;
  font-family: "Aptos Display", "Segoe UI Variable Display", Aptos, "Segoe UI", sans-serif;
  font-size: 1.16rem;
  line-height: 1.15;
}

.service-card p {
  color: rgba(244, 247, 251, 0.7);
  font-size: 0.93rem;
}

.service-card ul,
.checks {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-card li,
.checks span,
.industry-grid span {
  position: relative;
  color: rgba(244, 247, 251, 0.74);
  font-size: 0.9rem;
}

.service-card li {
  padding-left: 1rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--amber);
  transform: rotate(45deg);
}

.industries-section {
  background:
    linear-gradient(90deg, rgba(11, 61, 145, 0.18), rgba(5, 7, 10, 0.2)),
    url("assets/images/network-port-logistics-900.webp") center / cover;
}

.industries-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 10, 0.95), rgba(5, 7, 10, 0.78));
}

.industries-section .section-inner {
  position: relative;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.industry-grid span,
.checks span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(170, 180, 194, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
}

.leadership-section {
  background: linear-gradient(180deg, var(--black), #090d14 55%, var(--black));
}

.leaders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.leader {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(170, 180, 194, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(11, 61, 145, 0.18), transparent 45%),
    rgba(255, 255, 255, 0.045);
}

.leader-photo img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.leader-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leader-copy span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.leader-copy h3 {
  margin: 0.6rem 0 0;
  font-family: "Aptos Display", "Segoe UI Variable Display", Aptos, "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.leader-copy p {
  color: rgba(244, 247, 251, 0.72);
}

.quality-section {
  background:
    linear-gradient(180deg, rgba(13, 19, 29, 0.8), rgba(5, 7, 10, 0.96)),
    repeating-linear-gradient(90deg, rgba(245, 177, 22, 0.06) 0 1px, transparent 1px 22px);
}

.quality-panel {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-left: 4px solid var(--amber);
  background: rgba(255, 255, 255, 0.045);
}

.quality-panel strong {
  display: block;
  margin-top: 1.2rem;
  color: var(--amber);
  font-family: "Aptos Display", "Segoe UI Variable Display", Aptos, "Segoe UI", sans-serif;
  font-size: 1.2rem;
}

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

.checks span::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  margin-right: 0.65rem;
  border: 2px solid var(--amber);
  transform: rotate(45deg);
}

.quote-section {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.98), rgba(7, 26, 58, 0.66)),
    linear-gradient(180deg, rgba(245, 177, 22, 0.08), transparent);
}

.quote-copy img {
  width: min(320px, 75vw);
  margin-bottom: 1.2rem;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.quote-form {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1rem, 3vw, 1.6rem);
  border: 1px solid rgba(170, 180, 194, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.quote-form label {
  display: grid;
  gap: 0.35rem;
}

.quote-form span {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 900;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(170, 180, 194, 0.2);
  border-radius: 6px;
  outline: none;
  background: rgba(5, 7, 10, 0.78);
  color: var(--text);
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: rgba(245, 177, 22, 0.72);
  box-shadow: 0 0 0 3px rgba(245, 177, 22, 0.14);
}

.form-submit {
  --btn-text: #000000;
  width: 100%;
  margin-top: 0.2rem;
  color: #000000;
  cursor: pointer;
}

.form-submit svg,
.form-submit span {
  color: #000000;
  stroke: #000000;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.98), rgba(13, 19, 29, 0.94)),
    linear-gradient(90deg, rgba(31, 112, 255, 0.11), transparent);
}

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

.contact-actions a {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid rgba(170, 180, 194, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(245, 177, 22, 0.44);
  background: rgba(255, 255, 255, 0.07);
}

.contact-actions svg {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--amber);
}

.contact-actions span {
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-actions strong {
  overflow-wrap: anywhere;
  font-size: 1.02rem;
}

.contact-actions .address-card {
  background:
    linear-gradient(135deg, rgba(245, 177, 22, 0.1), transparent 52%),
    rgba(255, 255, 255, 0.045);
}

.contact-actions .address-card strong {
  font-size: 0.92rem;
  line-height: 1.38;
}

.site-footer {
  padding: 2.4rem clamp(1rem, 4vw, 4rem) 1.1rem;
  border-top: 1px solid rgba(170, 180, 194, 0.18);
  background: #030507;
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-logo {
  width: 220px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.footer-logo.arabic {
  justify-self: end;
}

.site-footer p {
  margin: 0.5rem 0 0.2rem;
  color: rgba(244, 247, 251, 0.74);
}

.site-footer span {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1rem;
  max-width: 430px;
}

.site-footer nav a {
  color: var(--steel);
  font-size: 0.88rem;
  font-weight: 800;
}

.site-footer nav a:hover {
  color: var(--amber);
}

.footer-bottom {
  width: min(var(--max), 100%);
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(170, 180, 194, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: #18c45f;
  color: #04110a;
  font-weight: 950;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.46);
}

.whatsapp-float svg {
  fill: currentColor;
  stroke: none;
  width: 1.3rem;
  height: 1.3rem;
}

.scroll-animate {
  --scroll-y: 18px;
  --scroll-x: 0;
  --scroll-delay: 0ms;
  opacity: 0;
  transform: translate3d(var(--scroll-x), var(--scroll-y), 0);
  transition:
    opacity 0.72s cubic-bezier(0.22, 0.68, 0.2, 1),
    transform 0.72s cubic-bezier(0.22, 0.68, 0.2, 1);
  transition-delay: var(--scroll-delay);
  will-change: opacity, transform;
}

.scroll-animate[data-animate="fade"] {
  transform: none;
  transition-duration: 0.78s;
}

.scroll-animate[data-animate="soft-left"] {
  --scroll-x: -16px;
  --scroll-y: 0;
}

.scroll-animate.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.scroll-animate.is-visible[data-animate="fade"] {
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(245, 177, 22, 0.7);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

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

  .leader {
    grid-template-columns: 1fr;
  }

  .leader-photo img {
    max-height: 540px;
  }

  .phone-link span {
    display: none;
  }
}

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

  .brand img {
    width: 122px;
    height: 50px;
  }

  .btn-quote {
    display: none;
  }

  .hero {
    height: auto;
    min-height: auto;
    display: block;
    padding: 0 1rem 1.5rem;
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 5.5rem -1rem 0;
    border-bottom: 1px solid rgba(170, 180, 194, 0.18);
  }

  .hero-slide img {
    object-fit: contain;
    object-position: center;
  }

  .hero-gradient {
    background:
      linear-gradient(180deg, rgba(5, 7, 10, 0.04), rgba(5, 7, 10, 0.92)),
      linear-gradient(90deg, rgba(5, 7, 10, 0.46), transparent);
  }

  .hero-track {
    right: 1rem;
    bottom: 0.75rem;
  }

  .hero-content {
    padding: 1.4rem 0 0;
  }

  .hero-logo {
    width: min(250px, 76vw);
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .stats-band {
    padding: 0.9rem 1rem 1.1rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .hero-stats div:nth-child(2) {
    border-right: 0;
  }

  .hero-stats div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(170, 180, 194, 0.18);
  }

  .two-column,
  .industry-layout,
  .quote-layout,
  .contact-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .section {
    padding: clamp(2.8rem, 10vw, 4rem) 0;
  }

  .copy-block h2,
  .section-heading h2,
  .industry-copy h2,
  .quality-panel h2,
  .quote-copy h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.06;
  }

  .image-stack {
    margin-top: 0.6rem;
  }

  .steel-plate {
    width: 100%;
    margin: 0.75rem 0 0;
  }

  .vision-mission,
  .leaders,
  .contact-actions {
    grid-template-columns: 1fr;
  }

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

  .image-stack img,
  .service-media img,
  .leader-photo img {
    object-fit: contain;
    background: #070b11;
  }

  .service-media img {
    aspect-ratio: 16 / 10;
  }

  .leader-photo img {
    min-height: auto;
    max-height: none;
    aspect-ratio: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-logo.arabic {
    justify-self: start;
  }

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

@media (max-width: 560px) {
  .site-header {
    padding-inline: 0.8rem;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .brand img {
    width: 116px;
    height: 44px;
  }

  .phone-link {
    width: 44px;
    height: 44px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
  }

  .hero-buttons,
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-buttons .btn-secondary {
    width: calc(100% - 68px);
    justify-self: start;
  }

  .stats-band {
    padding-inline: 0.8rem;
  }

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

  .hero-stats div {
    border-right: 1px solid rgba(170, 180, 194, 0.18);
    border-bottom: 1px solid rgba(170, 180, 194, 0.18);
  }

  .hero-stats div:nth-child(2n) {
    border-right: 0;
  }

  .hero-stats div:nth-child(3),
  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .hero-stats strong {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
  }

  .services-grid,
  .industry-grid,
  .checks {
    grid-template-columns: 1fr;
  }

  .section-inner {
    width: min(var(--max), calc(100% - 1.2rem));
  }

  .contact-actions a {
    min-height: 124px;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    overflow: hidden;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .hero-slide {
    opacity: 0;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}
